Description
This event is sent whenever a setting is changed.
Syntax
Private Sub object_SettingChanged(Module, Section, Key, value)
The SettingChanged Event syntax has these parts:
|
| object | A McApplication object. | | Module | A String value. BSTR : The module name ("Application" for example)
| | Section | A String value. BSTR : The section for this module ("StatusBar").
| | Key | A String value. BSTR : The key within the section.
| | value | A Variant value. VARIANT : The new value for the setting.
|
Remarks
Monitoring this event allows the clients to update whenever an application setting is changed.
|