CursorRow

A property to get or set the cursor's row position. This property is 0-Base for VT/6530 sessions and 1-Base for all other session types.

Parameters
RowVal
When setting the cursor row, used to specify the new position.
Returns
The cursor's row position when using the get property.
Example (get)
Set bzhao = CreateObject("BZWhll.WhllObj")
bzhao.Connect
row = bzhao.CursorRow
MsgBox "The cursor is on row " & row
Example (set)
Set bzhao = CreateObject("BZWhll.WhllObj")
bzhao.Connect
bzhao.CursorRow = 4