2022.2

Table Of Contents
ThePaginationInfoobject(aswellastheinfo()function)isonlyavailableinPostPaginationScripts
(see"PostPaginationScripts"onpage850).ItisessentialinaPostPaginationScriptthatcreatesa
tableofcontents,asdescribedinthefollowingtopic:"CreatingaTableOfContents"onpage852.
Forthetotalpagecount,sheetcountandstart/endpagenumbersofasingle section,usethesec-
tionobject's"Pagination"onpage1313(seealso:"section"onpage1305).
Forthetotalpageandsheetcountofall Print sectionstogetherusethemergeobject's"Pagination"
onpage1314(seealso:"merge"onpage1313).
Field Type Description
pageCount
Number
The number of pages in the page bundle associated with the section in which the first
element of the results is located.
pageNo
Number Thepagenumberonwhichthefirstelementoftheresultsislocated.
"section"on
page1305
Section Thesectioninwhichtheelementislocated.ThisisalwaysaPrintsection,sincePostPaginationScripts
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oftheresults
islocated.
sheetNo
Number Thesheetnumberonwhichthefirstelementoftheresultsislocated.
results
Theresultsobject(type:QueryResults)istheresultofthequeryforHTMLelementsthatmatch
theselectorofthescript.TheselectorofascriptcanbespecifiedintheScriptEditorandisvisiblein
thesecondcolumnoftheScriptspane,nexttothenameofthescript.
If,forexample,ascriptwouldhavetheselectorp.onlyCanada,thescriptwouldapplytoallpara-
graphsthathavetheclassonlyCanada.(ClassescanbedefinedintheAttributespaneattheright:
selecttheelementinthecontentandtypetheclass(es)intheClassfield.)
Thescriptcouldthenusetheresultsobjecttohideorshowthoseparagraphs,dependingonthe
valueofthedatafieldCountryinthecurrentrecord:
if (record.fields["Country"] == "CANADA") {
results.show();
} else {
results.hide();
}
Note: Thisobjectcan'tbeusedinControlScripts,becausetheydon'thaveaselector.
Page 1301