InsertText
Find the syntax, use, parameters, return values, and an example for the InsertText macro command in Connexion client.
| Syntax | BOOL = CS.InsertText (sText) |
|---|---|
| Use to | Insert specific text in a record at the cursor location (text can span multiple fields). |
| Parameters | For the parameter sText, enter the text string you want to insert, enclosed in quotation marks (“). |
| Return values | TRUE if the action is successful, or FALSE if not. |
| Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” If CS.ItemType = 0 Then If CS.UncontrolHeading = True Then |
| What this example does |
|
