Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0
Description

Excerpt

Returns a Cells collection that contains all cells in the worksheet.

{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}
Signature
C#C#
Wiki Markup
{description}
{excerpt}Returns a [Cells|Worksheet.Cells] collection that contains all cells in the worksheet.{excerpt}
{signature:C#}
 public Cells Cells{ get; }
Signature
{signature}{signature:vb.net
vb.net
}
Public ReadOnly Property Cells() As Cells
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle