Report pages can only be created by report.addPage().
More...
Detailed Description
Report pages can only be created by report.addPage().
Member Function Documentation
| void report::Page::appendSection |
( |
Section |
aSection | ) |
|
Appends a section to the end of the page.
New sections can be created by report.createSection().
- Parameters
-
| [in] | aSection | The section to append. |
| void report::Page::insertSection |
( |
Number |
aIndex, |
|
|
Section |
aSection |
|
) |
| |
Inserts a section to the page.
New sections can be created by report.createSection() .
- Parameters
-
| [in] | aIndex | The position where the section shall be inserted. Must be in range 0 ... sectionCount() . |
| [in] | aSection | The section to insert. |
- Exceptions
-
| Error | When invalid position provided. |
| Number report::Page::printHeight |
( |
| ) |
|
- Returns
- The sum of all section print heights.
| Section report::Page::sectionAt |
( |
Number |
aIndex | ) |
|
Get the existing section object at a certain index.
- Parameters
-
| [in] | aIndex | The section index, it must be in the range 0 ... sectionCount()-1. |
- Returns
- Returns the section object.
- Exceptions
-
| Error | When invalid index provided. |
| Number report::Page::sectionCount |
( |
| ) |
|
- Returns
- Number of sections in the page.