API:Data.Bind.Components.TCollectionEnumerator

Delphi
TCollectionEnumerator<T: TCollectionItem> = class(System.Generics.Collections.TEnumerator<T>)
C++
template<typename T> class PASCALIMPLEMENTATION TCollectionEnumerator__1 : public System::Generics::Collections::TEnumerator__1<T>
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | Data.Bind.Components.pas Data.Bind.Components.hpp |
Data.Bind.Components | Data.Bind.Components |
Description
TEnumerator is the abstract class implemented by all enumerator classes.
Data.Bind.Components.TCollectionEnumerator inherits from System.Generics.Collections.TEnumerator. All content below this line refers to System.Generics.Collections.TEnumerator.
TEnumerator is the abstract class implemented by all enumerator classes.
The members of TEnumerator provide the basic framework for enumerating a container.
MoveNext focuses on the next element in the container, with respect to some particular order. Also, Current stores the element that is currently focused.