如何动态设置 XTextTable 名称
How to set XTextTable name dynamically
我找不到如何设置 table 的名称 属性。
//I create the table here and the default name is table1
XTextTable xTT = (XTextTable) UnoRuntime.queryInterface(XTextTable.class, oInt);
xTT.initialize(1, 1);
如何继续更改这个默认设置的名称?
获取xTT
的XNamed接口,调用setName()。
参见https://forum.openoffice.org/en/forum/viewtopic.php?f=44&t=41424。
我找不到如何设置 table 的名称 属性。
//I create the table here and the default name is table1
XTextTable xTT = (XTextTable) UnoRuntime.queryInterface(XTextTable.class, oInt);
xTT.initialize(1, 1);
如何继续更改这个默认设置的名称?
获取xTT
的XNamed接口,调用setName()。
参见https://forum.openoffice.org/en/forum/viewtopic.php?f=44&t=41424。