newbieguy
newbieguy

Reputation: 697

How do I write subscript lowercase letters in a string

As the question says, how do I write subscript letters for example, Fnet (net is subscripted), in a string?

Is there any shortcut key for creating a subscript lowercase letter? I just found few subscript lowercase letters, ₐ ₑ ᵢ ⱼ ₒ ᵣ ᵤ ᵥ ₓ, other letters are missing.

Upvotes: 0

Views: 1243

Answers (2)

neutrino2039
neutrino2039

Reputation: 126

Instead of searching for direct subscript support in raw string, you should use a control like RichTextBox which has direct support of displaying subscripts. For other controls you can override OnPaint event and do custom text rendering using GDI+ API's.

Upvotes: 2

Martin Milan
Martin Milan

Reputation: 6390

I don't believe you do.

If we were to change the question to "How do I write bold characters in a string" you would naturally tell me that you can't, and you have to apply some styling instead using CSS or something. Same situation here...

You're looking at formatting as opposed to content.

Upvotes: 0

Related Questions