MapDependencyObjectCollectionBase<T>.RemoveAt(Int32) Method
Removes an item at the specified position from the collection.
Namespace: DevExpress.Xpf.Map
Assembly: DevExpress.Xpf.Map.v24.1.dll
NuGet Package: DevExpress.Wpf.Map
Declaration
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
Use the MapDependencyObjectCollectionBase<T>.Remove and RemoveAt methods to remove specified items from the collection. All items that follow that item are then moved up to fill the vacant position. The indexes of the moved items are also updated. The MapDependencyObjectCollectionBase<T>.Clear method can be used to clear the collection.
See Also