Class TableViewCellContextFlyoutEventArgs
Provides data for the CellContextFlyout event.
public class TableViewCellContextFlyoutEventArgs : HandledEventArgs
- Inheritance
-
objectEventArgsHandledEventArgsTableViewCellContextFlyoutEventArgs
Constructors
TableViewCellContextFlyoutEventArgs(TableViewCellSlot, TableViewCell, object, FlyoutBase?)
Initializes a new instance of the TableViewCellContextFlyoutEventArgs class.
public TableViewCellContextFlyoutEventArgs(TableViewCellSlot slot, TableViewCell cell, object item, FlyoutBase? flyout)
Parameters
slotTableViewCellSlotThe slot of the cell for which the context flyout is being shown.
cellTableViewCellThe cell for which the context flyout is being shown.
itemobjectThe item associated with the cell.
flyoutFlyoutBaseThe context flyout to be shown.
Properties
Cell
Gets the cell for which the context flyout is being shown.
public TableViewCell Cell { get; }
Property Value
Flyout
Gets the context flyout to be shown.
public FlyoutBase? Flyout { get; }
Property Value
- FlyoutBase
Item
Gets the item associated with the cell.
public object Item { get; }
Property Value
- object
Slot
Gets the slot of the cell for which the context flyout is being shown.
public TableViewCellSlot Slot { get; }