system.vision.setTouchscreenMode
Backwards Compatibility
This function replaces system.gui.setTouchscreenModeEnabled. Any scripts containing Vision Client scoped functions that were replaced with system.vision syntax will still work to maintain backwards compatibility. Only the system.vision variations will appear in the Script Editor's autocomplete popup.
This function is used in Python Scripting.
Description​
Alters a running Client's Touch Screen mode on the fly.
Client Permission Restrictions​
This scripting function has no Client Permission restrictions.
Syntax​
system.vision.setTouchscreenMode(enabled)
Parameters​
Type | Parameter | Description |
---|---|---|
Boolean | enabled | The new value for Touch Screen mode being enabled. |
Returns​
Nothing
Scope​
Vision Client
Code Example​
Example #1 - Enabling Touch Screen Mode
# This example could be used on an input heavy window's internalFrameActivated event
# to remove Touch Screen mode.
if system.vision.isTouchscreenMode():
system.vision.setTouchscreenMode(False)