DriverName Property



 
The DriverName property contains the name of the printer driver.


Syntax

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

    The property is read only.
Remarks Examples
    The following example displays the driver name of the first available printer.

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

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

Back to top