Monday, April 11, 2016

Display text as Subscript and Superscript in C#

Display text as Subscript and Superscript in C#

//Display Subscript O2
MyLabel.Text = "O\x2082        O\xB2"; // O2

//Display Superscript O2
MyLabel.Text = "O\x2082        O\xB2"; // O2

No comments:

Post a Comment

How to upload app to macOS

1. Open Terminal Press Cmd (⌘) + Space , type Terminal , and hit Enter . 2. Navigate to Your Build Output Directory Your .app file is likel...