CollectionChangedHandlerTItem, TCollectionInternalIndexOf Method |
Gets the index of the item from the collection
Namespace:
Eto
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax protected abstract int InternalIndexOf(
TItem item
)
Protected MustOverride Function InternalIndexOf (
item As TItem
) As Integer
abstract InternalIndexOf :
item : 'TItem -> int
Parameters
- item
- Type: TItem
Item to find the index
Return Value
Type:
Int32index of the item in the collection, or -1 if the item is not found
Remarks
Derived classes should implement this to get the index of the item.
See Also