DataViewSetting::Sort Property

 

Gets or sets a value indicating the sort to apply in the DataView.

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

public:
property String^ Sort {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The sort to apply in the DataView.

Sort can have two defaults based on the value of RowFilter property. If RowFilter is null or empty (that is, the value is not explicitly specified), the DataRowView in the DataView is sorted on the position or ordinal of DataRow in the Rows collection. The Sort default, an empty string, causes a DataRowView in DataView to be sorted on the position or ordinal of DataRow in the Rows collection.

.NET Framework
Available since 1.1
Return to top
Show: