Define instruction
The define instruction is used to define a variable to be used throughout a document template. The variable is not bound by any Repeat loops.
The define instruction is typically used in conjunction with the ##Set instruction and is useful when a value from an outer Repeat loop needs to be passed to another outer Repeat loop.
The define statement has the following format:
##Define(variable, datatype, value)
The syntax for using the value of the variable in a template has the following format:
[d.{variable}]
Example:
##Define(myObjName, string, "") ##Define(myObjNameLength, int, 0)
Provide Feedback