Hello.
In our desktop application users can edit notes in RTF format (no problem with different RTF controls available for desktop). On the mobile application we show this notes and want to allow user to edit them. Now we convert RTF to plain text. But if the user edit something, we store plain text back, so user get all formatings lost.
For our case it would be enoght, if the control could render RTF (with tables and so on, no images), but allow only a small featureset for edit (bold, italic, underline, fontsize, color and lists).
As a workaround, we use at this time one WebView with an HTML-Editor embedded. We convert RTF (with DocIO) to HTML and at the end back to RTF. It is not fine and hacky. And good HTML editors are huge (> 500kb).