Skip to main content
Version: Deprecated Pages

system.util.getAvailableTerms

note

This function was deprecated in 8.3. It is recommended to use system.vision.getAvailableTerms instead.

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