System.Generics.Collections.TDictionary.ValueNotify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure ValueNotify(const Value: TValue; Action: TCollectionNotification); virtual;

C++

virtual void __fastcall ValueNotify(const TValue Value, TCollectionNotification Action);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Generics.Collections.pas
System.Generics.Collections.hpp
System.Generics.Collections TDictionary

Description

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.



See Also