​
​
​

Shows or hides a marker which indicates the current text input position when the TextControl is inactive and the blinking caret is not visible. If the property value is true, the marker is shown.

​ Introduced: X12.

Syntax

​public bool InactiveMarker { get; set; }
​Public Property InactiveMarker() As Boolean

Examples

This example explains an easy use of the 'TXTextControl.InputPosition.InactiveMarker' property. Here, the property is set to 'true' which means that the marker is shown.

​textControl1.InputPosition.InactiveMarker = true;
​TextControl1.InputPosition.InactiveMarker = True
​