Represents a single cell in a Cells collection. Item is the indexer of the Cells collection, so Cells[0, 0] is equivalent to Cells.Item[0, 0].

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

The 0-based row number of the cell to retrieve.

The 0-based column number of the cell to retrieve.

A Cell object representing the cell at the specified position.

Cell cellA1 = cls[0, 0];
Dim cellA1 As Cell = cls(0, 0)