Sets or returns a boolean that represents if a character run has the Emboss effect, displaying the text as if it is raised off the page in relief.

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

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


          //--- Return Embossed
          bool embossed = oFont.Embossed;

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

          '--- Return Embossed
          Dim embossed As Boolean = oFont.Embossed

          '--- Set Embossed
          oFont.Embossed = True