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.

public boolean Embossed{ get; set; }
Public Property Embossed() As Boolean

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