Class DataGridRowClickEventArgs<T>
- Namespace
- MudBlazor
- Assembly
- MudBlazor.dll
Represents the information related to a RowClick event.
public class DataGridRowClickEventArgs<T> : EventArgs
Type Parameters
TThe 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
mouseEventArgsMouseEventArgsThe coordinates of the pointer for this click.
itemTThe item which was clicked.
rowIndexintThe 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; }