{description}
{excerpt}Returns a [Cells|Worksheet.Cells] collection that contains all cells in the worksheet.{excerpt}
{signature:C#}
 public Cells Cells{ get; }
{signature}{signature:vb.net}
Public ReadOnly Property Cells() As Cells
{signature}
{example}{code:csharp|title=C#}
Cells cls = ws.Cells;{code}
{code:vb.net|title=vb.net}
Dim cls As Cells = ws.Cells{code}

{example}