3.3
@@BeginSection
The @@BeginSection statement tells the document processor to place a new section in the generated document. Sections appear in the document in the same order as your @@BeginSection statements. Sections declared with @@BeginSection are defined using the @@DefineSection/@@EndSection pair.
Syntax:
@@BeginSection(<name> #NewPage)
Parameters:
<name>
Is the section name and can be any value desired and is enclosed in single quotes.
#NewPage
Tells the doc processor to begin the section on a new page. Optional.
Example
@@BeginSection('Terms')
Creates a section named Terms.