|
Summary
Save the terminal settings.
Syntax
Boolean SaveTermSetting ()
Description
To save the current state of the VT220 terminal emulation window, such as font, color, terminal settings and keyboard mappings, call the SaveTermSetting method. This method saves the current
state to the current configuration name being used.
The SaveTermSetting method takes no parameters and returns a boolean. If the current state can be successfully saved, 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_SAVE_SETTINGS. This method can only be called after the VT220 emulation window has been created and initialized.
Example
Result = VT220Client.SaveTermSetting () If Result = False Then MsgBox "Cannot save terminal setting", 64, "Sample Program" End If
|