Class TableViewCellDoubleTappedEventArgs
Provides data for the CellDoubleTapped event.
public class TableViewCellDoubleTappedEventArgs : HandledEventArgs
- Inheritance
-
objectEventArgsHandledEventArgsTableViewCellDoubleTappedEventArgs
Constructors
TableViewCellDoubleTappedEventArgs(TableViewCellSlot, TableViewCell, object?)
Initializes a new instance of the TableViewCellDoubleTappedEventArgs class.
public TableViewCellDoubleTappedEventArgs(TableViewCellSlot slot, TableViewCell cell, object? item)
Parameters
slotTableViewCellSlotThe slot of the cell.
cellTableViewCellThe TableViewCell associated with the event.
itemobjectThe item associated with the cell.
Properties
Cell
Gets the TableViewCell associated with the event.
public TableViewCell Cell { get; }
Property Value
Item
Gets the item associated with the cell.
public object? Item { get; }
Property Value
- object
Slot
Gets the slot of the cell.
public TableViewCellSlot Slot { get; }