Class DataGridCellMouseEventArgs<T>
Supplies information about a CellContextMenu event that is being raised.
Inheritance
System.Object
DataGridCellMouseEventArgs<T>
Namespace: Radzen
Assembly: Radzen.Blazor.dll
Syntax
public class DataGridCellMouseEventArgs<T> : Microsoft.AspNetCore.Components.Web.MouseEventArgs
Type Parameters
Name | Description |
---|---|
T |
Properties
Column
Gets the RadzenDataGridColumn which this cells represents.
Declaration
public RadzenDataGridColumn<T> Column { get; }
Property Value
Type | Description |
---|---|
RadzenDataGridColumn<T> |
Data
Gets the data item which the clicked DataGrid row represents.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T |