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

FieldListOptions.SortOrder Property

Specifies the order to show properties in the Field List.

Namespace: DevExpress.Xpf.Reports.UserDesigner

Assembly: DevExpress.Xpf.ReportDesigner.v20.2.dll

NuGet Package: DevExpress.Wpf.Reporting

Declaration

public ColumnSortOrder SortOrder { get; set; }

Property Value

Type Description
ColumnSortOrder

A ColumnSortOrder enumeration value.

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.

Property Paths

You can access this nested property as listed below:

Object Type Path to SortOrder
ReportDesigner
.FieldListOptions .SortOrder

Remarks

The following code demonstrates how to specify the SortOrder property:

<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner" 
        ... >
    <dxrud:ReportDesigner Name="designer"> 
        <dxrud:ReportDesigner.FieldListOptions>
            <dxrud:FieldListOptions SortOrder="Descending"/>
        </dxrud:ReportDesigner.FieldListOptions>
    </dxrud:ReportDesigner>
</Window>
See Also