FromPage Property



 
The FromPage property contains the number of the first page to print.


Syntax

    PrintDialogOptions.FromPage [=long]
    
Possible Values
    Long value that specifies or retrieves the page number.

    The property is read/write.
Remarks
    None.
Examples
    The following example prints the first page 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.FromPage = 1;
       options.ToPage = 1;
       return false;
    }
    </SCRIPT>
    

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

Back to top