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}{signature:
}
Signature
vb.net
vb.net
Public Default ReadOnly Property Item(ByVal index As Integer) As Area
{signature}
{parameters}
{param:index}The index of the {{Area}} to get.{param}
{returns}The {{Area}} at the specified 0\-based index.{returns}
{example}{code:csharp|title=C#}
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} {code:
Code Block
vb.net
|title=
vb.net
titlevb.net
}

Dim a As Area = rng(0)
{code} {example}