DelphiDelphiVCLPythonPython GUIWindows

Using delphivcl.TabSheet to Create a Tabbed Page

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…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.Monitor or TMonitor

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 Primary property distinguishes the primary property from other monitors on the system. When writing multi-monitor…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About delphivcl.Metafile

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…
Read more