system.util.getAvailableTerms
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.util.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.util.getAvailableTerms()
for term in collection:
print term