DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.StaticText

DelphiVCL.StaticText or TStaticText is a windowed control that displays text on a form. The DelphiVCL.StaticText or TStaticText component functions like TLabel, except that it descends from TWinControl and therefore has a window handle. Use TStaticText instead of TLabel when the component’s accelerator key must belong to a windowed control—for example, on an ActiveX property…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.SpinButton

DelphiVCL.SpinButton or TSpinButton allows the user to navigate through a range of values using the arrow buttons. DelphiVCL.SpinButton is a control with two TTimerSpeedButtons, each button displaying an arrow. TSpinButton allows the navigation through a range of values using the arrow buttons to customize the value held by the control. Usually, it is used to increase or decrease the value…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.SpeedButton

DelphiVCL.SpeedButton or TSpeedButton is a button that is used to execute commands or set modes. Use DelphiVCL.SpeedButton to add a button to a group of buttons in a form. TSpeedButton introduces properties that can be used to set graphical images that represent the different button states (selected, unselected, disabled, and so on). Use other properties to specify multiple images or to…
Read more
DelphiDelphiVCLPythonPython GUIWindows

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

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