windowsforms-devexpress-dot-xtragrid-dot-views-dot-layout-dot-layoutviewoptionscustomization-c51bec86.md
Gets or sets a value specifying whether end-users can sort data.
Namespace : DevExpress.XtraGrid.Views.Layout
Assembly : DevExpress.XtraGrid.v25.2.dll
NuGet Packages : DevExpress.Win.Grid, DevExpress.Win.Navigation
[DefaultValue(true)]
[XtraSerializableProperty]
public bool AllowSort { get; set; }
<DefaultValue(True)>
<XtraSerializableProperty>
Public Property AllowSort As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | true |
true if end-users can sort data; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to AllowSort |
|---|---|
| LayoutView |
.OptionsCustomization .AllowSort
|
In Layout View, end-users can sort data by clicking the Field Sort Button. If the AllowSort option sis set to true , data sorting is enabled. In this instance, it’s possible to prevent data sorting for specific card fields (columns) via the OptionsColumn.AllowSort option.
If the AllowSort property is set to false , Field Sort Button are hidden, so end-users cannot change the sort order. However, data can still be sorted in code.
For information on how end-users can sort data, see End-User Capabilities: Sorting.
See Also
End-User Capabilities: Sorting
LayoutViewOptionsCustomization Class