Skip to main content
All docs
V25.1
  • TreeListPersistentLayoutColumn.SortOrder Property

    Specifies the column’s sort order.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [JsonConverter(typeof(JsonStringEnumConverter))]
    [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
    public TreeListColumnSortOrder? SortOrder { get; set; }

    Property Value

    Type Description
    Nullable<TreeListColumnSortOrder>

    An enumeration value.

    Available values:

    Name Description
    None

    The TreeList sorts column data in ascending order.

    Ascending

    The TreeList sorts column data in ascending order.

    Descending

    The TreeList sorts column data in descending order.

    Remarks

    Refer to the TreeListPersistentLayoutColumn class description for more information and an example.

    See Also