Click here to Skip to main content
15,906,335 members
Please Sign up or sign in to vote.
4.50/5 (2 votes)
See more:
Hi ,
How can we get multi line text for a radio group item in DevExpress?
Posted
Updated 30-Jan-12 0:12am
v2
Comments
Herman<T>.Instance 30-Jan-12 6:21am    
have you trie setting \r\n at the location you want to break the text?
E.F. Nijboer 30-Jan-12 6:41am    
Although I would suggest Environment.NewLine, just for platform compatibility.

C#
using System;

class Sample
{
    public static void Main()
    {
    Console.WriteLine();
    Console.WriteLine("NewLine: {0}  first line{0}  second line{0}  third line",
                          Environment.NewLine);
    }
}
 
Share this answer
 
 
Share this answer
 
Comments
Supriya Srivastav 30-Jan-12 8:03am    
Right! My +5
ambarishtv 30-Jan-12 8:08am    
Thank you :-)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900