Sometimes your application needs a user interface with professional looks, but what is the best way to make one for Python applications? TryDelphiVCLfor Python!
DelphiVCLis a Python module giving Python GUI apps on Windows access to Delphi’s VCL for robust and high-performancenativeWindows visual widgets. It uses the Python4Delphi library as a bridge…
Learn about delphivcl.Collection
April 6, 2021
DelphiVCL.Collection or Collection is a container for CollectionItem objects.
Each Collection holds a group of CollectionItem descendants. The Collection maintains an index of the collection items in its Items array. The Count property contains the number of items in…
DelphiVCL.BoundLabel is the type of a labeled Edit control’s label.
BoundLabel implements the label of a labeled Edit control. Unlike other label controls such as Label, BoundLabel “belongs” to the labeled Edit control (it is a subcomponent of the…
Learn About delphivcl.Bevel
April 4, 2021
DelphiVCL.Bevel is used to determine the style of the panel’s border. These are the possible values of DelphiVCL.Bevel:
Value
Meaning
pbNone
The panel has no bevel and appears flat.
pbLowered
The panel appears recessed.
pbRaised
The panel appears raised.
Let’s browse all the properties, methods, and built-in properties of the DelphiVCL.Bevel…
Learn about delphivcl.BasicAction
April 4, 2021
DelphiVCL.BasicAction is the ancestor class for all action objects.
BasicAction introduces the fundamental behavior for an action. Descendants of BasicAction add functionality for containment in an action list, for being categorized, and for specializing their…
Learn about delphivcl.Application.MessageBox
April 4, 2021
DelphiVCL.Application.MessageBox is used to display a specified message to the user.
Use MessageBox to display a generic dialog box containing a message and one or more buttons. The Caption parameter specifies the caption of the dialog box and is…
How To Use The CanSelect Parameter
April 3, 2021
CanSelect parameter is included inside the OnSelectCell event handler, while OnSelectCell occurs before a cell in the grid is selected.
Write an OnSelectCell event handler to specify whether any particular cell in the grid can be selected. The Col and Row parameters indicate the column and row indexes of the cell that is about to be selected.
Set the CanSelect parameter to False to…
Lists of All Available MsgDlgButtons
April 3, 2021
MsgDlgButtons defines a set of values used by MessageDlg and MessageDlgPos.
The MsgDlgButtons type defines the set of values a button in a message box can have. The TMsgDlgButtons type is used by the MessageDlg and MessageDlgPos functions.
The following table…
Lists of All Available ModalResult Constants and Values
April 3, 2021
ModalResult represents the return value from a modal dialog.
ModalResult represents the value returned by a modal dialog. An application can use any integer value as a modal result value.
Although ModalResult can take any integer value, the following constants…
Lists of All Available BitBtnKind
April 3, 2021
BitBtnKind is used to identify the appearance and use of a DelphiVCL.BitBtn control.
BitBtnKind specifies how a TBitBtn control is rendered and how it behaves when clicked. The following table lists all the possible values:
Value
Meaning
bkCustom
The button uses the Glyph property to determine the image that appears. There is no associated ModalResult value. Instead…