0

这是插件使用的标签<object type="something" data="myfile.mytype"></object>。现在我想在我的插件源代码中使用 src 值,我该如何访问它?

4

1 回答 1

1
try {
    std::string test = m_host->getDOMElement()->getProperty<std::string>("src");
} catch (...) {
    // There wasn't a value to fetch
}
于 2013-03-23T14:55:30.933 回答