NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

DataTable.DefaultView

Gets a customized view of the table which may include a filtered view, or a cursor position.

[Visual Basic]
Public ReadOnly Property DefaultView As DataView
[C#]
public DataView DefaultView {get;}
[C++]
public: __property DataView* get_DefaultView();
[JScript]
public function get DefaultView() : DataView;

Property Value

The DataView associated with the DataTable.

Remarks

Use the DataView to sort, filter, and search a DataTable. The DataView can also be used to navigate from one DataTable to another through the relations between the tables.

See Also

DataTable Class | DataTable Members | System.Data Namespace