Table of Contents

Class TableViewRowDoubleTappedEventArgs

Namespace
WinUI.TableView
Assembly
WinUI.TableView.dll

Provides data for the RowDoubleTapped event.

public class TableViewRowDoubleTappedEventArgs : HandledEventArgs
Inheritance
object
EventArgs
HandledEventArgs
TableViewRowDoubleTappedEventArgs

Constructors

TableViewRowDoubleTappedEventArgs(int, TableViewRow, object?)

Initializes a new instance of the TableViewRowDoubleTappedEventArgs class.

public TableViewRowDoubleTappedEventArgs(int index, TableViewRow row, object? item)

Parameters

index int

The index of the row.

row TableViewRow

The TableViewRow associated with the event.

item object

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

Property Value

TableViewRow