Hello,
How can i do to add a line in a title with delphi?
For example :
This is the first line of my title
this is the second line of my title
I have tried by using #13#10 but it doesn't work
Thanks
Regards
Title Add line
Re: Title Add line
Hi Calou,
Both the following two methods seem to work fine here:
Both the following two methods seem to work fine here:
Code: Select all
Chart1.Title.Text.Text := 'my first line' + #13#10 + 'my second line';
Code: Select all
Chart1.Title.Text.Clear;
Chart1.Title.Text.Add('my first line');
Chart1.Title.Text.Add('my second line');
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Title Add line
Thanks
I was using the property caption. With text it works
Regards
I was using the property caption. With text it works
Regards