Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2715
ultraFormattedTextEditor format HTML text
posted

Hi!

I'm using a ultraFormattedTextEditor on a windows Form. If I set it's value in design mode to "<b>bold text</b> and a <a href=\"www.google.com\">link</a><br/>and a new line" what i see is html formated text, but if i set the same value dinamicaly, i only see the text with the tags inside, uninterpreted.

What can i do?

Thank you!

Parents
No Data
Reply
  • 48586
    Verified Answer
    posted

    Hello ,

     

    From the description of your scenario it seems that you are assigning your formatted text to the Text property of UltraFormattedTextEditor and you should assign your formatted text to the Value property of UltraFormattedTextEditor. If you are using C# then code will looks like:

     

    ultraFormattedTextEditor1.Value =  "<b>bold text</b> and a <a href=\"www.google.com\">link</a><br/>and a new line";

     

    Please let me know if you have any further questions.

Children
No Data