Gets the data view.
[Visual Basic]
Public ReadOnly Property View As DataView
[C#]
public System.Data.DataView View {get;}
Property Value
DataView.
Example
How to get a data view, and to set a value.
Dim dv As DataView = dbExData.View
dv(0)("xxx_name") = "Asterworld"
DataView dv = dbExData.View;
dv[0]["xxx_name"] = "Asterworld";
See Also
AwDbExData Class | Asterworld.Data Namespace