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 Shadow effect, displaying a shadow behind, beneath and to the right of each character.

Signature
C#
C#
 public boolean Shadow{ get; set; }
Signature
vb.net
vb.net
Public Property Shadow() As Boolean
Remarks

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

Example
Code Block
csharp
csharp
titleC#

          //--- Return Shadow
          bool shadow = oFont.Shadow;

          //--- Set Shadow
          oFont.Shadow = true;
        
Code Block
vb.net
vb.net
titlevb.net

          '--- Return Shadow
          Dim shadow As Boolean = oFont.Shadow

          '--- Set Shadow
          oFont.Shadow = True