FileManagerDetailsColumn.SortOrder Property
Gets or sets the column’s sort order.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v25.1.dll
NuGet Package: DevExpress.Web
Declaration
[DefaultValue(ColumnSortOrder.None)]
public virtual ColumnSortOrder SortOrder { get; set; }
Property Value
| Type | Default | Description |
|---|---|---|
| ColumnSortOrder | None | A ColumnSortOrder enumeration value that specifies the column’s sort order. |
Available values:
| Name | Description |
|---|---|
| None | No sorting is applied to a column. |
| Ascending | Sorts the column in ascending order. |
| Descending | Sorts the columns in descending order. |
Remarks
Use the SortOrder property to specify the column’s sort order.
You can use the FileManagerFileListDetailsViewSettings.AllowColumnSort property to control an end-users ability to sort data. Individual columns provide the FileManagerDetailsColumn.AllowSort option that enables you to override the default behavior.
See Also