Site icon Python GUI

Learn about the DelphiVCL.Component as the Common Ancestor of All Component Classes

pexels panumas nikhomkhai 1148820

DelphiVCL.Component is the common ancestor of all component classes.

Component is the base class for all components. Components are persistent objects that have the following capabilities:

Note: COM features are present in all implementations of DelphiVCL.Component or TComponent, including those provided for compatibility with OS X. However, COM features are Windows only and cannot be used in multi-device (cross-platform) applications.

Component does not provide any user interface or display features. These features are provided by two classes that directly descend from Component:

Components that can be visible at run time are sometimes called visual components. Other components, which are never visible at run time, are sometimes called non-visual components. However it is more common to refer to visual components as controls and non-visual components simply as components.

Do not create instances of Component. Use Component as a base class when declaring non-visual components that can appear on the component palette and be used in the Form Designer. Properties and methods of Component provide basic behavior that descendant classes inherit as well as behavior that components can override to customize their behavior.

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

[crayon-6621bfd227acf343460275/]

See the responses in our Windows command prompt:

You can also read short informations about the DelphiVCL.Component using the print() command:

[crayon-6621bfd227add154467724/]

See the responses in our Windows command prompt:

 

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

Exit mobile version