Class TableViewRowDoubleTappedEventArgs
Provides data for the RowDoubleTapped event.
public class TableViewRowDoubleTappedEventArgs : HandledEventArgs
- Inheritance
-
objectEventArgsHandledEventArgsTableViewRowDoubleTappedEventArgs
Constructors
TableViewRowDoubleTappedEventArgs(int, TableViewRow, object?)
Initializes a new instance of the TableViewRowDoubleTappedEventArgs class.
public TableViewRowDoubleTappedEventArgs(int index, TableViewRow row, object? item)
Parameters
indexintThe index of the row.
rowTableViewRowThe TableViewRow associated with the event.
itemobjectThe row associated with double tap/click.
Properties
Index
Gets the index of the row.
public int Index { get; }
Property Value
- int
Item
Gets the item associated with the row.
public object? Item { get; }
Property Value
- object
Row
Gets the TableViewRow associated with the event.
public TableViewRow Row { get; }