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}{signature:
}
Signature
vb.net
vb.net
Public Property HasShadow() As Boolean
{signature}
{remarks}This is set to false by default.

MS Word equivalent: Format menu > Borders and 
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#}

Shadow

Example
Code Block
csharp
csharp
titleC#


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

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


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

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