|
-
Jul 8th, 2004, 02:08 PM
#1
Thread Starter
Addicted Member
Mulitple Lines In a label [Resolved]
How to I get multiple line in a label in C#? Thanks.
Last edited by jordan23; Jul 9th, 2004 at 06:21 AM.
-
Jul 8th, 2004, 05:46 PM
#2
Sleep mode
Like this :
PHP Code:
this.label2.Text='\n' + "1st Line" + '\n' + "2nd Line";
-
Jul 8th, 2004, 05:49 PM
#3
Sleep mode
'\n' is equivalent to Environment.NewLine which presents begining of new line.
-
Jul 8th, 2004, 08:50 PM
#4
Junior Member
You have other escape caracters if you want like \t ( a tab) its just like old C.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|