Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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:

Value Description Command
rstHeader The common header report template section that you can create by calling the Report Designer‘s SetHeaderSection procedure. HeaderSection
rstDetail The 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
rstFooter The common footer report template section that you can create by calling the Report Designer’s SetFooterSection procedure. FooterSection
rstDetailLevel The 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
rstGroupHeader The 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
rstGroupFooter The 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