Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

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

Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns the [Area|Area] object at the specified 0\-based index.{excerpt}
{signature: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
Parameters

...

The index of the Area to get.

Returns

The Area at the specified 0-based index.

{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#}
Area a = rng[0];
{code}
{code:vb.net
|title=vb.net
}
Dim a As Area = rng(0){code}

{example}
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle