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

...

Description

Excerpt

Adds another range to this range.

Signature
C#
C#
 public void JoinRange(Range range)
{signature}{signature:
}
Signature
vb.net
vb.net
Public Sub JoinRange(ByVal range As Range)
{signature}
{parameters}
{param:range}The range to be added to the current range.{param}
{example}{code:csharp|title=C#}
Parameters
Param
range
range

The range to be added to the current range.

Example
Code Block
csharp
csharp
titleC#

rng.JoinRange(rng2);
{code} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

rng.JoinRange(rng2)
{code} {example}