8.7 released—WinterCG Compliance Part 1
Learn more
ItemEventData
interface ItemEventData extends EventData {
  android: any;
  index: number;
  ios: any;
  view: View;
}
Event data containing information for the index and the view associated to a list view item.

Summary

Properties

android
index
ios
view
2 properties inherited from EventData
Click to expand

Properties

android

android: any
Gets the native [android widget](http://developer.android.com/reference/android/view/ViewGroup.html) that represents the user interface where the view is hosted. Valid only when running on Android OS.

index

index: number
The index of the item, for which the event is raised.

ios

ios: any
Gets the native [iOS view](https://developer.apple.com/library/ios/documentation/UIKit/Reference/UITableViewCell_Class/) that represents the user interface where the view is hosted. Valid only when running on iOS.

view

view: View
The view that is associated to the item, for which the event is raised.