Gets or sets a value indicating whether the GridControl keeps selected Rows in a sorted order.

Namespace: Dapfor.Wpf.Controls
Assembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)

Syntax

C#
public bool Sorted { get; set; }
Visual Basic
Public Property Sorted As Boolean
	Get
	Set
Visual C++
public:
property bool Sorted {
	bool get ();
	void set (bool value);
}
F#
member Sorted : bool with get, set

Property Value

Type: Boolean
true if sorted; otherwise, false.

Remarks

The sort of selected Rows takes CPU resources. Set this property to false to accelerate the GridControl.

See Also