DelphiDelphiVCLPythonPython GUIWindows

What is DelphiVCL.Application.DesignInfo?

In this post, we’ll use the DesignInfo property or DelphiVCL.Application.DesignInfo contains information used by the Form designer in Python Program Maker. DesignInfo is used internally. Do not use this property in applications. Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Application.DesignInfo using dir() command: import…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Specify the Alignment of a Control using Align or TAlign

Align or TAlign is used to specify the alignment of control within its parent. TAlign specifies how control is placed relative to its parent. It can have one of the following values: Value Meaning alNone The control remains where it was placed. This is the default value. alTop The control moves to the top of its parent and resizes to fill the width of its parent.
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.DestroyComponents

The DestroyComponents method or DelphiVCL.Application.DestroyComponents is used to destroy all owned components. DestroyComponents iterates through the components owned by the component, removing each from the list of owned components and destroying it. It is not necessary to call DestroyComponents directly. DestroyComponents is automatically called when the component is…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Understanding DelphiVCL.Application.ControlDestroyed

The ControlDestroyed method or DelphiVCL.Application.ControlDestroyed is used to notify the application when a control is destroyed. ControlDestroyed is for internal use and is called automatically by TControl. Do not call it directly. ControlDestroyed notifies the application that the control passed as the Control parameter has been destroyed, so that the properties which refer to…
Read more