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

IThreadSafeField.SortOrder Property

Gets the field’s sort order.

Namespace: DevExpress.XtraPivotGrid

Assembly: DevExpress.PivotGrid.v20.2.Core.dll

NuGet Packages: DevExpress.PivotGrid.Core, DevExpress.WindowsDesktop.PivotGrid.Core

Declaration

PivotSortOrder SortOrder { get; }

Property Value

Type Description
PivotSortOrder

A PivotSortOrder value that specifies the field’s sort order.

Available values:

Name Description
Ascending

Sorts the field in ascending order.

Descending

Sorts the field in descending order.

Remarks

The SortOrder property provides thread-safe access to the field’s PivotGridFieldBase.SortOrder property. To learn more, see PivotGridFieldBase.SortOrder.

Use the SortOrder property when handling events in asynchronous mode. For more information, see Asynchronous Mode.

See Also