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

 public Area this[int index] { get; }
Public Default ReadOnly Property Item(ByVal index As Integer) As Area

The index of the Area to get.

The Area at the specified 0-based index.

Area a = rng[0];
Dim a As Area = rng(0)