Location Property



 
The Location property contains the name of the physical printer location.


Syntax

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

    The property is read only.
Remarks
    For example, the physical location name of a printer could be "Bldg. 38, Room 1164".

    See PRINTER_INFO_2 (MSDN) for further information.
Examples
    The following example displays the name of the physical printer location of the first available printer.

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

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

Back to top