CursorColumn
Find the syntax, use, parameters, return values, and an example for the CursorColumn macro command in Connexion client.
Syntax | CS.CursorColumn |
---|---|
Use to | Indicate or change the column where the cursor is located in a record. |
Parameters | None |
Comments | The leftmost column is column 1 (that is, the first character of the MARC tag). CursorColumn moves the cursor exactly one data point to the right. A data point can be a character or a space. CursorColumn 1, 2, and 3 are always tag characters; 4 and 5 are always indicators, even if blank; and 6 is the start of actual data in the field. Nota:
|
Return values | An integer representing the column number where the cursor is located. |
Example | Sub Main()
Dim CS As Object If CS.IsOnline = False Then CS.Search “WC”, “#1” CS.CursorRow = 1 |
What this example does |
|