Returns the cell at the specified Excel-style reference. This property is an indexer for the Worksheet class.

 public Cell this[string reference] { get; }
Public Default ReadOnly Property Item(ByVal reference As String) As Cell

The Excel-style reference of the cell to retrieve.

The Excel-style reference of the cell to retrieve.

A Cell object representing the cell at the specified Excel-style reference.

          //--- Get Cell by Excel-style reference
          Cell cellA1 = ws["A1"];
        
          '--- Get Cell by Excel-style reference
          Dim cellA1 As Cell = ws("A1")