Rect indicates the portion of the list view’s client area covered by the work area.
Set Rect to specify the sphere of influence of a work area. Rect is the bounding rectangle of a portion of the list view’s client area. If Rect specifies a region larger than the list view’s client area, then the list view introduces scroll bars to support the logical size specified by…
Learn About delphivcl.ScrollBar or TScrollBar
May 5, 2021
DelphiVCL.ScrollBar or TScrollBar is a Windows scroll bar, which is used to scroll the contents of a window, form, or control.
We can use TScrollBar to add a free-standing scroll bar to a form. Many controls have properties that add scroll bars which are an integral…
Create a CheckBox using delphivcl.CheckBox
May 4, 2021
delphivcl.CheckBox represents a check box that can be on (checked) or off (unchecked).
A CheckBox component presents an option for the user. The user can check the box to select the option, or uncheck it to deselect the option.
The Caption property can be used to…
DelphiVCL.RadioButton or TRadioButton is a wrapper for a system radio button.
Use TRadioButton to add a radio button to a form. Radio buttons present a set of mutually exclusive options to the user- that is, only one radio button in a set can be selected at a time. When the user selects a radio button, the previously selected radio button becomes unselected. Radio buttons are frequently…
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…
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 point, respectively.
The type of X and Y is FixedInt.
Let’s browse all the properties, methods, and built-in…
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…
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__, __package__,__spec__, __class__, __contains__, __delattr__, __dir__, __eq__, __format__, __ge__, __getattribute__, __getitem__, __gt__, __hash…