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 whether or not the border has a shadow effect.{excerpt}
{signature:C#}
 public boolean HasShadow{ get; set; }
{signature}{signature:vb.net}
Public Property HasShadow() As Boolean
{signature}
{remarks}This is set to false by default.

MS Word equivalent: Format menu > Borders and Shading... > Borders tab > Setting: > Shadow

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

          //--- Get HasShadow
          bool hasShadow = brdr.HasShadow;

          //--- Set HasShadow
          brdr.HasShadow = true;
        {code}
{code:vbnet|title=vb.net}

          '--- Get HasShadow
          Dim hasShadow As Boolean = brdr.HasShadow

          '--- Set HasShadow
          brdr.HasShadow = True
        {code}

{example}