CollectionChangedHandlerTItem, TCollectionRemoveItem Method (TItem) |
Removes the specified item
Namespace:
Eto
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public virtual void RemoveItem(
TItem item
)
Public Overridable Sub RemoveItem (
item As TItem
)
abstract RemoveItem :
item : 'TItem -> unit
override RemoveItem :
item : 'TItem -> unit
Parameters
- item
- Type: TItem
Item to remove from the collection
Remarks
This will remove the item by finding the index and removing based on index.
Implementors should override this method if there is a faster mechanism to do so.
See Also