Datatype Property



 
The Datatype property contains the name of the data type used to record a print job.


Syntax

    [str=] SiteKiosk.Printer.Printers.Item(index).Datatype
    
Possible Values
    String that retrieves the name of the data type.

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

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

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

Back to top