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

ChartCollectionBase.Swap(Int32, Int32) Method

Swaps the two items with the specified indexes in the collection.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

public void Swap(
    int index1,
    int index2
)

Parameters

Name Type Description
index1 Int32

An integer value which specifies the index of the first item to swap in the collection. Note that if the index is less than 0, or more than the Count value, a ArgumentException will be thrown.

index2 Int32

An integer value which specifies the index of the second item to swap in the collection. Note that if the index is less than 0, or more than the Count value, a ArgumentException will be thrown.

Remarks

Use this method to quickly swap the values of two collection items with each other.

See Also