DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Point

DelphiVCL.Point or TPoint is used to define a pixel location on-screen. The TPoint type defines the integer type X and Y coordinates of a pixel location on-screen, with the origin in the upper-left corner. X and Y specify the horizontal and vertical coordinates of a point, respectively. The type of X and Y is FixedInt. Let’s browse all the properties, methods, and built-in…
Read more
DelphiDelphiVCLPythonPython GUIWindows

More On Built-In Function Objects Inside DelphiVCL Library (Part 3)

When running dir() to DelphiVCL library or any DelphiVCL methods and properties in all previous sections, you might find many of Python’s built-in objects and properties. Previously, we already discussed about  __doc__, __file__, __loader__, __name__, __package__,__spec__, __class__, __contains__, __delattr__, __dir__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __gt__, __hash…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Create a Main Panel using delphivcl.Panel or TPanel

delphivcl.Panel or TPanel implements a generic panel control. We can use TPanel to put an empty panel on a form. Panels have properties for providing a beveled border around the control, as well as methods to help manage the placement of child controls embedded in the panel. You can also use panels to group controls together, similar to the way you can use a group box, but with a beveled…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.Notebook or TNotebook

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…
Read more