Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataTable::DefaultView Property

 

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

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
[BrowsableAttribute(false)]
property DataView^ DefaultView {
	DataView^ get();
}

Property Value

Type: System.Data::DataView^

The DataView associated with the DataTable.

The DefaultView property returns a DataView you can use to sort, filter, and search a DataTable.

The following example sets a property of the DataTable object's DataView through the DefaultView property. The example also shows the binding of a DataGridView control to a DataTable named "Suppliers" that includes a column named "CompanyName."

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft