AreRatingsEnabled Property



 
The AreRatingsEnabled property indicates whether ratings are enabled.


Syntax

    [bool=] PrintDialogOptions.AreRatingsEnabled
    
Possible Values
    Boolean value that retrieves the status.

    The property is read only.
Remarks
    None.
Examples
    The following example displays whether ratings are enabled when the user requests to print.

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

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

Back to top