FMX.Types.IFreeNotificationBehavior.RemoveFreeNotify
Delphi
procedure RemoveFreeNotify(const AObject: IFreeNotification);
C++
virtual void __fastcall RemoveFreeNotify(const _di_IFreeNotification AObject) = 0 ;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
procedure function |
public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | IFreeNotificationBehavior |
Description
Removes an object from the list of objects to be notified when this control is destroyed.
Implement this function to stop notifying an object when this control is about to be destroyed.
The AObject
parameter specifies the object to be removed. AObject
can be any object that implements the IFreeNotification interface.
To add an object to the list of objects to be notified, implement AddFreeNotify.