DataRowView.DataView Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the DataView to which this row belongs.
public:
property System::Data::DataView ^ DataView { System::Data::DataView ^ get(); };
public System.Data.DataView DataView { get; }
member this.DataView : System.Data.DataView
Public ReadOnly Property DataView As DataView
Property Value
The DataView
to which this row belongs.
Examples
The following example returns the DataView of the specified DataRowView.
private DataView ReturnDataView(DataRowView rowView)
{
return rowView.DataView;
}
Private Function ReturnDataView( _
rowView As DataRowView) As DataView
Return rowView.DataView
End Function
Applies to
التعاون معنا على GitHub
يمكن العثور على مصدر هذا المحتوى على GitHub حيث يمكنك أيضاً إضافة مشاكل وطلبات سحب ومراجعتها. للحصول على معلومات إضافية، اطلع على دليل المساهم لدينا.