DelphiDelphiVCLPythonPython GUIWindows

Learn about DelphiVCL.RadioGroup

DelphiVCL.RadioGroup represents a group of radio buttons that function together. A RadioGroup object is a special group box that contains only radio buttons. Radio buttons that are placed directly in the same control component are said to be “grouped.” When the user checks a radio button, all other radio buttons in its group become unchecked. Hence, two radio buttons on a form can…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How To Set The Work Area's Sphere Of Influence Using Rect

Rect indicates the portion of the list view’s client area covered by the work area. Set Rect to specify the sphere of influence of a work area. Rect is the bounding rectangle of a portion of the list view’s client area. If Rect specifies a region larger than the list view’s client area,  then the list view introduces scroll bars to support the logical size specified by…
Read more
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

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

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