Specifications

COM+ reference
64
Glink: API reference manual Gallagher & Robertson
Instructs Glink to fire a GlinkEvent_STRING_RECEIVED event when the
given string is received from host. Several strings may be waited for, each with
its own identity value. The check is performed before the received data is
processed by the emulation module of Glink. Use the notifyScreenArea method
instead if you want the check to be performed after the received data has been
processed by Glink.
Parameters:
string - The string for which a notification is to be sent.
caseSensitive - Specifies if the match is to be case sensitive.
identity - Select a positive number to identify this string. This value
will be supplied with the GlinkEvent object (getValue
method) to identify which string the notification is for.
removeAfterwards - Specifies whether the string should be removed from the
notification list after the string has been received from host
and the notification has been sent. The string may also be
removed from the list with the removeNotifyString call.
See also:
removeNotifyString(int), GlinkEvent.getValue(),
notifyScreenArea(GlinkScreenArea, int, boolean)
noToolbar
void noToolbar()
This method instructs Glink to start without a toolbar and keybar. Also, when
this option is set, no images are loaded at all to save memory and reduce startup
time.
queueGlinkEvents
void queueGlinkEvents (boolean enable)
Enables or disables the queuing of GlinkEvents. GlinkEvents queuing can be
used instead of a GlinkEvent listener to get hold of GlinkEvents. Use the
getGlinkEvent method to get hold of GlinkEvents queued.
Restricted