RootDocumentHasFrameset Property
The RootDocumentHasFrameset property indicates whether the root document has a frameset.
Syntax
[bool=] PrintDialogOptions.RootDocumentHasFrameset
|
Possible Values
Boolean value that retrieves the status.
|
The property is read only.
Remarks
Examples
The following example displays whether the root document has a frameset when the user requests to print.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Printer.OnShowPrintDialog = OnShowPrintDialog;
function OnShowPrintDialog(SKBrowser, options)
{
alert(options.RootDocumentHasFrameset);
return false;
}
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top