{description}
{excerpt}Sets or returns a {{boolean}} that represents if a character run has the Engrave effect, making the text to be imprinted or pressed into the page.{excerpt}
{signature:C#}
 public boolean Engraved{ get; set; }
{signature}{signature:vb.net}
Public Property Engraved() As Boolean
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Effects section > Engrave

{remarks}
{example}{code:csharp|title=C#}

          //--- Return Engraved
          bool engraved = oFont.Engraved;

          //--- Set Engraved
          oFont.Engraved = true;
        {code}
{code:vb.net|title=vb.net}

          '--- Return Engraved
          Dim engraved As Boolean = oFont.Engraved

          '--- Set Engraved
          oFont.Engraved = True
        {code}

{example}