1

I have an app which contains a RichEditBox and image element and some textblocks. I want to print those data in appropriate format. I have already seen print sample of MSDN, but I am not getting a way to print RichEditBox content as it is in RTF format, So how can I paginate that and print that ? I will feel glad if you help me on this issue.

4

1 回答 1

0

这是您的问题的解决方案:

        string str = null;
        rtBox.Document.GetText(Windows.UI.Text.TextGetOptions.NoHidden, out str);
于 2012-12-24T11:39:45.553 回答