Getting Started with TMS FNC Label Edit
Prerequisites
- Delphi with TMS FNC UI Pack installed.
- A new or existing VCL, FMX, or WEB application.
Steps
- Drop a
TTMSFNCLabelEdit onto a form.
- Set
Text to the displayed label value.
- Keep
Editable enabled when users may edit the value in place.
- Set
EditMode to True when code should start editing.
- Handle
OnAccept, OnCancel, OnEditStart, and OnEditEnd when the form needs to react to the edit lifecycle.

procedure TForm1.ConfigureLabelEdit;
begin
TMSFNCLabelEdit1.Text := 'Project name';
TMSFNCLabelEdit1.Editable := True;
TMSFNCLabelEdit1.HorizontalTextAlign := gtaLeading;
end;
procedure TForm1.StartLabelEdit;
begin
TMSFNCLabelEdit1.EditMode := True;
end;
Next steps