Class DataGridRowClickEventArgs<T>
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents the information related to a RowClick event.
public class DataGridRowClickEventArgs<T> : EventArgs
Type Parameters
T
The item managed by the MudDataGrid<T>.
- Inheritance
-
DataGridRowClickEventArgs<T>
- Inherited Members
- Extension Methods
Constructors
DataGridRowClickEventArgs(MouseEventArgs, T, int)
Creates a new instance.
public DataGridRowClickEventArgs(MouseEventArgs mouseEventArgs, T item, int rowIndex)
Parameters
mouseEventArgs
MouseEventArgsThe coordinates of the pointer for this click.
item
TThe item which was clicked.
rowIndex
intThe index of the row.
Properties
Item
The item which was clicked.
public T Item { get; }
Property Value
- T
MouseEventArgs
The coordinates of the pointer for this click.
public MouseEventArgs MouseEventArgs { get; }
Property Value
RowIndex
The index of the row.
public int RowIndex { get; }