Class RecordClickEventArgs<T>
Defines the event arguments for the record click action of the Tree Grid.
Inheritance
System.Object
RecordClickEventArgs<T>
Namespace: Syncfusion.Blazor.TreeGrid
Assembly: Syncfusion.Blazor.dll
Syntax
public class RecordClickEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | TValue of the tree grid component. |
Constructors
RecordClickEventArgs()
Declaration
public RecordClickEventArgs()
Properties
CellIndex
Gets the index of the clicked cell.
Declaration
public int CellIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the cell that was clicked. The default value is -1. |
Column
Gets the column object related to the clicked cell.
Declaration
public GridColumn Column { get; }
Property Value
Type | Description |
---|---|
GridColumn | An instances of GridColumn in the tree grid. |
RowData
Gets the data object of the current row that was clicked.
Declaration
public T RowData { get; }
Property Value
Type | Description |
---|---|
T | An object of the type |
RowIndex
Gets the index of the clicked row.
Declaration
public int RowIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the row that was clicked. The default value is -1. |