Class ExcelDetailTemplateRow
Inherited Members
Namespace: Syncfusion.Blazor.Grids
Assembly: Syncfusion.Blazor.dll
Syntax
public class ExcelDetailTemplateRow : DetailTemplateRow
Constructors
ExcelDetailTemplateRow()
Declaration
public ExcelDetailTemplateRow()
Properties
Cells
Represents a list of cells within the header or content rows of a detail row in the Excel document.
Declaration
public List<ExcelDetailTemplateCell> Cells { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<ExcelDetailTemplateCell> | A list of ExcelDetailTemplateCell objects representing cells in the header or content rows of detail rows in the Excel document. |
Remarks
These cells can contain various types of values, including text, images, hyperlinks, etc.
ChildRowInfo
Gets or sets the nested level information of detail row, when parent row has nested level hierarchical structure.
Declaration
public ExcelDetailTemplateRowSettings ChildRowInfo { get; set; }
Property Value
Type | Description |
---|---|
ExcelDetailTemplateRowSettings | An instance of ExcelDetailTemplateRowSettings containing nested level values. |
Remarks
Use this property if a complex level hierarchy structure needs to be rendered; otherwise, it is not needed.
Grouping
Gets or sets the group of rows to expand and collapse.
Declaration
public Grouping Grouping { get; set; }
Property Value
Type | Description |
---|---|
Syncfusion.ExcelExport.Grouping | A grouping representing groups of detail rows to be expanded or collapsed. You can customize the grouping options for content rows of detail rows in the Excel document. |