{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:vb.net}
Public Property LineWidth() As Integer
{signature}
{remarks}MS Word equivalent: Format menu > Borders and Shading... > Borders tab > Width:

{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}