Usually one would set it like this at runtime:
Label1.Caption := 'First line' + #13#10 + 'SecondLine';
but for some reason, this does not seem to work even if you turn WordWrap
on or off.
What is the solution to create a linebreak in TMS Web Core at runtime?
First note. You can use
sLineBreak
instead of#13#10
.sLineBreak
is a constant defined in theSystem
unit:If you're using TMS WEB Core v2.3.2 or newer, then linebreaks should work perfectly fine, but older versions don't have support for linebreaks. So you're obviously using an old version of TMS WEB Core.
So either update your TMS WEB Core to the latest version or follow the answer below for older versions.
If you have an older version of TMS WEB Core before v2.3.2, then you can use the following:
The
<br>
is the linebreak and that works: