Skip to main content
Version: 8.3

system.vision.getAvailableTerms

Backwards Compatibility

This function replaces system.util.getAvailableTerms. Any scripts containing Vision Client scoped functions that were replaced with system.vision syntax will still work to maintain backwards compatibility.

This function is used in Python Scripting.

Description​

Returns a collection of available terms defined in the translation system.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.vision.getAvailableTerms()

Parameters​

Nothing

Returns​

List - A list of all of the terms available from the translation manager, as strings.

Scope​

Vision Client

Code Examples​

Example #1
# This code will print out a list of all of the available terms to the console.

collection = system.vision.getAvailableTerms()
for term in collection:
print term