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 an int that represents the line width of this border in 1/8 points. (The maximum width is 32 points.)



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

          //--- Get LineWidth
          int lineWidth = brdr.LineWidth;

          //--- Set LineWidth to 1 point
          brdr.LineWidth = 8;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get LineWidth
          Dim lineWidth As Integer = brdr.LineWidth

          '--- Set LineWidth to 1 point
          brdr.LineWidth = 8
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Sets or returns an {{int}} that represents the line width of this border in 1/8 points. \(The maximum width is 32 points.\){excerpt}
{signature:C#}
 public int LineWidth{ get; set; }
Signature
{signature}{signature:vb.net
vb.net
}
Public Property LineWidth() As Integer
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Borders and Shading... > Borders tab > Width:
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle