[]
Gets or sets the data stored in this row at a specific column.
[Browsable(false)]
public object this[Column col] { get; set; }
| Type | Name | Description |
|---|---|---|
| Column | col | Column that contains the data. |
| Type | Description |
|---|---|
| object | The data stored in this row at a specific column. |
Gets or sets the data stored in this row at a specific column.
[Browsable(false)]
public object this[string colName] { get; set; }
| Type | Name | Description |
|---|---|---|
| string | colName | Name of the Column that contains the data. |
| Type | Description |
|---|---|
| object | The data stored in this row at a specific column. |
Columns are identified by their ColumnName property.
Gets or sets the data stored in this row at a specific column.
[Browsable(false)]
public object this[int colIndex] { get; set; }
| Type | Name | Description |
|---|---|---|
| int | colIndex | Index of the Column that contains the data. |
| Type | Description |
|---|---|
| object | The data stored in this row at a specific column. |