CursorColumn
A property to get or set the cursor's column position.
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