[]
Implements IEnumerator for all of the various types of enumerators (All, Days, RecurringDates, and SpecificDates).
protected class Elements.ElementEnumerator : IEnumerator
Protected Class Elements.ElementEnumerator
Implements IEnumerator
| Name | Description |
|---|---|
| ElementEnumerator(Elements) | Creates an enumerator for the elements in the specified array. |
| ElementEnumerator(Elements, bool, int, int) | Creates an enumerator for the elements in the specified array with the specified start and end. |
| Name | Description |
|---|---|
| elements | array being enumerated (clone) |
| index | current index |
| max | maximum index to enumerate (external) |
| min | minimum index to enumerate (external) |
| returnIndex | flag indicating whether to return index |
| Name | Description |
|---|---|
| Current | Gets the current element in the enumerator. |
| Name | Description |
|---|---|
| MoveNext() | Advances the enumerator to the next element in the Elements array. |
| Reset() | Resets the enumerator to its initial position, which is before the first element in the Elements array. |