Skip to main content

KanbanGroupCollection.Sort(Int32, Int32, IComparer<KanbanGroup>) Method

Sorts groups in the specified range using the specified comparer.

Namespace: DevExpress.XtraGrid.Views.Tile

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public void Sort(
    int index,
    int count,
    IComparer<KanbanGroup> comparer
)

Parameters

Name Type Description
index Int32

The zero-based starting index of the range to sort.

count Int32

The length of the range to sort.

comparer IComparer<KanbanGroup>

The object that compares elements in the collection.

Remarks

The KanbanGroupCollection.Sort method sorts groups via the List.Sort method. See the List.Sort topic for more information and examples.

See Also