:: com :: sun :: star :: report ::

constants group ForceNewPage

Constants
NONE The current section is printed on the current page.  
BEFORE_SECTION The current section is printed at the top of a new page.  
AFTER_SECTION The next section following the current section is printed at the top of a new page.  
BEFORE_AFTER_SECTION The current section is printed at the top of a new page as well as the next section.  
Constants' Details
NONE
const short NONE = 0;
Description
The current section is printed on the current page.
BEFORE_SECTION
const short BEFORE_SECTION = 1;
Description
The current section is printed at the top of a new page.
AFTER_SECTION
const short AFTER_SECTION = 2;
Description
The next section following the current section is printed at the top of a new page.
BEFORE_AFTER_SECTION
const short BEFORE_AFTER_SECTION = 3;
Description
The current section is printed at the top of a new page as well as the next section.
Top of Page