Please, help anyone who worked with OpenOffice Writer document in C#. How can insert an HTML formated text into the document? The following code:
((unoidl.com.sun.star.text.XTextDocument)xComponent).getText().getStart().
setString("The <b>first line </b> in the newly created text document.\n\n");
inserts exactly The <b>first line </b> in the newly created text document.
I need to insert "The first line in the newly created text document"
Any solution?