DataRow Properties
.NET Framework 4.5
The DataRow type exposes the following members.
| Name | Description | |
|---|---|---|
|
HasErrors | Gets a value that indicates whether there are errors in a row. |
|
Item[DataColumn] | Gets or sets the data stored in the specified DataColumn. |
|
Item[Int32] | Gets or sets the data stored in the column specified by index. |
|
Item[String] | Gets or sets the data stored in the column specified by name. |
|
Item[DataColumn, DataRowVersion] | Gets the specified version of data stored in the specified DataColumn. |
|
Item[Int32, DataRowVersion] | Gets the data stored in the column, specified by index and version of the data to retrieve. |
|
Item[String, DataRowVersion] | Gets the specified version of data stored in the named column. |
|
ItemArray | Gets or sets all the values for this row through an array. |
|
RowError | Gets or sets the custom error description for a row. |
|
RowState | Gets the current state of the row with regard to its relationship to the DataRowCollection. |
|
Table | Gets the DataTable for which this row has a schema. |