Description
Sets or returns the vertical position of the font in relation to other text.C#
public VerticalPosition ScriptStyle{ get ; set ; } |
vb.net
Public Property ScriptStyle() As VerticalPosition |
Remarks
If the vertical position is Superscript, the font will be slightly higher than other text. If the vertical position is Subscript, the font will be slightly lower than other text. If the vertical position is set to None, the font will be displayed normally.Examples
C#
//--- Get ScriptStyle Font.VerticalPosition scrStyle = fnt.ScripstStyle; //--- Set ScriptStyle fnt.ScriptStyle = Font.VerticalPosition.Subscript; |
vb.net
'--- Get ScriptStyle Dim scrStyle As Font.VerticalPosition = fnt.ScriptStyle '--- Set ScriptStyle fnt.ScriptStyle = Font.VerticalPosition.Subscript |