CollectionChangedHandlerTItem, TCollectionInternalElementAt Method  | 
 
            Gets the element at the specified index.
            
 
    Namespace: 
   Eto
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
Syntaxprotected abstract TItem InternalElementAt(
	int index
)
Protected MustOverride Function InternalElementAt ( 
	index As Integer
) As TItem
abstract InternalElementAt : 
        index : int -> 'TItem 
Parameters
- index
 - Type: SystemInt32
Index of the item to get. 
Return Value
Type: 
TItemThe item at the specified index.
Remarks
            Derived classes should implement this to get the item at the specified index.
            
See Also