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
MouseEventArgsThe coordinates of the click.
row
MudTrThe row which was clicked.
item
TThe 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
Row
The row which was clicked.
public MudTr Row { get; }