The IApplicationGlobals interface contains properties and methods that are used to work with global application variables.
| Property name | Brief description | |
| Count | The Count property returns the number of global variables in the application. | |
| Item | The Item property determines value of the specified global variable. | |
| Name | The Name property returns the name of the global variable, which index is passed as the Index input parameter. |
| Method name | Brief description | |
| Add | The Add method adds a new variable named Name with the Value value to the global variables list. | |
| Clear | The Clear method clears the entire global variables list. | |
| Remove | The Remove method removes a global variable by its name. | |
| RemoveAt | The RemoveAt method removes a global variable by its index. |
See also: