delphivcl.Edit or TEdit is a wrapper for a Windows single-line edit control.
We can use an Edit object to put a standard Windows edit control on a form. Edit controls are used to retrieve text that users type. Edit controls can also display text to the user.
When only displaying text to the user, choose an edit control to allow users to select text and copy it to the Clipboard. Choose a…
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…
Learn About delphivcl.Point
May 2, 2021
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…
Learn About delphivcl.Persistent
May 1, 2021
DelphiVCL.Persistent or TPersistent is the ancestor for all objects that have assignment and streaming capabilities. TPersistent encapsulates the behavior common to all objects that can be assigned to other objects, and that can read and write their properties to and from a form file (.xfm or .dfm file).
For this purpose, DelphiVCL.Persistent introduces methods that can be overridden…
delphivcl.Label or TLabel is a non-windowed control that displays text on a form.
Use Label to add text that the user cannot edit on a form. This text can be used to label another control and can set focus to that control when the user types an accelerator key. The…
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…
Using delphivcl.TabSheet to Create a Tabbed Page
April 30, 2021
delphivcl.TabSheet is an individual page in a PageControl object.
We use TabSheet to represent a single page in tabbed page control. Tab sheets are typically referred to as pages. PageControl maintains an indexed array of its tab sheets in its Pages property. Users can click on a tab to activate the tab sheet.
You can use the Caption property of the TabSheet control to define an accelerator…
Using delphivcl.PageControl to Create a Multiple Page
April 29, 2021
delphivcl.PageControl is a set of pages used to make a multiple page dialog box.
We can use PageControl to create a multiple page dialog or tabbed notebook. PageControl displays multiple overlapping pages that are TabSheet objects (we will discuss TabSheet in another…
Create a Main Panel using delphivcl.Panel or TPanel
April 28, 2021
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…
Learn About delphivcl.Page Or TPage
April 28, 2021
Specifies a page in a DelphiVCL.Notebook or TNotebook control.
The DelphiVCL.Page or TPage class implements a page in a TNotebook control.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Page using dir() command:
import DelphiVCL
dir(DelphiVCL.Page)
See the responses in our Windows command prompt:
You can…