Table of Contents

Class TableRowClickEventArgs<T>

Namespace
MudBlazor
Assembly
MudBlazor.dll

The information passed during a MudTable<T> row click event.

public class TableRowClickEventArgs<T> : EventArgs

Type Parameters

T

The type of data displayed in the table.

Inheritance
TableRowClickEventArgs<T>
Inherited Members
Extension Methods

Constructors

TableRowClickEventArgs(MouseEventArgs, MudTr, T?)

Creates a new instance.

public TableRowClickEventArgs(MouseEventArgs mouseEventArgs, MudTr row, T? item)

Parameters

mouseEventArgs MouseEventArgs

The coordinates of the click.

row MudTr

The row which was clicked.

item T

The data related to the row which was clicked.

Properties

Item

The data related to the row which was clicked.

public T? Item { get; }

Property Value

T

MouseEventArgs

The coordinates of the click.

public MouseEventArgs MouseEventArgs { get; }

Property Value

MouseEventArgs

Row

The row which was clicked.

public MudTr Row { get; }

Property Value

MudTr