System.Data Namespace DataRow Class
Sets or retrieves the data stored in the specified DataColumn.
Object variable = DataRow.Item [ column ];
... or ...
Object variable = DataRow [ column ];
dim variable as Object = DataRow.Item ( column )
... or ...
dim variable as Object = DataRow ( column )
variable : Object = DataRow.Item ( column );
... or ...
variable : Object = DataRow ( column ); |
|
C# |
VB |
JScript |
- column
- A DataColumn that contains the data.
An Object that contains the data.
When setting the property, an exception will be thrown if an exception occurs in the ColumnChanging event.
If this is an immediate edit, see EndEdit for the exceptions that can be thrown.
DataRow Members DataRow.Item Overload List