vote up 3 vote down star
2

I want to create a string that spans multiple lines to assign to a Label Caption property. How is this done in Delphi?

flag

65% accept rate

8 Answers

vote up 20 vote down check

In the System.pas (which automatically gets used) the following is defined:

const
  sLineBreak = {$IFDEF LINUX} AnsiChar(#10) {$ENDIF} 
               {$IFDEF MSWINDOWS} AnsiString(#13#10) {$ENDIF};

This is from Delphi 2009 (notice the use of AnsiChar and AnsiString). (Line wrap added by me.)

So if you want to make your TLabel wrap, make sure AutoSize is set to true, and then use the following code:

label1.Caption := 'Line one'+sLineBreak+'Line two';

Works in all versions of Delphi since sLineBreak was introduced, which I believe was Delphi 6.

link|flag
Thanks for that! I've always used #13#10. – Osama ALASSIRY Oct 31 '08 at 21:29
Wow, that's a lot better than I had hoped for! – Brendan Nov 2 '08 at 13:54
vote up 3 vote down

my_string := 'Hello,' + #13#10 + 'world!';

#13#10 is the CR/LF characters in decimal

link|flag
And it still works for 2009 (Unicode). – Gamecat Oct 31 '08 at 18:49
vote up 9 vote down

here's an even shorter approach:

my_string := 'Hello,'#13#10' world!';

link|flag
vote up 4 vote down

On the side, a trick that can be useful:
If you hold your multiple strings in a TStrings, you just have to use the Text property of the TStrings like in the following example.

Label1.Caption := Memo1.Lines.Text;

And you'll get your multi-line label...

link|flag
vote up 3 vote down

Or you can use the ^M+^J shortcut also. All a matter of preference. the "CTRL-CHAR" codes are translated by the compiler.

MyString := 'Hello,' + ^M + ^J + 'world!';

You can take the + away between the ^M and ^J, but then you will get a warning by the compiler (but it will still compile fine).

link|flag
vote up 0 vote down

I prefer to define "const LFCR = #13#10;" because I end up using that all over the place in my code. Then it's simple to writing it like this:

MyString := 'Hello,' + LFCR + 'world!';

link|flag
Ahm, CR = #13 and LF = #10 so that should be const CRLF. – gabr Oct 31 '08 at 21:10
shrugs Something like that. :P – Mason Wheeler Oct 31 '08 at 22:39
sLineBreak is a predefined constant. – Jim McKeeth Oct 31 '08 at 23:35
1  
Yes it is. But its value changes across different platforms, so it's not suitable if you're writing cross-platform code that involves saving and loading strings. (If you're not, feel free to use it.) – Mason Wheeler Nov 2 '08 at 17:50
vote up 0 vote down

Hi

I dont have a copy of Delphi to hand, but I'm fairly certain if you set the wordwrap property to true and the autosize property to false it should wrap any text you put it at the size you make the label. If you want to line break in a certain place then it might work if you set the above settings and paste froma text editor.

Hope this helps.

link|flag
vote up 0 vote down

ShowMessage('Hello'+Chr(10)+'World');

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.