CursorRow
Find the syntax, use, parameters, return values, and an example for the CursorRow macro command in Connexion client.
| Syntax | CS.CursorRow |
|---|---|
| Use to | Indicate or change the row where the cursor is located in a record. The top row is row 1. A row corresponds to a field, regardless of how many lines are in a field. |
| Parameters | None |
| Return values | An integer representing the row number where the cursor is located. |
| Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” CS.CursorRow = 2 |
| What this example does |
|
