Skip to main content
Version: 8.3 Beta 🚧

system.vision.getEdition

Backwards Compatibility

This function replaces system.util.getEdition. 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​

Returns the edition of the Vision Client:

  • Standard
  • Limited
  • Panel

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.vision.getEdition()

Parameters​

Nothing

Returns​

String - The edition of the Vision module that is running the Client.

Scope​

Vision Client

Code Examples​

Example #1
# This code will write the Vision module edition to a text field on the same page.

event.source.parent.getComponent('Text Field').text = system.vision.getEdition()