Returns an enumerator that can be used to iterate through the collection.

GetEnumerator()

public IEnumerator GetEnumerator();

Return Value

The return value is an IEnumerator that represents the collection.

Examples

The following code removes all TextFields using an enumerator.

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