User manual - Web_Browser_Prog_Guide

NAURTECH WEB BROWSER SMART CLIENTS FOR WINDOWS CE .NET / POCKET PC
Web Browser Programming Guide Page 51
On the text INPUT element we support the “stiscan” and “stisubmit” attributes. If
present, the stiscan attribute controls which symbologies may be inserted into the
input element. If no value is specified, all symbologies are allowed. If an empty
string is specified, no symbologies are allowed. When the “stisubmit” attribute is
present, the enclosing form will be submitted after scanned data is inserted in the
element.
<input type=text name=upc size=12 maxlength=16
stiscan="ABCDEFGHIJKLMN" stisubmit>
The custom element BEEP is supported to sound a tone:
<NAURTECH:beep frequency="f" repeat="n" duration="d">
where f is in Hz, n is a count, and d is in milliseconds. The handheld device must
support a tone generator. The “NAURTECH:” namespace label is required.
The custom element PRINT is supported to send print content to the printer.
<NAURTECH:print name="printer" type="N" announce="yes" retries=3>
Print content here\n\r
</print>
where “printer” is the destination name of the printer, and type is the connection
type. The “NAURTECH:” namespace label is required. The following connection
types are supported:
Connection
Type
Name Values Description
Q Name is the Windows print
queue name
Print to Windows print
queue
N Printer IP address or hostname
and port. For example,
“192.168.1.101:6101”
Print directly to port
dddd Same as ‘N’ but port specified
as dddd.
Print directly to port
I, B, S, (other) (ignored) Print to configured printer
for current session.
Standard escape characters such as “\r”, “\n”, and “\xXX” will be substituted in
the print contents. Literal line breaks in the content are ignored, you must use
“\r\n” if the printer language requires a line break.