System.Classes.TCollection.Added

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure Added(var Item: TCollectionItem); virtual; deprecated;

C++

virtual void __fastcall Added _DEPRECATED_ATTRIBUTE0 (TCollectionItem* &Item);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.Classes.pas
System.Classes.hpp
System.Classes TCollection

Description

Warning: Added is deprecated.

Responds when items are added to the collection.

Applications cannot call the protected Added method. It is called automatically immediately after items are added to the collection.

Item is the item that was just added to the collection.

Added is a deprecated method. Descendent classes should override the Notify method instead when responding to changes in the list of items.

See Also