DelphiDelphiVCLPythonPython GUIWindows

Python Windows App: Draw A Rectangle With delphivcl.Shape

DelphiVCL.Shape represents a geometric shape that can be drawn on a form. Add a Shape object to a form to draw a simple geometric shape on the form. TShape introduces properties to describe the pen used to outline the shape and the brush used to fill it. If the shape is only part of the image of custom control, use the methods of the control’s canvas instead.Browse all the properties…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.Control

DelphiVCL.Control is the base class for all components that are visible at run time. DelphiVCL.Control are visual components, meaning the user can see them and possibly interact with them at run time. All controls have properties, methods, and events that describe aspects of their appearance, such as the position of the control, the cursor or hint associated with the control, methods to…
Read more
DelphiDelphiVCLPythonPython GUIWindows

ActionList in DelphiVCL4Python

ActionList or TActionList maintains a list of actions that your application can take in response to something a user does, such as components and controls (e.g. menu items and buttons). Use Action lists to centralize the response to user commands (actions). Action list components maintain a list of actions that are available to the client controls in an application. This lets you share…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Discover Available delphivcl.Form Methods, Properties, and Events!

The documentation for Delphi’s VCL is available on Embarcadero’s DocWiki. You will notice that on DocWiki, all the VCL components are prefixed with a T. This is a convention of the Delphi language, but the DelphiVCL4Python module removes the T prefix for a more Python-like experience (see and compare it with the outputs of this post). Here are the lists of all the methods, events, and…
Read more