Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Sets or returns a boolean that represents whether or not the border has a shadow effect.

 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}
Signature
C#C#
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}{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
{signature}
{remarks}This is set to false by default.

MS Word equivalent: Format menu > Borders and Shading... > Borders tab > Setting: >
Shadow
Example
Code Block
csharpcsharp
titleC#
Code Block
vbnetvbnettitle