Page tree

Versions Compared

Key

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

Excerpt

Returns a Border object on which you can manipulate the border properties of a character run.

 tab

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

          oFont.Border.LineStyle = Border.LineStyle.Double;
        
{code}
{code:vb.net
|title=vb.net
}

          oFont.Border.LineStyle = Border.LineStyle.Double
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Border|Font.Border] object on which you can manipulate the border properties of a character run.{excerpt}
{signature:C#}
 public Border Border{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Border() As Border
Remarks
MS Word
{signature}
{remarks}MS Word equivalent: Format menu > Borders and Shading... > Borders
tab
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle