Returns the cell at a specified row and column position. This property is an indexer for the Worksheet class.

 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.


          //--- Get Cell by index
          Cell cellA1 = ws[0,0];
        

          '--- Get Cell by index
          Dim cellA1 As Cell = ws(0,0)