[]
Gets or sets the value of a specific cell.
public virtual object this[int row, Column col] { get; set; }
| 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; }
| 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; }
| 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. |