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