PDF.SetProperties

PDF.SetProperties ( 

string ObjectName,

table  Properties )

Example 1

-- Create the properties table to set for the object.
tbProps = {};
tbProps.Page = PAGE_STANDARD;
tbProps.ShowToolbar = false;

-- Set the properties for the object.
PDF.SetProperties("PDF1", tbProps);

Makes the PDF object named "PDF1" show the page with no bookmarks or thumbs and to not show a toolbar.

See also:  Related Actions