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
TThe 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
mouseEventArgsMouseEventArgsThe coordinates of the click.
rowMudTrThe row which was clicked.
itemTThe 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; }