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…
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…
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 panel.
You can also use panels to group controls together, similar to the way you can use a group box, but with a beveled…
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()…
Learn About delphivcl.Object or TObject
April 28, 2021
DelphiVCL.Object or TObject is the ultimate ancestor of all objects and components.
DelphiVCL.Object encapsulates fundamental behavior common to objects by introducing methods that:
Create, maintain, and destroy instances of the object by allocating…
Learn About delphivcl.Notebook or TNotebook
April 28, 2021
DelphiVCL.Notebook or TNotebook displays multiple pages, each with its own set of controls.
Notebook components are frequently used with tab set controls (TTabSet) to let the user select pages in the notebook by clicking a tab. TNotebook is provided for backward compatibility. New applications should use TPageControl instead.
Let’s browse all the properties, methods, and built-in…
Learn About delphivcl.Monitor or TMonitor
April 28, 2021
DelphiVCL.Monitor or TMonitor represents a monitor on which an application runs.
DelphiVCL.Monitor represents a monitor that displays the user interface of an application. It introduces properties to describe the dimensions of a single monitor. In addition, the…
Create a Specific Component using delphivcl.CreateComponent
April 27, 2021
delphivcl.CreateComponent is a function to create a specified component.
We call CreateComponent to create an instance of ComponentClass at the position specified by the Left and Top parameters with the size specified by the Width and Height parameters. The new component…
Learn About delphivcl.Metafile
April 25, 2021
DelphiVCL.Metafile or TMetafile is an encapsulation of the Win32 Enhanced metafile.
DelphiVCL.Metafile contains a metafile graphic (EMF file format).
Properties of TMetafile indicate the size and characteristics of the metafile.
To draw a metafile on a canvas, call the Draw or StretchDraw methods of a TCanvas object, passing a TMetafile as a parameter. The Enhanced property…