Copies Property
The Copies property contains the number of copies to print.
Syntax
PrintDialogOptions.Copies [=long]
|
Possible Values
Long value that specifies or retrieves the number of copies.
|
The property is read/write.
Remarks
Examples
The following example prints 2 copies of the document that the user requested to print.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Printer.OnShowPrintDialog = OnShowPrintDialog;
function OnShowPrintDialog(SKBrowser, options)
{
options.Copies = 2;
return false;
}
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top