Reputation: 337
UWP Windows 10. C#
What the easiest way to print RTF Document from RichEditBox
?
I found the solution from MSDN, but I don't completely understand this. In this example prints element (like RichEditBox
screenshot). I need just to print RichEditBox.Document
text...
Upvotes: 0
Views: 583
Reputation: 16652
If I understand your question correctly, what you need is save a Rich Text Format (.rtf) file in a RichEditBox.
To do this, you can refer to the official RichEditBox document, there is sample in this document shows how to edit, load, and save a Rich Text Format (.rtf) file in a RichEditBox.
Upvotes: 1