Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
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.

 Shadow

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

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

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

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

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

{example}
Signature
C#C#
Wiki Markup
{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.{excerpt}
{signature:C#}
 public boolean Shadow{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Shadow() As Boolean
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Effects section >
Shadow
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle