我找不到如何设置表的名称属性。

//I create the table here and the default name is table1
XTextTable xTT = (XTextTable) UnoRuntime.queryInterface(XTextTable.class, oInt);
xTT.initialize(1, 1);


如何继续更改默认设置的名称?

最佳答案

获取xTTXNamed接口并调用setName()。

请参见https://forum.openoffice.org/en/forum/viewtopic.php?f=44&t=41424

关于java - 如何动态设置XTextTable名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37844295/

10-09 00:38