Page 1 of 1

How to show a TIWCGJQMEdit caption in bold

PostPosted: 21 Oct 2014 09:48
by Davide
Hi,

how can I show the caption of a TIWCGJQMEdit control in bold ?
The text inside the control should remains in normal weight.

Thak you,
Davide

Re: How to show a TIWCGJQMEdit caption in bold

PostPosted: 21 Oct 2014 10:09
by Alexander Bulei
Hi Davide,

Since the TIWCGJQMEdit.Caption property accepts the html code (tags),
you can use "<b>" tag :

delphi code
TIWCGJQMEdit.Caption:= '<b>MyCaption</b>';


Best Regards.