Provides for printing of documents.
- Source:
Methods
(static) printPage() → {Promise}
Displays the print dialog, allowing the user to send the page to the printer.
- Source:
Returns:
When resolved, the print request has been handed to the OS,
which ordinarily displays a print dialog.
- Type
- Promise
Example
airlock.printing.printPage()
.then(function () {
alert('Print request sent to OS');
}).catch(function (e) {
alert("Error sending print request " + e);
});