SepFile Property
The SepFile property contains the name of the file used to create the separator page.
Syntax
[str=] SiteKiosk.Printer.Printers.Item(index).SepFile
|
Possible Values
String that retrieves the file name.
|
The property is read only.
Remarks
The separator page is used to separate print jobs sent to the printer.
See PRINTER_INFO_2 (MSDN) for further information.
Examples
The following example displays the name of the file used to create the separator page of the first available printer.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Printer.Printers.Item(1).SepFile);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top