System.Generics.Collections.TDictionary.TValueEnumerator

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TValueEnumerator = class(TEnumerator<TValue>)

C++

class PASCALIMPLEMENTATION TValueEnumerator : public TEnumerator__1<TValue>

Properties

Type Visibility Source Unit Parent
class public
System.Generics.Collections.pas
System.Generics.Collections.hpp
System.Generics.Collections TDictionary

Description

TDictionary.TValueEnumerator is the enumerator class for the values in the dictionary.

TDictionary.TValueEnumerator is the class that implements enumerating functionality to the collection of values in the dictionary.

MoveNext focuses on the next value in the collection. Also, Current stores the value that is currently focused.

See Also