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 whether or not the border has a shadow effect.

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

This is set to false by default.

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

Example
Code Block
csharp
csharp
titleC#

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

          //--- Set HasShadow
          brdr.HasShadow = true;
        
Code Block
vbnet
vbnet
titlevb.net

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

          '--- Set HasShadow
          brdr.HasShadow = True