Class RowExpandedEventArgs<T>
Defines the event arguments for expand action of Tree Grid.
Inheritance
System.Object
RowExpandedEventArgs<T>
Namespace: Syncfusion.Blazor.TreeGrid
Assembly: Syncfusion.Blazor.dll
Syntax
public class RowExpandedEventArgs<T> : Object
Type Parameters
Name | Description |
---|---|
T | A type which provides schema for the event arguments. |
Constructors
RowExpandedEventArgs()
Declaration
public RowExpandedEventArgs()
Properties
Data
Defines the parent row data.
Declaration
public T Data { get; }
Property Value
Type | Description |
---|---|
T | The data object representing the parent row. |
Items
Defines the parent row data.
Declaration
public List<T> Items { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<T> | The list of data object representing the parent rows/currentview records. |
Row
Defines the parent row element.
Declaration
public DOM Row { get; set; }
Property Value
Type | Description |
---|---|
DOM | A DOM element that specifies the parent row element. |