Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
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:vb.net}
Public ReadOnly Property Border() As Border
{signature}
{remarks}MS Word equivalent: Format menu > Borders and Shading... > Borders 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}