2022.2

Table Of Contents
printSections['Section EN'].enabled = false;
printSections['Section FR'].enabled = false;
if(record.fields.Language === 'FR'){
printSections['Section FR'].enabled = true;
} else {
printSections['Section EN'].enabled = true;
}
ImageResource
TheImageResourceobjectrepresentsanimageresourceinatemplate.
Inscript,anImageResourceisretrievedviatheimagesArraywhichcontainsalistofallimage
resourcesthatareincludedinthecurrenttemplate(see"template"onpage835).
Forexample:var myImage = merge.template.images[0];.
Functions and fields
Field Type Description
modified Number Timestampofthelastmodificationoftheimageresource,forexample:1566660504000.
name
String Thebasenameoftheimageresource,forexample:"cat.jpg".
path
String Thepathoftheimageresource,relativetothetemplate,forexample:"images/cat.jpg".
Example
Thefollowingscriptaddsanimagecalled'dog.jpg'tothecontentofthetemplateiftheimagecanbe
foundinthetemplate'sresources:
const image = merge.template.images.find(image => image.name == 'dog.jpg');
if (image) {
results.after(`<img src=${image.path}>`);
}
MediaPosition
InaControlScript,thepositionisanenumerationforthepositionofbackgroundresourcesfora
Printsection.Itisretrievedandsetviabackground.position.
Field Description
ABSOLUTE
PlacesthePDFataspecificlocationonthepage.Setthebackground'stop(background.top)andleft(background.left)
measuredfromthetopandleftsideofthesection.
Page 838