Settings are used by ALM to store various kinds of information, including user settings. They can also be used to store any application-specific data you wish.
Settings are organized by categories, analogous to settings folders. Each category can have any number of items. Each item has a value.
Begin use of the Settings object by using Open to restrict the scope to the desired category.
If the settings object is created using the UserSettings property of the TDConnection Object, the settings are only available to the user who saves them. If the object is created with the CommonSettings property, the settings are available to all users.
Close | Closes and updates the category. |
DeleteCategory | Deletes the current settings folder. |
DeleteValue | Deletes the specified item. |
Open | Sets the category to be used in subsequent actions by the client. |
Post | Posts the category to the server. |
Refresh | Reads saved values, overwriting values in memory. |
EnumItems | Returns the list of names of the setting's items. |
IsSystem | Checks if the specified setting is built-in and read-only. |
Value | The value of the specified item in the active category. |