|
Summary
Specifies if it is currently possible to save the configuration settings.
Description
The boolean SaveSettings property is used to check if it is possible to save the terminal settings at that specific time. An application may want to enable or disable a menu item depending on
the value of the SaveSettings property.
To save the terminal settings, call the SaveTermSetting method (or set the VtAction property to VT_SAVE_SETTINGS). The terminal settings will be saved and associated with the configuration name
specified by the user. Before terminal settings can be saved the Initialize method must be called (or the Action property set to ACTION_INITIALIZE).
There is no default value for this property. This property can only be read at run time after the emulation has been initialized and cannot be written to at any time.
Example
Menu_Action_Item(4).Enabled = (Vt220Client.SaveSettings = True)
|