Message-ID: <1204375572.10137.1711714146848.JavaMail.web05$@web05> Subject: Exported From Confluence MIME-Version: 1.0 Content-Type: multipart/related; boundary="----=_Part_10136_1130480883.1711714146848" ------=_Part_10136_1130480883.1711714146848 Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Content-Location: file:///C:/exported.html Area.Item(Int32, Int32)

Area.Item(Int32, Int32)

Description

=20

Returns a cell within the specified area of cells.

=20
C#
=20
 public Cell this[int row, int col] { get; }
=20
=20
vb.net
=20
Public Default ReadOnly Property Item(ByVal row As Integer, ByVal col As In=
teger) As Cell
=20
=20

Parameters

=20
row
The cell's 0-based row numbe= r, relative to the first cell in the area. For example, for the area B4:E7,= =20 area[0,0] will return cell B4.=20
col
The cell's 0-based column nu= mber, relative to the first cell in the area. For example, for the area B4:= E7,=20 area[0,0] will return cell B4.=20

Returns

A=20 Cell object representin= g the cell. If the cell is not within the specified area, an exception will= be thrown.=20

Examples

=20
C#
=20
Cell c =3D ar[5,5];
=20
=20
vb.net
=20
Dim c As Cell =3D ar(5, 5)
=20
------=_Part_10136_1130480883.1711714146848--