DelphiVCL.Header or THeader is a sectioned visual control that displays text and allows each section to be resized with the mouse.
THeader is provided for backward compatibility. New applications should use THeaderControl instead.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Header using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.Header) |
See the responses in our Windows command prompt:
You can also read short informations about the DelphiVCL.Header using the print() command:
1 2 |
print(DelphiVCL.Header) print(DelphiVCL.Header.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.