DelphiDelphiVCLPythonPython GUIWindows

How to use the Title Property

DelphiVCL.Application.Title Property contains the text that appears below the icon representing the application when it is minimized. We use the DelphiVCL.Application.Title property to modify the name of the text string appearing below the icon of the application. The default value is taken from the DLL or EXE file name at run time. Set the Title at run time, or enter the value of…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Application.ComObject

The ComObject property or DelphiVCL.Application.ComObject is used to specify the interface reference implemented by the component. Use ComObject to assign a COM interface implemented by a component to an interface reference. This property is used by components that support COM interfaces. If the component is not a wrapper for a COM component, trying to read ComObject causes…
Read more
DelphiDelphiVCLPythonPython GUIWindows

What is the ClassName Method in DelphiVCL.Application?

The ClassName method or DelphiVCL.Application.ClassName is used to return a string indicating the type of the object instance (as opposed to the type of the variable passed as an argument). Use ClassName to obtain the class name from an object instance or class reference. This is useful for differentiating object instances that are assigned to a variable that has the type of an ancestor…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the Caption Property

We use Caption to specify a text string that identifies the control to the user. To underline a character in a Caption that labels a component, include an ampersand (&) before the character. This type of character is called an accelerator character. The user can then select the component by pressing ALT while typing the underlined character. To display an ampersand character in the…
Read more