d.bernaert Posted September 3, 2020 Posted September 3, 2020 Hi, I use the property fieldlabel on all my input controls. Today I needed to a unitagfield component. Why is there not property fieldlabel? Thx, Dominique Quote
Sherzod Posted September 3, 2020 Posted September 3, 2020 47 minutes ago, d.bernaert said: Today I needed to a unitagfield component. Why is there not property fieldlabel? Hi Dominique, You can try this approach for now: procedure TMainForm.UniFormCreate(Sender: TObject); begin with TUniEdit(UniTagField1) do begin FieldLabelWidth := 30; FieldLabelAlign := laLeft; FieldLabel := 'LabelText'; end; end; 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.