Class PdfDetailTemplateRowSettings
Provides configuration for rendering a detail template row in PDF export. Includes column layout, optional header and content rows, and image support. Inherits hyperlink and text settings from DetailTemplateSettings.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class PdfDetailTemplateRowSettings : DetailTemplateSettings
Constructors
PdfDetailTemplateRowSettings()
Declaration
public PdfDetailTemplateRowSettings()
Properties
ColumnCount
Gets or sets the total number of columns in the detail rows.
Declaration
public int? ColumnCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The default value could be null. |
Remarks
If the column count property is not specified, it will be determined based on the Headers and Rows of the first row's cell count. If the column count is less than the cell count, it will be considered as the row's cell count instead of the column count.
Headers
Gets or sets the PdfGrid header content of the detail row which includes stacked headers too.
Declaration
public List<PdfDetailTemplateRow>? Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| List<PdfDetailTemplateRow> | A collection of PdfDetailTemplateRow objects representing header content. |
Remarks
This property is utilized to render the hierarchical grid structure, which includes headers. It can render multi-level stacked headers if the detail grid has them; otherwise, there is no need to define value for this property.
Image
Gets or sets the image details of the current cell.
Declaration
public PdfImage? Image { get; set; }
Property Value
| Type | Description |
|---|---|
| PdfImage | An Syncfusion.PdfExport.PdfImage object represents image details such as ImageStream, width, and height etc.., You can customize and export image using this |
Rows
Gets or sets the collection of PdfGrid content rows for the corresponding detail row.
Declaration
public List<PdfDetailTemplateRow>? Rows { get; set; }
Property Value
| Type | Description |
|---|---|
| List<PdfDetailTemplateRow> | A list of |
Remarks
This property is utilized to render the hierarchical grid structure; otherwise, there is no need to define value for this property.