In this post, you’ll learn how to use the HasParent method or DelphiVCL.Application.HasParent to verify whether the component has a parent.
- Call HasParent to determine whether a specific component has a parent.
- Derived classes override this method to implement proper handling for parenting.
- Use GetParentComponent to retrieve the component reference.
Learning more about the HasParent method will help you build a Python project easily in the future with Delphi VCL Applications.
Table of Contents
What are the properties and methods of DelphiVCL.Application.HasParent?
Let’s browse all the properties and methods of the DelphiVCL.Application.HasParent using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.Application.HasParent) |
See the responses in our Windows command prompt:
You can also read short information about the DelphiVCL.Application.HasParent using the print() command:
1 2 |
print(DelphiVCL.Application.HasParent) print(DelphiVCL.Application.HasParent.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.