Onetastic Macro Documentation >
>
Literals Literals
Literals values can be used in the expressions to provide a fixed value.
Literals can be of type string, numeric or bool. Following is an example
usage of a string literal to modify the title of the current page:
foreach ($Paragraph in QueryObjects("Paragraph", GetCurrentPage()))
$Paragraph.text = "Grocery List"
break 1
The break statement here is also using the numeric literal "1".
|