Class PdfDetailTemplateEventArgs<T>
Provides event data for configuring the PDF detail template generated for a grid row during export.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.Grids.dll
Syntax
public class PdfDetailTemplateEventArgs<T>
Type Parameters
| Name | Description |
|---|---|
| T | The type of the data item bound to the parent row. |
Remarks
Use this event argument to access the parent row context and to specify the content and layout of the corresponding detail row in the exported PDF.
Constructors
PdfDetailTemplateEventArgs()
Declaration
public PdfDetailTemplateEventArgs()
Properties
ParentRow
Gets details about the parent row.
Declaration
public ParentRowInfo<T>? ParentRow { get; }
Property Value
| Type | Description |
|---|---|
| ParentRowInfo<T> | This property contains information about the parent row index, data, and its corresponding columns. |
Remarks
Utilizing parent row details, you can customize the detail row.
RowInfo
Gets or sets the value for the detail template.
Declaration
public PdfDetailTemplateRowSettings? RowInfo { get; set; }
Property Value
| Type | Description |
|---|---|
| PdfDetailTemplateRowSettings | This property contains information about detail content, such as images, text, hyperlinks, or grids. |