Sets or returns the vertical position of the font in relation to other text.

<table class="wysiwyg-macro" data-macro-name="unmigrated-wiki-markup" style="background-image: url(/plugins/servlet/confluence/placeholder/macro-heading?definition=e3VubWlncmF0ZWQtd2lraS1tYXJrdXB9&amp;locale=en_GB&amp;version=2); background-repeat: no-repeat;" data-macro-body-type="PLAIN_TEXT"><tr><td class="wysiwyg-macro-body"><pre>
 public VerticalPosition ScriptStyle{ get; set; }
</pre></td></tr></table>
<p>Public Property ScriptStyle() As VerticalPosition</p>

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.


          //--- Get ScriptStyle
          Font.VerticalPosition scrStyle = fnt.ScripstStyle;

          //--- Set ScriptStyle
          fnt.ScriptStyle = Font.VerticalPosition.Subscript;
        

          '--- Get ScriptStyle
          Dim scrStyle As Font.VerticalPosition = fnt.ScriptStyle

          '--- Set ScriptStyle
          fnt.ScriptStyle = Font.VerticalPosition.Subscript