InsertMode
Find the syntax, use, parameters, return values, and an example for the InsertMode macro command in Connexion client.
Syntax | BOOL = CS.InsertMode |
---|---|
Use to | Indicate or change the insert mode (insert mode on or off). |
Parameters | None |
Comments | The record window must be the current (top-most window) for this command to work. |
Return values | TRUE if the insert mode is on, or FALSE if not. |
Example | Sub Main()
Dim CS As Object CS.InsertMode = False If CS.InsertMode = True Then |
What this example does |
|