![]() Hierarchy Properties |
![]() ![]() ![]() |
acEdit, acNumberEdit, acIPEdit, acLabeledComboBox, acMRUComboBox and acImagesComboBox components.
|
acAttachedLabel
|
type
|
TacAttachedLabelPosition = (lpAbove, lpBelow, lpLeft, lpRight);
|
TacAttachedLabelSpacingKind = (skNearPoint, skFarPoint);
|
TacAttachedLabel = class
|
property Caption: TCaption;
|
property Color: TColor default clBtnFace;
|
property Cursor: TCursor default crDefault;
|
property Enabled: Boolean;
|
property FocusOnClick: Boolean default True;
|
property Font: TFont;
|
property Hint: String;
|
property ParentColor: Boolean default True;
|
property ParentFont: Boolean default True;
|
property ParentShowHint: Boolean default True;
|
property PopupMenu: TPopupMenu;
|
property Position: TacAttachedLabelPosition default lpLeft;
|
property ShowAccelChar: Boolean default True;
|
property ShowHint: Boolean default False;
|
property Spacing: Integer default 4;
|
property SpacingKind: TacAttachedLabelSpacingKind default skNearPoint;
|
property Transparent: Boolean default False;
|
property Visible: Boolean;
|
property WordWrap: Boolean default False;
|
end;
|
The AttachedLabel structure lets you to operate with the label attached to the some side of control (at the left or right side, above or below). You can specify the behaviour of label, its position near the control, and accelerator key for the control (character in caption, after ampersand (&)).
|
|
![]() |
![]() |
OnLabelClick and OnLabelDblClick events.
|