出于某种原因,我需要从计算单元格的单元格中检索“html格式化文本”。 我试过了:
Sub Main
Osheet = ThisComponent.Sheets.getByName("mySheet")
oCell = oSheet.getCellrangeByName("D2")
Print oCell.htmlText REM there is no htmltext property in cell instance
REM holp output some thing like <p color="#ff0000">text in cell</p>
End Sub
可以这样做吗?
-----------更新-------------
如上图所示。我在单元格中更改颜色和字体大小。 那么我需要用VBA从单元格中检索“html text”。 如果可能它应该输出:
<font size='12'>Hi !<font color='#ff0000'>every</font><font size='16'>body</font>.<font color='#0000ff'>Are</font> you OK?</font></font>
如何使用VBA实现此功能?