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

Returns the Area object at the specified 0-based index.

Signature
C#
C#
 public Area this[int index] { get; }
Signature
vb.net
vb.net
Public Default ReadOnly Property Item(ByVal index As Integer) As Area
Parameters
Param
index
index

The index of the Area to get.

Returns

The Area at the specified 0-based index.

Example
Code Block
csharp
csharp
titleC#
Area a = rng[0];
Code Block
vb.net
vb.net
titlevb.net
Dim a As Area = rng(0)