Returns or sets the text which is contained within a text field. This property is not supported for the DocumentTarget class.

Syntax

public string Text { get; set; }

Examples

The following example uses Text property to return the text contained within a text field i.e. = "TX Text Control".

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";
}