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
435
ultraformattedtextboxeditor to richtextbox .net
posted

Hello

how can i take something from a ultraformattedtextboxeditor to a richtextbox.NET

 Thanks

  • 37774
    posted

    Unfortunately, there is no easy way to do this.  The UltraFormattedTextEditor uses its own XML format for the text (much of which is similar to HTML/CSS, though certainly is not comprehensive); the RichTextBox uses a completely different format that is not compatible with the XML format.  I am unaware of any means of parsing the XML into the RTB format, so you would likely have to parse it yourself.

    -Matt