The TppLabel component will recognize non-visible characters such as the carrage return however the it is not a dynamic height (stretching) component, so you will need to size the component so both lines of text will fit. The best option would be to use the TppMemo object with something like the following.
Comments
The TppLabel component will recognize non-visible characters such as the
carrage return however the it is not a dynamic height (stretching)
component, so you will need to size the component so both lines of text will
fit. The best option would be to use the TppMemo object with something like
the following.
ppMemo1.Lines.Text := 'hello' + #13#10 + 'goodbye';
can also be done as...
ppMemo1.Lines.Add('hello');
ppMemo1.Lines.Add('goodbye');
--
Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com