Libreoffice API (UNO):需要更改用户的 xTextField 文本

Libreoffice API (UNO): need to change user's xTextField text

是否有任何正确的方法可以使用 C++ UNO 更改用户创建的 xTextField 中的文本? 这些字段名称是 com.sun.star.text.fieldmaster.User.[FIELD NAME]

我以前试过这个,但没用:

我也尝试过类似的方法,但仍然没有帮助:

// current_field - xTextField I got before 
Reference<XText> xText = Reference<XText>(current_field, UNO_QUERY);
if (!xText.is())
{
    qDebug() << "XText FROM xTextField IS NULL!";
    return;
}

OUStringBuffer bufText;
bufText.append( new_value.utf16() );
std::stringstream textStr;
textStr << bufText.toString();

xText->setString( bufText.toString() );

有什么建议吗?

您是否按照我的其他回答中的建议阅读了 Andrew's Macro Document 的第 5.18 节?这是翻译成 C++ 的 清单 5.49。该列表中似乎存在错误,因为我必须添加 "." 才能使其正常工作。

OUString sName = OUString::createFromAscii("Author Name");
OUString sServ = OUString::createFromAscii("com.sun.star.text.FieldMaster.User");
OUString sFieldName = sServ + OUString::createFromAscii(".") + sName;
Reference< XMultiServiceFactory > xDocFactory (xTextDocument, UNO_QUERY);
if (xNamedFieldMasters->hasByName(sFieldName))
{
    fieldMaster = xNamedFieldMasters->getByName(sFieldName);
    Reference< XPropertySet> xProps (fieldMaster, UNO_QUERY);
    Any aContent;
    aContent <<= OUString::createFromAscii("Andrew Pitonyak");
    xProps->setPropertyValue(OUString::createFromAscii("Content"), aContent);
}
else
{
    fieldMaster <<= xDocFactory->createInstance(sServ);
    Reference< XPropertySet> xProps (fieldMaster, UNO_QUERY);
    Any aName;
    aName <<= sName;
    xProps->setPropertyValue(OUString::createFromAscii("Name"), aName);
    Any aContent;
    aContent <<= OUString::createFromAscii("Andrew Pitonyak");
    xProps->setPropertyValue(OUString::createFromAscii("Content"), aContent);
}

如果此代码 运行 在空白文档上,可以通过转到 插入 -> 字段 -> 更多字段、变量、用户字段[=19] 来查看新创建的字段=].