Linked Property
The Linked property indicates whether to print the linked pages.
Syntax
PrintDialogOptions.Linked [=bool]
|
Possible Values
Boolean value that specifies or retrieves the status.
|
The property is read/write.
Remarks
Examples
The following example prints the document that the user requested to print including all linked pages.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Printer.OnShowPrintDialog = OnShowPrintDialog;
function OnShowPrintDialog(SKBrowser, options)
{
options.Linked = true;
return false;
}
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top