|
Column position of the cursor.
Description
The Column property will contain the current column position of the cursor after the CurrentLocation method is called (or after the VtAction property is set to VT_CURRENT_LOCATION). If the
action is successful, the Column property will contain the current column position of the cursor; otherwise, the OnError event will occur before the next line of code is reached.
The Column property should be read only after calling the CurrentLocation method (or setting the VtAction property to VT_CURRENT_LOCATION). The application should check that no error has occurred to
ensure that the cursor position information is accurate.
There is no default value for this property. This property can be read at any time.
Example
Vt220Client.VtAction = VT_CURRENT_LOCATION If NoError Then Column = Vt220Client.Column End If
|