Table of Contents

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 MouseEventArgs

The coordinates of the pointer for this click.

item T

The item which was clicked.

rowIndex int

The 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

MouseEventArgs

RowIndex

The index of the row.

public int RowIndex { get; }

Property Value

int