Description
Sets or returns a boolean
that represents whether or not the border has a shadow effect.
C#
public boolean HasShadow{ get ; set ; } |
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
Examples
C#
//--- Get HasShadow bool hasShadow = brdr.HasShadow; //--- Set HasShadow brdr.HasShadow = true ; |
vb.net
'--- Get HasShadow Dim hasShadow As Boolean = brdr.HasShadow '--- Set HasShadow brdr.HasShadow = True |