0

我需要合并 Writer 表中的单元格,但在查找我拥有的单元格名称时遇到问题。

 XCell xCell = getCell(column, row);        

 XTextTableCursor textTableCursor = null;

 try {
   textTableCursor = xTextTable.createCursorByCellName(???????????);
   textTableCursor.goRight(mergeCol, true);
   textTableCursor.goDown(mergeRow, true);
   textTableCursor.mergeRange();
 } catch (Exception ex) {
 }

为了通过. _ XCell_shortXTextTableCursorxTextTable.createCursorByCellName

4

2 回答 2

1

阿克塞尔,

这为我指明了正确的方向,但我应该注意 XCell 接口没有 getPropertyValue 方法。相反,需要获取 XCell 对象的 XPropertySet。这是有效的完整代码:

public void mergeCells(int startColumn, int startRow, short endColumn, short endRow) {

        if (endRow == 0 && endColumn == 0) {
            return;
        }

        XCell xCell = getCell(column, row); //Custom method to get cell

        XPropertySet props = null;
        try {
            props = (XPropertySet) FileManager.getOOoUnoRuntimeQueryInterface(XPropertySet.class, xCell);
        } catch (Exception ex) {
        // Do error stuff
        }

        XTextTableCursor textTableCursor = null;
        String cellName = null;

        try {
            cellName = props.getPropertyValue("CellName").toString();
        } catch (Exception ex) {
        // Do error stuff
        }

        try {
            textTableCursor = xTextTable.createCursorByCellName(cellName);
            textTableCursor.goRight(endColumn, true);
            textTableCursor.goDown(endRow, true);
            textTableCursor.mergeRange();
        } catch (Exception ex) {
        // Do error stuff
        }

}
于 2014-08-26T13:54:59.453 回答
0

如果你有一个com.sun.star.text.Cell,那么这个类包括服务com.sun.star.text.CellProperties。该服务提供属性 CellName。

http://api.libreoffice.org/docs/idl/ref/servicecom_1_1sun_1_1star_1_1text_1_1Cell.html

因此,如果您的 xCell 确实是 com.sun.star.text.Cell,那么

textTableCursor = xTextTable.createCursorByCellName(xCell.getPropertyValue("CellName"));

但是 libreoffice API 中没有 getCell 方法,所以我不知道这会返回什么。

问候

阿克塞尔

于 2014-08-24T05:34:12.873 回答