Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

...

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.

Signature
C#
C#
 public boolean Engraved{ get; set; }
{signature}{signature:
}
Signature
vb.net
vb.net
Public Property Engraved() As Boolean
{signature}
{remarks}MS Word 
Remarks

MS Word equivalent:

Format

menu

>

Font...

>

Font

tab

>

Effects

section

>

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

Engrave

Example
Code Block
csharp
csharp
titleC#


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

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


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

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