DelphiDelphiVCLPythonPython GUIWindows

What Is The FreeNotification Method In DelphiVCL?

DelphiVCLApplicationEndFunctionInvoke blog banner

In this post, you’ll learn how to 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.

Learning more about FreeNotification Method will allow you to easily build programs and test the code with a Python Code Checker.

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:

See the responses in our Windows command prompt:

What Is The FreeNotification Method in DelphiVCLApplication screen 1

You can also read short information about the DelphiVCL.Application.FreeNotification using the print() command:

See the responses in our Windows command prompt:

What Is The FreeNotification Method in DelphiVCLApplication 2

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Related posts
AndroidCodeDelphiLearn PythonProjectsPythonPython GUI

How to Create a BMI App With Delphi Ecosystem And Python

AndroidCodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How to Create a Stopwatch/Timer Android App With Delphi For Python?

AndroidCodeDelphiDelphiFMXLearn PythonProjectsPythonPython GUI

How to Create a Unit Converter Android App Using Python GUI

AndroidDelphiDelphiFMXLearn PythonPythonPython GUI

How To Create A Python Quiz Application With DelphiFMX?

Leave a Reply

Your email address will not be published. Required fields are marked *