​
​
​

Gets the column number of the current text input position. The first column in front of the text is zero.

Syntax

​public int Column { get; }
​Public ReadOnly Property Column() As Integer

Examples

This example explains an easy use of the 'TXTextControl.InputPosition.Column' property. Here, the 'Column' number is stored in a variable of the type 'int'.

​int colNo = textControl1.InputPosition.Column;
​Dim colNo As Integer = TextControl1.InputPosition.Column
​

Limitations

Read only.

​