InputPosition Class | ||
An instance of the InputPosition class represents the current text input position of a TXTextControl document. | ||
| Syntax: | [C#]
public class InputPosition
[Visual Basic]
Public Class InputPosition
| |
| Introduced: | 10.1 | |
Constructors | ||
| Constructor | Description | |
| InputPosition | Initializes a new instance of the InputPosition class. | |
Properties | ||
| Property | Description | |
| Column | Gets the column number of the current text input position. | |
| Line | Gets the line number of the current text input position. | |
| Location | Gets the geometric location of the current text input position. | |
| Page | Gets the page number of the current text input position. | |
| PageInSection | Gets the page number in the section containing the current text input position. | |
| Section | Gets the section number of the current text input position. | |
| TextPosition | Gets the text position of the current text input position. | |
| Example: | The following example shows how to add a TextField to the document and how to set the input position right after the field.[C#]
textControl1.Selection.Text = "Name: ";
TXTextControl.TextField field = new TXTextControl.TextField("%name%");
field.DoubledInputPosition = true;
field.ShowActivated = true;
textControl1.TextFields.Add(field);
textControl1.InputPosition = new TXTextControl.InputPosition(
field.Start + field.Length - 1,
TXTextControl.TextFieldPosition.OutsideTextField);
[Visual Basic]
TextControl1.Selection.Text = "Name: "
Dim field As TXTextControl.TextField = New TXTextControl.TextField("%name%")
field.DoubledInputPosition = True
field.ShowActivated = True
TextControl1.TextFields.Add(field)
TextControl1.InputPosition = New TXTextControl.InputPosition( _
field.Start + field.Length - 1, _
TXTextControl.TextFieldPosition.OutsideTextField)
| |
| See also: | Text Selections and Character Input, Graphical Overview. | |