AsShown Property



 
The AsShown property indicates whether to print the document as shown.


Syntax

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

    The property is read/write.
Remarks
    None.
Examples
    The following example prints the document that the user requested to print as shown.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Printer.OnShowPrintDialog = OnShowPrintDialog;
    function OnShowPrintDialog(SKBrowser, options)
    {
       options.AsShown = true;
       return false;
    }
    </SCRIPT>
    

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

Back to top