Relates a user-defined name to a text field. This can be any kind of text. This name can be used to uniquely identify a text field.
public string Name { get; set; }
The following example uses the Name property to return the user-defined name i.e. = "product".
TXTextControl.TextField field = new TXTextControl.TextField("Product");
field.Name = "product";
textControl1.TextFields.Add(field);
foreach (TXTextControl.TextField curfield in textControl1.TextFields)
{
if (curfield.Name == "product")
curfield.Text = "TX Text Control";
}