ComponentOne Xamarin.Android
ItemLoaded Event


C1.CollectionView Assembly > C1.CollectionView Namespace > C1CacheCollectionView<T> Class : ItemLoaded Event
Occurs when an item is added to the cache.
Syntax
'Declaration
 
Public Event ItemLoaded As EventHandler(Of CacheCollectionViewItemEventArgs(Of T))
'Usage
 
Dim instance As C1CacheCollectionView(Of T)
Dim handler As EventHandler(Of CacheCollectionViewItemEventArgs(Of T))
 
AddHandler instance.ItemLoaded, handler
Event Data

The event handler receives an argument of type CacheCollectionViewItemEventArgs<T> containing data related to this event. The following CacheCollectionViewItemEventArgs<T> properties provide information specific to this event.

PropertyDescription
Gets the index of the item.  
Gets the item.  
See Also