Skip to main content

SortDescriptionBase.FieldName Property

Gets or sets the name of a data source field whose values are used to sort the Collection View items.

Namespace: DevExpress.Maui.CollectionView

Assembly: DevExpress.Maui.CollectionView.dll

NuGet Package: DevExpress.Maui.CollectionView

Declaration

public string FieldName { get; set; }

Property Value

Type Description
String

The name of a data source field.

Example

The following example sorts collection view items in descending order by the Name data field:

DevExpress MAUI Collection View - Sorted collection view items

<dxcv:DXCollectionView ...>
    <dxcv:DXCollectionView.SortDescriptions>
        <dxcv:SortDescription FieldName="Name" SortOrder="Descending"/>
    </dxcv:DXCollectionView.SortDescriptions>
</dxcv:DXCollectionView>
See Also