Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Description

Excerpt

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"].

Signature
C#
C#
 public Cell this[System.String name] { get; }
Signature
vb.net
vb.net
Public Default ReadOnly Property Item(ByVal name As String) As Cell
Parameters
Param
index
index

The index of the cell as a string

Returns

A Cell object representing the cell at the specified position.

Example
Code Block
csharp
csharp
titleC#
Cell cellA1 = cls["A1"];
Code Block
vb.net
vb.net
titlevb.net
Dim cellA1 As Cell = cls("A1")
Scrollbar