|
Summary
List all saved configurations.
Syntax
Boolean ListConfig ()
Description
Some of the actions and methods can be invoked before the VT220 terminal emulation window is initialized. A list of the names of all available configurations can be obtained by calling the
ListConfig method. The list of configuration names will be delivered to the application in one or more OnList events.
The ListConfig method takes no parameters and returns a boolean. It lists all the saved configurations. If the configuration can be successfully listed, 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_LIST_CONFIGURATION.
Example
Result = VT220Client.ListConfig () If Result = False Then MsgBox "Cannot list configuration", 64, "Sample Program" End If
|