Page tree

Versions Compared

Key

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

...

Wiki Markup
{description}
{excerpt}Represents a single cell in a [Cells|Cells] collection. [Item|Cells.Item] is the indexer of the {{Cells}} collection, so {{Cells\["A1"\]}} is equivalent to {{Cells.Item\["A1"\]

...

Signature
C#C#
}}.
{excerpt}

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

...

The index of the cell as a string

Returns

A Cell object representing the cell at the specified position.

{signature}

{parameters}
{param:index}The index of the cell as a string{param}
{returns}A [Cell|Cell] object representing the cell at the specified position.{returns}

{example}
{code:csharp|title=C#}
Cell cellA1 = cls["A1"];
{code}
{code:vb.net
|title=vb.net
}
Dim cellA1 As Cell = cls("A1")
Example
Code Block
csharpcsharp
titleC#
Code Block
vb.nettitle

...

{code}
{example}
{scrollbar}