ActiveFrame Property



 
The ActiveFrame property indicates whether to print the active frame.


Syntax

    PrintDialogOptions.ActiveFrame [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the status.

    The property is read/write.
Remarks
    None.
Examples
    The following example prints the active frame 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.ActiveFrame = true;
       return false;
    }
    </SCRIPT>
    

Applies to
    SiteKiosk v6.2 (and later versions).

Back to top