{description}
{excerpt}Returns a [Border|Border] object that represents a border around the range.{excerpt}
{signature:C#}
 public Border BorderAround{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property BorderAround() As Border
{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}