Table of Contents

Class TableViewCellDoubleTappedEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the CellDoubleTapped event.

public class TableViewCellDoubleTappedEventArgs : HandledEventArgs
Inheritance
object
EventArgs
HandledEventArgs
TableViewCellDoubleTappedEventArgs

Constructors

TableViewCellDoubleTappedEventArgs(TableViewCellSlot, TableViewCell, object?)

Initializes a new instance of the TableViewCellDoubleTappedEventArgs class.

public TableViewCellDoubleTappedEventArgs(TableViewCellSlot slot, TableViewCell cell, object? item)

Parameters

slot TableViewCellSlot

The slot of the cell.

cell TableViewCell

The TableViewCell associated with the event.

item object

The item associated with the cell.

Properties

Cell

Gets the TableViewCell associated with the event.

public TableViewCell Cell { get; }

Property Value

TableViewCell

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; }

Property Value

TableViewCellSlot