Skip to main content
A newer version of this page is available. .

TreeListBinaryImageColumn.AllowSort Property

Gets or sets whether end-users can sort data by the column’s values.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v18.2.dll

Declaration

[DefaultValue(DefaultBoolean.False)]
public override DefaultBoolean AllowSort { get; set; }

Property Value

Type Default Description
DefaultBoolean **False**

One of the DefaultBoolean enumeration values.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

Automatic sorting is not available for columns of the TreeListBinaryImageColumn type. If you need to have a sortable binary image column, you should implement custom sorting logic by handling the ASPxTreeList.CustomNodeSort event.

See Also