In this post, you’ll learn how to use the GetInterfaceTable method or DelphiVCL.Application.GetInterfaceTable to return a pointer to a structure containing all of the interfaces implemented by a given class. Learning more about the GetInterfaceTable will help you build easily Delphi Applications with Python Windows GUI Builder
Table of Contents
Examining the properties and methods of DelphiVCL.Application.GetInterfaceTable
Let’s browse all the properties and methods of the DelphiVCL.Application.GetInterfaceTable using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.Application.GetInterfaceTable) |
See the responses in our Windows command prompt:
You can also read short information about the DelphiVCL.Application.GetInterfaceTable using the print() command:
1 2 |
print(DelphiVCL.Application.GetInterfaceTable) print(DelphiVCL.Application.GetInterfaceTable.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.