Description |
---|
...
Wiki Markup |
---|
{description} {excerpt}Returns the cell at the specified Excel-style reference. This property is an indexer for the [Worksheet|Worksheet] class. |
...
Signature | ||
---|---|---|
C# | C# | {excerpt}
{signature:C#}
public Cell this[string reference] { get; }
|
Signature | ||
{signature}{signature:vb.net | vb.net | }
Public Default ReadOnly Property Item(ByVal reference As String) As Cell
|
Parameters |
---|
Param | |||
---|---|---|---|
rowNumber | rowNumber | The {signature} {parameters} {param:rowNumber}The Excel-style reference of the cell to retrieve. | |
Param | |||
columnNumber | columnNumber | The {param} {param:columnNumber}The Excel-style reference of the cell to retrieve. | |
Returns | |||
A Cell object representing the cell at the specified {param} {returns}A [Cell|Cell] object representing the cell at the specified Excel-style reference. | |||
Example | |||
Code Block | | csharp | csharp |
title | C# | ||
Code Block | vb.net | title |