System.Data Namespace DataRowView Class
Returns the DataView to which this row belongs.
Script |
[ DataView variable = ] DataRowView.DataView |
variable |
The DataView to which this row belongs. |
The property is read only with no default value.
The following example returns the DataView of the specified DataRowView.
private DataView ReturnDataView ( DataRowView myRowView ) {
return myRowView.DataView;
}
Private Function ReturnDataView ( myRowView As DataRowView ) As DataView
Return myRowView.DataView
End Function |
|
C# |
VB |
DataRowView Members