Specifications
COM+ reference
62
Glink: API reference manual Gallagher & Robertson
noScreen
void noScreen()
This method instructs Glink to start without the Glink screen display class. If a
number of Glink sessions are started without using the Glink display at all,
performance will be improved by setting this parameter. Please note that if you
just want to hide the screen display, use the setVisible method instead to switch
the Glink display on and off.
notifyCommandKey
void notifyCommandKey(int commandKey)
Instructs Glink to fire a GlinkEvent_COMMAND_KEY_TYPED event when
the given command key is typed. This command key will then be ignored by
Glink. For the command key to be processed by Glink, send the command key
back to Glink with the sendCommandKey method when notified.
Several command keys may be marked for notification. To be notified for all
command keys, set the commandKey parameter to -1.
Parameters:
commandKey - The command key for which notifications are to be sent.
See also:
GlinkKey, removeNotifyCommandKey(int),
GlinkEvent_COMMAND_KEY_TYPED
notifyKey
void notifyKey(int key)
Instructs Glink to fire a GlinkEvent.KEY_TYPED event when the given key is
typed. This key will then be ignored by Glink. For the key to be processed by
Glink, send the key back to Glink with the sendKeys method when the
notification is received.
Several keys may be marked for notification. To receive notification for every
key typed, set the commandKey parameter to -1.
Parameters: