Description
Loads the print options object from an input print configuration name.
Returns true if the print configuration is found and loaded correctly, false if the loading operation fails.
Syntax
optprint.Load (login, optname) |
optprint
print options object created by Fred.GetPDFOptions("") or Ted.GetPDFOptions("")
login
login, obtained by EditorialLogin.Get()
optName
print configuration name
Example
Dim optPrint As Editorial.PrintOptions = Nothing
If (opt.Load(EditorialLogin.Get(), ConfigName))then
‘PrintOptions loaded
Else
‘error
End if