CursorColumn

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

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