DelphiVCL.Object or TObject is the ultimate ancestor of all objects and components.
DelphiVCL.Object encapsulates fundamental behavior common to objects by introducing methods that:
- Create, maintain, and destroy instances of the object by allocating, initializing, and freeing required memory.
- Respond when object instances are created or destroyed.
- Return class-type and instance information on an object and runtime type information (RTTI) about its published properties.
- Support message handling.
- Support interfaces implemented by the object.
Use TObject as an immediate base class when declaring simple objects that do not need to persist (are not saved and reloaded) and that do not need to be assigned to other objects.
Much of the capability of objects is established by methods that TObject introduces. Many of these methods are used internally by IDEs and are not intended for users to call directly. Others are overridden in descendant objects that have more complex behavior.
Although TObject is the based object of a component framework, not all objects are components. All component classes descend from TComponent.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Object using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.Object) |
See the responses in our Windows command prompt:
You can also read short informations about the DelphiVCL.Object using the print() command:
1 2 |
print(DelphiVCL.Object) print(DelphiVCL.Object.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.