2022.1

Table Of Contents
Field Type Description
"section" on
page1515
Section The section in which the element is located. This is always
a Print section, since Post Pagination Scripts only operate
on the Print context.
sheetCount Number
The number of sheets in the page bundle associated with
the section in which the first element of the results is
located.
sheetNo Number
The sheet number on which the first element of the
results is located.
results
The results object (type: QueryResults) is the result of the query for HTML elements that match
the selector of the script. The selector of a script can be specified in the Script Editor and is
visible in the second column of the Scripts pane, next to the name of the script.
If, for example, a script would have the selector p.onlyCanada, the script would apply to all
paragraphs that have the class onlyCanada. (Classes can be defined in the Attributes pane at
the right: select the element in the content and type the class(es) in the Class field.)
The script could then use the results object to hide or show those paragraphs, depending on
the value of the data field Country in the current record:
if (record.fields["Country"] == "CANADA") {
results.show();
} else {
results.hide();
}
Note
This object can't be used in Control Scripts, because they don't have a selector.
Tip
The easiest way to access the elements in a result set one by one, is by setting the scope
Page 1509