Returns an enumerator that can be used to iterate through the collection.
public IEnumerator GetEnumerator();
The return value is an IEnumerator that represents the collection.
The following code removes all Text
TXTextControl.TextFieldCollection.TextFieldEnumerator tfEnum = textControl1.TextFields.GetEnumerator();
int tfCounter = textControl1.TextFields.Count;
//set enum to first field
tfEnum.MoveNext();
for (int i = 0; i < tfCounter; i++)
{
//get first field
TXTextControl.TextField currField = (TXTextControl.TextField)tfEnum.Current;
//set enum to the next field
tfEnum.MoveNext();
Console.WriteLine("start: " + currField.Start);
//remove the current field
textControl1.TextFields.Remove(currField);
}