Page tree

Versions Compared

Key

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

...

Wiki Markup
{description}
{excerpt}Sets or returns the border's line style.

...

Signature
C#C#
{excerpt}
{signature:C#}
 public LineStyle Style{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property Style() As LineStyle
Remarks

To set the line style for a specific part of the border get the BorderPart object for the desired part of the border.

{signature}
{remarks}To set the line style for a specific part of the border get the BorderPart object for the desired part of the border.

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

          //--- Get LineStyle
          Border.LineStyle ls = b.LineStyle;

          //--- Set LineStyle
          b.LineStyle = Border.LineStyle.Thick;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get LineStyle
          Dim ls As Border.LineStyle = b.LineStyle

          '--- Set LineStyle
          b.LineStyle = Border.LineStyle.Thick
        
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle

...

{code}

{example}
{scrollbar}