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 that represents a border around the range.

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

          //--- Get BorderAround
          Border b = rng.BorderAround;

          //--- Set BorderAround
          rng.BorderAround = b;
        
{code}
{code:vb.net
|title=vb.net
}

          '--- Get BorderAround
          Dim b As Border = rng.BorderAround

          '--- Set BorderAround
          rng.BorderAround = b
        {code}

{example}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Border|Border] object that represents a border around the range.{excerpt}
{signature:C#}
 public Border BorderAround{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property BorderAround() As Border
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle