Class ParentRowInfo<T>
Provides contextual information about the parent row when exporting detail templates to PDF. Includes the parent row data item, its row index, and the parent grid's columns.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ParentRowInfo<T>
Type Parameters
| Name | Description |
|---|---|
| T | Type of the parent row data item. |
Constructors
ParentRowInfo()
Declaration
public ParentRowInfo()
Properties
Columns
Gets the columns of the parent grid.
Declaration
public List<GridColumn>? Columns { get; }
Property Value
| Type | Description |
|---|---|
| List<GridColumn> | A list of GridColumn objects representing the columns of the parent grid. |
Data
Gets the row data associated with the parent row.
Declaration
public T? Data { get; }
Property Value
| Type | Description |
|---|---|
| T | A |
Index
Gets the row index of the parent row.
Declaration
public int Index { get; }
Property Value
| Type | Description |
|---|---|
| int | An index representing the row index of the parent row. |