Sets or returns a boolean that represents if a character run has the the Outline effect, displaying the inner and outer borders of each character. (This effect is not available for all fonts.)

<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 boolean Outlined{ get; set; }
</pre></td></tr></table>
<p>Public Property Outlined() As Boolean</p>

MS Word equivalent: Format menu > Font... > Font tab > Effects section > Outline


          //--- Return Outlined
          bool outlined = oFont.Outlined;

          //--- Set Outlined
          oFont.Outlined = true;
        

          '--- Return Outlined
          Dim outlined As Boolean = oFont.Outlined

          '--- Set Outlined
          oFont.Outlined = True