DelphiVCL.Notebook or TNotebook displays multiple pages, each with its own set of controls.
Notebook components are frequently used with tab set controls (TTabSet) to let the user select pages in the notebook by clicking a tab. TNotebook is provided for backward compatibility. New applications should use TPageControl instead.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Notebook using dir() command:
1 2 3 |
import DelphiVCL dir(DelphiVCL.Notebook) |
See the responses in our Windows command prompt:
You can also read short informations about the DelphiVCL.Notebook using the print() command:
1 2 |
print(DelphiVCL.Notebook) print(DelphiVCL.Notebook.__doc__) |
See the responses in our Windows command prompt:
Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.