Class ExcelDetailTemplateRowSettings
Defines settings used to compose a single Excel detail row during export, including optional image content, header rows (with stacked headers), and data rows for hierarchical layouts.
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExcelDetailTemplateRowSettings : DetailTemplateSettings
Constructors
ExcelDetailTemplateRowSettings()
Declaration
public ExcelDetailTemplateRowSettings()
Properties
Headers
Gets or sets the Excel header content of the detail row which includes stacked headers too.
Declaration
public List<ExcelDetailTemplateRow>? Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| List<ExcelDetailTemplateRow> | A collection of ExcelDetailTemplateRow objects representing the 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 detail cell.
Declaration
public Image? Image { get; set; }
Property Value
| Type | Description |
|---|---|
| Image | An Syncfusion.ExcelExport.Image object represents the image details such as image string, width, and height. You can customize and export image in the corresponding cell. |
Rows
Gets or sets the collection of Excel content rows for the corresponding detail row.
Declaration
public List<ExcelDetailTemplateRow>? Rows { get; set; }
Property Value
| Type | Description |
|---|---|
| List<ExcelDetailTemplateRow> | A list of ExcelDetailTemplateRow objects representing the content for the detail row. |
Remarks
This property is utilized to render the hierarchical grid structure; otherwise, there is no need to define value for this property.