ShortcutTable Property
The ShortcutTable property indicates whether to print a list of shortcuts at the end of the document.
Syntax
PrintDialogOptions.ShortcutTable [=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 a list of shortcuts at the end of the document.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Printer.OnShowPrintDialog = OnShowPrintDialog;
function OnShowPrintDialog(SKBrowser, options)
{
options.ShortcutTable = true;
return false;
}
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top