required.printDocument
| Syntax |
required.printDocument (appID, path)
|
| Params |
appID is a value identifying the application to which this verb is addressed. It can be a string4 containing the application signature, a binary value obtained by calling sys.browseNetwork or a string containing a valid network address. path is the path to the file you wish to print with the application identified by appID.
|
| Action |
Instructs the application identified by appID to print the document at path.
|
| Returns |
True if the document was found and printed, false if not.
|
| Examples |
required.printDocument ('BARC', "System:Data:New Chart") » true
|
| Platform Notes |
This verb is only implemented in the Mac OS version of Frontier.
|
| Notes |
Typically, an application's verb table will include high-level verbs that correspond to all of the events that it supports, so scripts should not have to call the required verbs directly. The application identified by appID must be running before this verb is sent.
|
| See Also |
core.print
|