system.gui.isTouchscreenModeEnabled
Description
Checks whether or not the running client's touchscreen mode is currently enabled.
Syntax
system.gui. isTouchscreenModeEnabled()
-
Parameters
None
-
Returns
boolean - True(1) if the client currently has touchscreen mode activated.
-
Scope
All
Code Examples
Code Snippet
#This example should be used in the Client Startup Script to check if this client is being run on a touch screen computer (judged by an IP address) and set touchscreen mode.
ipAddress
=
system.net.getIpAddress()
query
=
"SELECT COUNT(*) FROM touchscreen_computer_ips WHERE ip_address = '%s' "
isTouchscreen
=
system.db.runScalarQuery(query
%
(ipAddress))
if
isTouchscreen
and
not
system.gui.isTouchscreenModeEnabled():
system.gui.setTouchscreenModeEnabled(
1
)