DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.LabeledEdit

DelphiVCL.LabeledEdit or TLabeledEdit is an edit control that has an associated label. Use TLabeledEdit to add an edit control with a label to a form. TLabeledEdit works with an associated label control, which is the value of its EditLabel property. The position of that label relative to the edit control is determined by the LabelPosition and LabelSpacing properties. Use the Text…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the DelphiVCL.Icon

DelphiVCL.Icon or TIcon is an encapsulation of a Windows icon. Use TIcon to represent one of the icons in an image list. Assign an icon to objects that have an Icon property, such as TForm or TPicture. Icon objects represent the value loaded from a Windows icon file (.ICO file). Draw an icon on a canvas, using the Draw method of the TCanvas object. Icons do not stretch, so do not use…
Read more
DelphiDelphiVCLPythonPython GUIWindows

How to use the DelphiVCL.CustomMemo

DelphiVCL.CustomMemo or TCustomMemo is the base type for memo components, which are multiline edit boxes, including TMemo and TDBMemo. TCustomMemo introduces new properties and methods to expand the capabilities of TCustomEdit for handling multi-line edit boxes. Do not create instances of TCustomMemo. Use TCustomMemo as a base class when declaring control objects that implement a…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Learn About DelphiVCL.CustomEdit

DelphiVCL.CustomEdit is the base class from which all edit-box and memo controls are derived. DelphiVCL.CustomEdit or TCustomEdit encapsulates the behavior common to all components for editing text by introducing methods and properties that provide: Basic text editing functions such as selecting the text, modifying selected text, and case conversions. Ability to respond to…
Read more