3.12

@@DefineSection

Use the @@DefineSection statement to declare a section. Every @@BeginSection / @@EndSection pair must also include a @@DefineSection statement.

Syntax:

@@DefineSection(<name>)

Parameters:

<name>

The section name. Must be identical to the corresponding @@BeginSection <name> value.

 

Place @@DefineSection immediately after the corresponding @@BeginSection statement. 

Example

@@BeginSection('Terms')
@@DefineSection('Terms')
@@Include

This content is included in the section.

@@End
@@EndSection