Hello Team,
I am trying to display multiline text on a UltraActivityIndicator as below.
Text1
SomeText
SomeMoreText
I have been trying to find if this control has a Multiline property but could not find any. Hence I tried the below code.
StringBuilder sb= new StringBuilder();
sb.Append("Text1"); sb.Append(Environment.NewLine); sb.Append("SomeText"); sb.Append(Environment.NewLine); sb.Append("SomeMoreText");
ultraActivityIndicator1.Text=sb.ToString();
Seems the Environment.NewLine is not being accepted and the control displays only "Text1" ignoring the new line and next two strings.
Please let me know if there is any work around for Multiline.
Hello Baba,
Thank you for posting.i created a sample using the code snippet you provided and able to reproduce the issue, i am not able to set
the multiline text on the ultraActivityIndicator.
I am going to discuss this matter with the development team and update you when i hear back from them, checking if there is any other way to achieve it.
Meanwhile, if you have any further question or concern please let me know.
Thank you Divya. I will wait for your update.