Base Combo Box CellObject CollectionRemove At Method
Remove the item at the specified index from the collection
Definition
Namespace: EWSoftware.ListControls.DataGridViewControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public void RemoveAt(
int index
)VB
Public Sub RemoveAt (
index As Integer
)C++
public:
virtual void RemoveAt(
int index
) sealedF#
abstract RemoveAt :
index : int -> unit
override RemoveAt :
index : int -> unit Parameters
- index Int32
- The index of the item to remove
Implements
IListRemoveAt(Int32)Exceptions
| ArgumentOutOfRangeException | This is thrown if the index value is not within the bounds of the collection. |
| ArgumentException | This is thrown if an attempt is made to remove an item from the collection when a data source is in use. |