Delphi What Is The FreeNotification Method In DelphiVCL?

FireWind

Свой
Регистрация
2 Дек 2005
Сообщения
1,957
Реакции
1,199
Credits
4,009
What Is The FreeNotification Method In DelphiVCL?
By Muhammad Azizul Hakim August 12, 2021

Use the FreeNotification method or DelphiVCL.Application.FreeNotification to ensure that AComponent is notified that the component is going to be destroyed.

Use FreeNotification to register AComponent as a component that should be notified when the component is about to be destroyed. It is only necessary to register components this way when they are in a different form or have a different owner. For example, if AComponent is in another form and uses the component to implement a property, it must call FreeNotification so that its Notification method is called when the component is destroyed.

For components with the same owner, the Notification method is called automatically when an application explicitly frees the component. This notification is not sent out when components are freed implicitly, because the Owner is already being freed.

How to examine the properties and methods of the DelphiVCL.Application.FreeNotification?​

Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.FreeNotification using dir() command:
Python:
import DelphiVCL

dir(DelphiVCL.Application.FreeNotification)
See the responses in our Windows command prompt:
1628775954430.png
You can also read short information about the DelphiVCL.Application.FreeNotification using the print() command:
Python:
print(DelphiVCL.Application.FreeNotification)
print(DelphiVCL.Application.FreeNotification.__doc__)
See the responses in our Windows command prompt:
1628775986004.png