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

{example}