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

ChunkList<T>.RemoveAt(Int32) Method

Removes an item at the specified position from the collection.

Namespace: DevExpress.Xpf.ChunkList

Assembly: DevExpress.Xpf.Core.v19.2.dll

Declaration

public void RemoveAt(
    int index
)

Parameters

Name Type Description
index Int32

A zero-based integer specifying the index of the object to remove. If it’s negative or exceeds the number of elements, an exception is raised.

Remarks

When an item is removed from the collection, all subsequent fields are moved up one position within the chunk.

Use the ChunkList<T>.Clear method to clear the collection.

See Also