convert RTF to HTML from ComponentOne RichTextBox?

前端 未结 1 821
礼貌的吻别
礼貌的吻别 2021-01-28 16:17

The section Read and Write Rich Text Format Documents of this online article of UWP edition of ComponentOne reads: you can use it to convert RTF

相关标签:
1条回答
  • 2021-01-28 17:05

    ComponentOne you can use it to convert RTF to HTML and vice versa.

    You could convert between HTML and RTF using the RtfFilter library. And you could also get the code sample with this link.

    rtfBox.Text = new RtfFilter().ConvertFromDocument(richTextBox.Document);
    

    0 讨论(0)
提交回复
热议问题