Returns a cell within the specified area of cells.

 public Cell this[int row, int col] { get; }
Public Default ReadOnly Property Item(ByVal row As Integer, ByVal col As Integer) As Cell

The cell's 0-based row number, relative to the first cell in the area. For example, for the area B4:E7, area[0,0] will return cell B4.

The cell's 0-based column number, relative to the first cell in the area. For example, for the area B4:E7, area[0,0] will return cell B4.

A Cell object representing the cell. If the cell is not within the specified area, an exception will be thrown.

Cell c = ar[5,5];
Dim c As Cell = ar(5, 5)