[]
Gets or sets the value of a specific cell.
public object this[int row, Column col] { get; set; }
Public Default Property Item(row As Integer, col As Column) As Object
| Type | Name | Description |
|---|---|---|
| int | row | Index of the row that contains the cell. |
| Column | col | Column that contains the cell. |
| Type | Description |
|---|---|
| object | The value of the cell. |
Gets or sets the value of a specific cell.
public object this[int row, int col] { get; set; }
Public Default Property Item(row As Integer, col As Integer) As Object
| Type | Name | Description |
|---|---|---|
| int | row | Index of the row that contains the cell. |
| int | col | Index of the column that contains the cell. |
| Type | Description |
|---|---|
| object | The value of the cell. |
Gets or sets the value of a specific cell.
public object this[int row, string colName] { get; set; }
Public Default Property Item(row As Integer, colName As String) As Object
| Type | Name | Description |
|---|---|---|
| int | row | Index of the row that contains the cell. |
| string | colName | ColumnName of the column that contains the cell. |
| Type | Description |
|---|---|
| object | The value of the cell. |