请帮助任何在 C# 中使用 OpenOffice Writer 文档的人。如何将 HTML 格式的文本插入到文档中?以下代码:
((unoidl.com.sun.star.text.XTextDocument)xComponent).getText().getStart().
setString("The <b>first line </b> in the newly created text document.\n\n");
准确插入The <b>first line </b> in the newly created text document.
我需要插入“新创建的文本文档中的第一行”
有什么解决办法吗?