If i have RichEditBox what contains some text how could i get all of that text and move it to RichTextBlock?
Example text below:
Closest what i have got looks like following
I have used Microsoft own example in this project. I would like also keep text formatting while getting text from the RichEditBox. Is this kind of thing even possible to do?


You could get Text from
RichEditBoxwithITextDocument.GetTextmethod. And the output string could contain rft format depend on whichTextGetOptionyou used.But, the rtf string could not be loaded with
RichTextBlock, it does not support RTF. it only support the formatting with xaml Block elements.Currently there is a workaround that you could convert your rft string to html and display the content with UWP
WebView. For more you could refer this case reply in msdn.