Gets or sets an identifier for a text field. This identifier can be used to uniquely identify a text field.
public int ID { get; set; }
The following example uses the Text
TXTextControl.TextField NewField = new TXTextControl.TextField();
NewField.Text = "--------";
NewField.ID = FieldID; // ID property set to FieldID
NewField.DoubledInputPosition = true;
NewField.ShowActivated = true;
FieldID += 1;
textControl1.TextFields.Add(NewField);