Back to Devexpress

TdxSpreadSheetReportSectionType Enum

vcl-dxspreadsheetreportdesigner-c37887bb.md

latest4.9 KB
Original Source

TdxSpreadSheetReportSectionType Enum

Enumerates spreadsheet report template section types.

Declaration

delphi
TdxSpreadSheetReportSectionType = (
    rstHeader,
    rstDetail,
    rstFooter,
    rstDetailLevel,
    rstGroupHeader,
    rstGroupFooter
);

Members

Name
rstHeader
rstDetail
rstFooter
rstDetailLevel
rstGroupHeader
rstGroupFooter

Remarks

Options include:

ValueDescriptionCommand
rstHeaderThe common header report template section that you can create by calling the Report Designer‘s SetHeaderSection procedure.HeaderSection
rstDetailThe root detail report template section that you can create by calling the Report Designer’s SetDetailSection procedure with the default ALevel parameter value. The root detail section is repeated in the resulting report document for all records of the dataset bound by using the Report Designer’s DataBinding.DataSource.DataSet property. For information on nested detail report template sections, refer to the rstDetailLevel value.DetailSection
rstFooterThe common footer report template section that you can create by calling the Report Designer’s SetFooterSection procedure.FooterSection
rstDetailLevelThe nested report detail template sections for master-detail reports. You can create a nested detail template section by calling the Report Designer’s SetDetailSection procedure with the respected detail level index passed as the ALevel parameter. A nested detail section must be within the respective parent detail section’s boundaries.DetailLevel
rstGroupHeaderThe group header and footer are used to enclose each set of the grouped dataset records at any detail level. In order to create a group header at the corresponding detail level, call the Report Designer’s SetGroupHeaderSection procedure, passing the level as the ALevel parameter. Note that the created group must be within the corresponding detail section boundaries.GroupHeaderSection
rstGroupFooterThe group header and footer are used to enclose each set of the grouped dataset records at any detail level. In order to create a group footer at the corresponding detail level, call the Report Designer’s SetGroupFooterSection procedure, passing the level as the ALevel parameter. Note that the created group must be within the corresponding detail section boundaries.GroupFooterSection

The TdxSpreadSheetReportSectionType type is referenced by:

See Also

dxSpreadSheetReportDesigner Unit