使用libreoffice basic从单元格中读取html文本

时间:2015-05-10 07:47:04

标签: libreoffice-basic

出于某种原因,我需要从计算单元格的单元格中检索“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

可以这样做吗?

-----------更新-------------

enter image description here

如上图所示。我在单元格中更改颜色和字体大小。 那么我需要用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实现此功能?

0 个答案:

没有答案