SYL
SYL

Reputation: 337

Easiest way to print RichEditBox Document

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

Answers (1)

Grace Feng
Grace Feng

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

Related Questions