[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Defines an edit control with a label bound to the control.
Source position: extctrls.pp line 1010
type TCustomLabeledEdit = class(TCustomEdit) |
||
protected |
||
class procedure WSRegisterClass; override; |
|
Registers this component class with the current WidgetSet. |
procedure SetParent(); override; |
|
Sets the value for the Parent property. |
procedure SetName(); override; |
|
Sets the value for the Name property and the Caption in the label. |
procedure Loaded; override; |
|
Performs actions needed when the component has finished loading in the LCL streaming mechanism. |
procedure DoPositionLabel; virtual; |
|
DoPositionLabel - perform the code for positioning the label. |
procedure Notification(); override; |
|
Handles a notification when a component is added to or removed from the control. |
procedure CMBiDiModeChanged(); message; |
|
Handles the CM_BIDIMODECHANGED control message for the control. |
procedure CMVisibleChanged(); message; |
|
Handles Focus changes, and forces UpdateControlState. |
procedure CMEnabledChanged(); message; |
|
Handler signalled when the Enabled property has been changed. |
procedure CreateInternalLabel; virtual; |
|
CreateInternalLabel - method for internally creating label. |
public |
||
constructor Create(); override; |
|
Constructor for the class instance. |
property EditLabel: TBoundLabel; [r] |
|
EditLabel - the label attached to the edit box. |
property LabelPosition: TLabelPosition; [rw] |
|
Edge on the edge control where the bound label is aligned. |
property LabelSpacing: Integer; [rw] |
|
Number of pixels between the control and its bound label. |
end; |
|
Defines an edit control with a label bound to the control. |
|
| | ||
|
The base class for controls presenting editable text. |
|
| | ||
|
Implements a windowed control which can contain other child controls. |
|
| | ||
|
The base class for visible controls. |
|
| | ||
|
The base class for LCL components which have an associated widget. |
|
| | ||
| | ||
| | ||
TCustomLabeledEdit is a TCustomEdit descendant which defines an edit control with a label bound to the control. TCustomLabeledEdit is the base type for TLabeledEdit.
Note particularly the EditLabel property (see TBoundLabel), which contains the label attached to the Edit control.
Use LabelPosition to specify the location where EditLabel is displayed relative to the edit box in the control. Use LabelSpacing to set the spacing between EditLabel and the edit control.
About TCustomLabeledEdit / TLabeledEdit
TCustomLabeledEdit and TLabeledEdit are based on the similarly named controls from the Delphi VCL. While they offer code compatibility with the VCL class, they have some drawbacks when used in the LCL. For instance:
Despite the convenience of TCustomLabeledEdit / TLabeledEdit, most will elect to use separate label and edit controls to avoid the shortcomings in the align and anchoring mechanisms for the composite control.
|
EditLabel - the label attached to the edit box. |
|
|
Edge on the edge control where the bound label is aligned. |
|
|
Number of pixels between the control and its bound label. |
|
|
Implements a label bound to another control. |
|
|
Specifies the position for a label relative to an associated control. |
|
|
The base class for controls presenting editable text. |
|
|
Control used to show static text optionally using multiple lines. |
Lazarus Component Library (LCL) | Version 4.99-39cef04c46 (2025-02-10) | Home |