TdxSpreadSheetReportSectionType Enum
Enumerates spreadsheet report template section types.
Declaration
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:
The SectionType field provided by the TdxSpreadSheetReportSection class;
The AType parameter of the FindSection, GetSection, and RemoveSection methods provided by the Report Designer.
See Also