System.Generics.Collections.TObjectOrderedDictionary.ValueNotify
Delphi
procedure ValueNotify(const Value: V; Action: TCollectionNotification); override;
C++
virtual void __fastcall ValueNotify(const V Value, TCollectionNotification Action);
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
procedure function |
protected | System.Generics.Collections.pas System.Generics.Collections.hpp |
System.Generics.Collections | TObjectOrderedDictionary |
Description
Triggers an OnValueNotify event with the given parameters.
System.Generics.Collections.TObjectOrderedDictionary.ValueNotify inherits from System.Generics.Collections.TDictionary.ValueNotify. All content below this line refers to System.Generics.Collections.TDictionary.ValueNotify.
Triggers an OnValueNotify event with the given parameters.
Call ValueNotify to trigger an OnValueNotify event with the given parameters.
The meaning of the parameters is given in the following table.
| Parameter | Meaning |
|---|---|
|
Value |
The value that is added, removed or extracted. |
|
Action |
The action that the value undergoes, which is of type TCollectionNotification. |