Specifies the section type, which is equivalent to a the index of a Section object in the control's Sections collection.

Namespace:  C1.C1Report
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public enum SectionTypeEnum
Visual Basic
Public Enumeration SectionTypeEnum

Members

Member nameDescription
Undefined Undefined. This setting indicates the field doesn't belong to any sections and should not be rendered.
Detail Detail section: repeated for every record in the source recordset.
Header Report header section: appears once, in the beginning of the report.
Footer Report footer section: appears once, in the end of the report.
PageHeader Page header section: appears at the top of every page, subject to the setting of the PageHeader property.
PageFooter Page footer section: appears at the bottom of every page, subject to the setting of the PageFooter property.
GroupHeader1 Group header section: appears before level-one groups.
GroupFooter1 Group footer section: appears after level-one groups.
GroupHeader2 Group header section: appears before level-two groups.
GroupFooter2 Group footer section: appears after level-two groups.
GroupHeader3 Group header section: appears before level-three groups.
GroupFooter3 Group footer section: appears after level-three groups.
GroupHeader4 Group header section: appears before level-four groups.
GroupFooter4 Group footer section: appears after level-four groups.

Remarks

Use the members of this enumeration to set the value of the Section and Type properties.

See Also