System.Generics.Collections.TStack.OnNotify

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnNotify: TCollectionNotifyEvent<T> read FOnNotify write FOnNotify;

C++

__property _dt_System_Generics_Collections_7 OnNotify = {read=FOnNotify, write=FOnNotify};

Properties

Type Visibility Source Unit Parent
event public
System.Generics.Collections.pas
System.Generics.Collections.hpp
System.Generics.Collections TStack

Description

Occurs when stack changes.

The OnNotify event occurs when items are added to or removed from the stack. This allows removed objects to be freed.

See Also


Code Examples