DelphiVCL.CustomForm or TCustomForm is the base class from which to derive a window such as a form or dialog.
Derive from TCustomForm to create a custom window. The TCustomForm descendant can contain other objects, such as TButton, TCheckBox, and TComboBox objects.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.CustomForm using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.CustomForm) |
See the responses in our Windows command prompt:
You can also read short informations about the DelphiVCL.CustomForm using the print() command:
1 2 |
print(DelphiVCL.CustomForm) print(DelphiVCL.CustomForm.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.