Enum ProcessAt
Specifies how the report engine processes the text objects.
Namespace: FastReport
Assembly: FastReport.OpenSource.dll
Syntax
public enum ProcessAt
Fields
Name | Description |
---|---|
ColumnFinished | Specifies that the text object must be processed when the column is finished. This mode can be used to print the column total (which is normally calculated at the column footer) in the column header band. |
Custom | Specifies that the text object is processed manually when you call the Engine.ProcessObject method in the report script. |
DataFinished | Specifies that the text object must be processed when the data block is finished. This mode can be used to print a total value in the data header (which is normally available in the data footer only). |
Default | Specifies the default process mode. The text object is processed just-in-time. |
GroupFinished | Specifies that the text object must be processed when the group is finished. This mode can be used to print a total value in the group header (which is normally available in the group footer only). |
PageFinished | Specifies that the text object must be processed when any report page is finished. This mode can be used to print the page total (which is normally calculated at the page footer) in the page header band. |
ReportFinished | Specifies that the text object must be processed when the entire report is finished. This mode can be used to print grand total value (which is normally calculated at the end of report) in the report title band. |
ReportPageFinished | Specifies that the text object must be processed when the entire report page is finished. This mode can be used if the report template consists of several report pages. |