DataRowView.Row Property
.NET Framework 3.0
Gets the DataRow being viewed.
Namespace: System.Data
Assembly: System.Data (in system.data.dll)
Assembly: System.Data (in system.data.dll)
The following example uses the Row property to print the value of the third column in each modified row of a DataView.
private void ShowColumn3() { DataView view = (DataView) dataGrid1.DataSource; // Set the filter to display only those rows that were modified. view.RowStateFilter=DataViewRowState.ModifiedCurrent; // Change the value of the CompanyName column for each modified row. foreach(DataRowView rowView in view) { Console.WriteLine(rowView.Row[2]); } }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.