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
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:vb.net}
Public Property Shadow() As Boolean
{signature}
{remarks}MS Word equivalent: Format menu > Font... > Font tab > Effects section > 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}