0

我需要在我的文档中获取当前页面,并设置范围。我发现可以这样做:

Range.Information(wdActiveEndPageNumber)     //example in C#

但我有问题。在文档中,信息作为属性可见。所以当我使用

QString number = myRange->property("Information(wdActiveEndPageNumber)").toString()

我什么也得不到。我也尝试过dynamicCall,但都不起作用。像 Text 或 Start 这样的简单属性可以很好地工作,但我不知道如何处理这些枚举。

整个代码:

QAxObject *word, *doc;
word = new QAxObject("Word.Application", this);
word->setProperty("DisplayAlerts", false);
word->setProperty("Visible", true);
doc = word->querySubObject("Documents");
doc->dynamicCall("Open(const QString&)", "path to file");
QAxObject *act = word->querySubObject("ActiveDocument");
QAxObject *next = act->querySubObject("Content");
next->dynamicCall("Select()");
next->dynamicCall("Copy()");
QClipboard *clip = QApplication::clipboard();
myTextEdit->setText(clip->text());
QString number = next->property("Information(3)").toString();
QMessageBox::information(this, tr("cos"), tr("%1").arg(number)); //here i need to know how many pages i've got
4

2 回答 2

1

好的,经过大量研究,我发现还没有可能从信息枚举中获取价值。也许在 Qt 的未来版本中,但现在我不得不在 Visual Basic 中创建库并从 C++ 代码调用函数。

于 2012-09-02T16:27:05.813 回答
1

刚刚在这里找到了一个非常酷的答案: http ://www.qtforum.org/article/31970/how-do-i-get-use-the-ienumerable-interface-in-qt.html

这里再次给出答案。使用包含您的枚举的 returnList..

QAxObject *enum1 = returnList->querySubObject("_NewEnum");
IEnumVARIANT* enumInterface; //to get this, include <windows.h>
enum1->queryInterface(IID_IEnumVARIANT, (void**)&enumInterface);
enumInterface->Reset(); //start at the beginning of the list.
for (int i=0;i<returnList->dynamicCall("Count").toInt();i++)
{
    VARIANT *theItem;
    enumInterface->Next(1,theItem,NULL);
    QAxObject *item = new QAxObject((IUnknown *)theItem->punkVal);
    qDebug() << item->dynamicCall("Caption");
}
于 2014-11-07T14:07:47.963 回答