DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.RadioButton or TRadioButton

DelphiVCL.RadioButton or TRadioButton is a wrapper for a system radio button. Use TRadioButton to add a radio button to a form. Radio buttons present a set of mutually exclusive options to the user- that is, only one radio button in a set can be selected at a time. When the user selects a radio button, the previously selected radio button becomes unselected. Radio buttons are frequently…
Read more
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 DelphiVCL4Python 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