|
Summary
Modify a saved configuration.
Syntax
Boolean ModifyConfig (ConfigurationName)
Description
Some of the actions and methods can be invoked before the VT220 terminal emulation window is initialized. The application can change the terminal configuration to be used before the
initialization of the emulation window by calling the ModifyConfig method.
The ModifyConfig method takes a configuration name specified by the ConfigurationName parameter and returns a boolean. The configuration name must be set to a valid configuration. If the
configuration can be successfully modified, then the method returns True; otherwise, it returns False. The application should ensure that the method was successfully executed by checking the return
value.
Calling this method is equivalent to setting the VtAction property to VT_MODIFY_CONFIGURATION.
Example
Result = VT220Client.ModifyConfig ("default") If Result = False Then MsgBox "Cannot modify configuration", 64, "Sample Program" End If
|