Is it possible to set and/or check the language/region/culture being used in SpaceClaim?
Below is a script to get the current User Options and Culture (language). Additionally, you can change the language and update the user options.
# Python Script, API Version = 22 cur_options=SpaceClaim.Api.V22.Application.UserOptions cur_culture=cur_options.Culture # if blank it is "Default" based on system culture new_options=cur_options new_options.Culture="en" SpaceClaim.Api.V22.Application.UserOptions=new_options