如何动态设置XTextTable名称

时间:2016-06-15 19:36:57

标签: java openoffice.org openoffice-writer uno

我无法找到如何设置表格的名称属性。

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

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

1 个答案:

答案 0 :(得分:1)

获取xTT的{​​{3}}界面并调用setName()。

请参阅XNamed