BaseListBoxControl.SortOrder Property
Gets or sets the sort order.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.2.dll
Declaration
[DefaultValue(SortOrder.None)]
[DXCategory("Behavior")]
public SortOrder SortOrder { get; set; }
Property Value
Type | Default | Description |
---|---|---|
SortOrder | None | A |
Remarks
List box controls allow you to sort their items. Set the SortOrder
property to SortOrder.Ascending
to sort items in ascending order. Set this property to SortOrder.Descending
to to sort items in descending order.
Handle the CustomSort event to sort list items in custom order.
Note
- Setting the
SortOrder
property has no effect in bound mode. - The
SortOrder
property is ignored when you handle theCustomSort
event.
See Also