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

 public Cell this[System.String name] { get; }
Public Default ReadOnly Property Item(ByVal name As String) As Cell

The index of the cell as a string

A Cell object representing the cell at the specified position.

Cell cellA1 = cls["A1"];
Dim cellA1 As Cell = cls("A1")