Returns the specified preference value.
oVariant = Preferences.GetPreferenceValue( PreferenceName ); |
| Parameter | Type | Description |
|---|---|---|
| PreferenceName | String | The name of the preference to get. The syntax for specifying an individual preference is: "category.preference". |
Application.LogMessage( Application.Preferences.GetPreferenceValue("scripting.language") )
# INFO : Python
|