Comment Property



 
The Comment property contains a brief printer description.


Syntax

    [str=] SiteKiosk.Printer.Printers.Item(index).Comment
    
Possible Values
    String that retrieves the description.

    The property is read only.
Remarks Examples
    The following example displays a brief printer description of the first available printer.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Printer.Printers.Item(1).Comment);
    </SCRIPT>
    

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

Back to top