赞
踩
http://blog.csdn.net/yangxiao_0203/article/details/7422715
最近写程序中需要将数据输出保存到Excel文件中。翻看《C++ GUI Programming with Qt 4》(Second Edition)发现可以在Qt中运用ActiveX控件,这真是太好了。
看了很久教程也没有学会,毕竟是新手,平时也没学过ActiveX编程。一些在VB中可以方便使用的函数在Qt中都没法儿运行。网上的方法也很多解决不了问题,还会报错。也许是版本问题吧,Qt都更新了好几次了。所以只好自己多试几次。经过摸索我的方法如下:
首先在.pro文件中添加CONFIG += qaxcontainer
接着程序实现
另外附上在网上搜到的一些常用操作:
QAxWidget excel("Excel.Application");
1) 显示当前窗口:
excel.setProperty("Visible", true);
2) 更改 Excel 标题栏:
excel.setProperty("Caption", "Invoke Microsoft Excel");
3) 添加新工作簿:
QAxObject * workbooks = excel.querySubObject("WorkBooks");
workbooks->dynamicCall("Add");
4) 打开已存在的工作簿:
workbooks->dynamicCall("Open (const QString&)", QString("c:/test.xls"));
5) 获取活动工作簿:
QAxObject * workbook = excel.querySubObject("ActiveWorkBook");
6) 获取所有的工作表:
QAxObject * worksheets = workbook->querySubObject("WorkSheets");
7) 获取工作表数量:
int intCount = worksheets->property("Count").toInt();
8) 获取第一个工作表:
QAxObject * worksheet = workbook->querySubObject("Worksheets(int)", 1);
9) 获取cell的值:
QAxObject * range = worksheet->querySubObject("Cells(int,int)", 1, 1 );
以上操作不一定每个都可用(都好用),仅作为参考吧。起码我第9)个就没成功,不知为何?后来我改用了Range(QVariant, QVariant)的方法来替代它。
最后附上我用QAxBase::generateDocumentation()方法获得的对应于Excel.Application的带Qt数据类型的QAxObject或者QAxWidget中可用的属性、信号和槽列表(虽然我还不大会用,不过参考下还是很好的):
The COM object is a QAxObject with the CLSID {00024500-0000-0000-c000-000000000046}.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlMSApplication)), object, SLOT(ActivateMicrosoftApp(XlMSApplication)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ActivateMicrosoftApp(XlMSApplication)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QString, QVariant)), object, SLOT(AddChartAutoFormat(QVariant, QString, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("AddChartAutoFormat(QVariant, QString, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(AddCustomList(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("AddCustomList(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Calculate()));
Or call the function directly:
object->dynamicCall("Calculate()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(CalculateFull()));
Or call the function directly:
object->dynamicCall("CalculateFull()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(CalculateFullRebuild()));
Or call the function directly:
object->dynamicCall("CalculateFullRebuild()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(CalculateUntilAsyncQueriesDone()));
Or call the function directly:
object->dynamicCall("CalculateUntilAsyncQueriesDone()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(Caller(QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Caller(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(CentimetersToPoints(double)));
Or call the function directly:
QVariantList params = ... double result = object->dynamicCall("CentimetersToPoints(double)", params).toDouble();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(CheckAbort(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("CheckAbort(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QVariant, QVariant)), object, SLOT(CheckSpelling(QString, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... bool result = object->dynamicCall("CheckSpelling(QString, QVariant, QVariant)", params).toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(ClipboardFormats(QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("ClipboardFormats(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, XlReferenceStyle, QVariant, QVariant, QVariant)), object, SLOT(ConvertFormula(QVariant, XlReferenceStyle, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("ConvertFormula(QVariant, XlReferenceStyle, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int, QString)), object, SLOT(DDEExecute(int, QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("DDEExecute(int, QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QString)), object, SLOT(DDEInitiate(QString, QString)));
Or call the function directly:
QVariantList params = ... int result = object->dynamicCall("DDEInitiate(QString, QString)", params).toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int, QVariant, QVariant)), object, SLOT(DDEPoke(int, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("DDEPoke(int, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int, QString)), object, SLOT(DDERequest(int, QString)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("DDERequest(int, QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(DDETerminate(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("DDETerminate(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(DeleteChartAutoFormat(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("DeleteChartAutoFormat(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(DeleteCustomList(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("DeleteCustomList(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(DisplayXMLSourcePane(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("DisplayXMLSourcePane(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(DoubleClick()));
Or call the function directly:
object->dynamicCall("DoubleClick()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant)), object, SLOT(Dummy1(QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Dummy1(QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(Dummy10(QVariant)));
Or call the function directly:
QVariantList params = ... bool result = object->dynamicCall("Dummy10(QVariant)", params).toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy11()));
Or call the function directly:
object->dynamicCall("Dummy11()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*, IDispatch*)), object, SLOT(Dummy12(IDispatch*, IDispatch*)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Dummy12(IDispatch*, IDispatch*)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(Dummy13(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Dummy13(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy14()));
Or call the function directly:
object->dynamicCall("Dummy14()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(Dummy2(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Dummy2(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(Dummy20(int)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Dummy20(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy3()));
Or call the function directly:
QVariant result = object->dynamicCall("Dummy3()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(Dummy4(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Dummy4(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(Dummy5(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Dummy5(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy6()));
Or call the function directly:
QVariant result = object->dynamicCall("Dummy6()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy7()));
Or call the function directly:
QVariant result = object->dynamicCall("Dummy7()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(Dummy8(QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Dummy8(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy9()));
Or call the function directly:
QVariant result = object->dynamicCall("Dummy9()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(Evaluate(QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Evaluate(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(ExecuteExcel4Macro(QString)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("ExecuteExcel4Macro(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(FileConverters(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("FileConverters(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(Office::MsoFileDialogType)), object, SLOT(FileDialog(Office::MsoFileDialogType)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("FileDialog(Office::MsoFileDialogType)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(FindFile()));
Or call the function directly:
bool result = object->dynamicCall("FindFile()").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(GetCustomListContents(int)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("GetCustomListContents(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(GetCustomListNum(QVariant)));
Or call the function directly:
QVariantList params = ... int result = object->dynamicCall("GetCustomListNum(QVariant)", params).toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(GetOpenFilename(QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("GetOpenFilename(QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(GetPhonetic(QVariant)));
Or call the function directly:
QVariantList params = ... QString result = object->dynamicCall("GetPhonetic(QVariant)", params).toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(GetSaveAsFilename(QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("GetSaveAsFilename(QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(Goto(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Goto(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(Help(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Help(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(InchesToPoints(double)));
Or call the function directly:
QVariantList params = ... double result = object->dynamicCall("InchesToPoints(double)", params).toDouble();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(InputBox(QString, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("InputBox(QString, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(International(QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("International(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*, IDispatch*, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(Intersect(IDispatch*, IDispatch*, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("Intersect(IDispatch*, IDispatch*, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(MacroOptions(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("MacroOptions(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(MailLogoff()));
Or call the function directly:
object->dynamicCall("MailLogoff()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant)), object, SLOT(MailLogon(QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("MailLogon(QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(NextLetter()));
Or call the function directly:
QAxObject * result = object->querySubObject("NextLetter()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QVariant)), object, SLOT(OnKey(QString, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("OnKey(QString, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QString)), object, SLOT(OnRepeat(QString, QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("OnRepeat(QString, QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QString, QVariant, QVariant)), object, SLOT(OnTime(QVariant, QString, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("OnTime(QVariant, QString, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QString)), object, SLOT(OnUndo(QString, QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("OnUndo(QString, QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(PreviousSelections(QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("PreviousSelections(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Quit()));
Or call the function directly:
object->dynamicCall("Quit()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(Range(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("Range(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(RecordMacro(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("RecordMacro(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(RegisterXLL(QString)));
Or call the function directly:
QVariantList params = ... bool result = object->dynamicCall("RegisterXLL(QString)", params).toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(RegisteredFunctions(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("RegisteredFunctions(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Repeat()));
Or call the function directly:
object->dynamicCall("Repeat()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ResetTipWizard()));
Or call the function directly:
object->dynamicCall("ResetTipWizard()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(Run(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Run(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(Save(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Save(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(SaveWorkspace(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SaveWorkspace(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(SendKeys(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SendKeys(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetActivePrinter(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetActivePrinter(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetAlertBeforeOverwriting(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAlertBeforeOverwriting(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetAltStartupPath(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAltStartupPath(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetAlwaysUseClearType(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAlwaysUseClearType(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetAskToUpdateLinks(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAskToUpdateLinks(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetAutoFormatAsYouTypeReplaceHyperlinks(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAutoFormatAsYouTypeReplaceHyperlinks(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetAutoPercentEntry(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAutoPercentEntry(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(Office::MsoAutomationSecurity)), object, SLOT(SetAutomationSecurity(Office::MsoAutomationSecurity)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAutomationSecurity(Office::MsoAutomationSecurity)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetCalculateBeforeSave(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCalculateBeforeSave(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlCalculation)), object, SLOT(SetCalculation(XlCalculation)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCalculation(XlCalculation)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlCalculationInterruptKey)), object, SLOT(SetCalculationInterruptKey(XlCalculationInterruptKey)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCalculationInterruptKey(XlCalculationInterruptKey)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetCaption(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCaption(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetCellDragAndDrop(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCellDragAndDrop(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetColorButtons(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetColorButtons(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlCommandUnderlines)), object, SLOT(SetCommandUnderlines(XlCommandUnderlines)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCommandUnderlines(XlCommandUnderlines)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetConstrainNumeric(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetConstrainNumeric(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetControlCharacters(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetControlCharacters(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetCopyObjectsWithCells(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCopyObjectsWithCells(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlMousePointer)), object, SLOT(SetCursor(XlMousePointer)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCursor(XlMousePointer)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetCursorMovement(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCursorMovement(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlCutCopyMode)), object, SLOT(SetCutCopyMode(XlCutCopyMode)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCutCopyMode(XlCutCopyMode)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetDataEntryMode(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDataEntryMode(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetDecimalSeparator(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDecimalSeparator(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant)), object, SLOT(SetDefaultChart(QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDefaultChart(QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetDefaultFilePath(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDefaultFilePath(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlFileFormat)), object, SLOT(SetDefaultSaveFormat(XlFileFormat)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDefaultSaveFormat(XlFileFormat)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetDefaultSheetDirection(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDefaultSheetDirection(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDeferAsyncQueries(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDeferAsyncQueries(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayAlerts(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayAlerts(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayClipboardWindow(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayClipboardWindow(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlCommentDisplayMode)), object, SLOT(SetDisplayCommentIndicator(XlCommentDisplayMode)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayCommentIndicator(XlCommentDisplayMode)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayDocumentActionTaskPane(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayDocumentActionTaskPane(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayDocumentInformationPanel(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayDocumentInformationPanel(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayExcel4Menus(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayExcel4Menus(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayFormulaAutoComplete(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayFormulaAutoComplete(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayFormulaBar(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayFormulaBar(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayFullScreen(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayFullScreen(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayFunctionToolTips(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayFunctionToolTips(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayInfoWindow(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayInfoWindow(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayInsertOptions(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayInsertOptions(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayNoteIndicator(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayNoteIndicator(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayPasteOptions(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayPasteOptions(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayRecentFiles(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayRecentFiles(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayScrollBars(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayScrollBars(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisplayStatusBar(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisplayStatusBar(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEditDirectlyInCell(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEditDirectlyInCell(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnableAnimations(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableAnimations(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnableAutoComplete(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableAutoComplete(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlEnableCancelKey)), object, SLOT(SetEnableCancelKey(XlEnableCancelKey)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableCancelKey(XlEnableCancelKey)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnableEvents(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableEvents(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnableLargeOperationAlert(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableLargeOperationAlert(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnableLivePreview(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableLivePreview(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnableSound(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableSound(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnableTipWizard(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnableTipWizard(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetExtendList(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetExtendList(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(Office::MsoFeatureInstall)), object, SLOT(SetFeatureInstall(Office::MsoFeatureInstall)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFeatureInstall(Office::MsoFeatureInstall)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFixedDecimal(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFixedDecimal(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetFixedDecimalPlaces(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFixedDecimalPlaces(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetFormulaBarHeight(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormulaBarHeight(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetGenerateGetPivotData(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGenerateGetPivotData(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlGenerateTableRefs)), object, SLOT(SetGenerateTableRefs(XlGenerateTableRefs)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGenerateTableRefs(XlGenerateTableRefs)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetHeight(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetHeight(double)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetHighQualityModeForGraphics(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetHighQualityModeForGraphics(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetIgnoreRemoteRequests(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetIgnoreRemoteRequests(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetInteractive(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetInteractive(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetIteration(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetIteration(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetLargeButtons(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetLargeButtons(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetLargeOperationCellThousandCount(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetLargeOperationCellThousandCount(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetLeft(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetLeft(double)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetMapPaperSize(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetMapPaperSize(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetMaxChange(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetMaxChange(double)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetMaxIterations(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetMaxIterations(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetMeasurementUnit(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetMeasurementUnit(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetMoveAfterReturn(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetMoveAfterReturn(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlDirection)), object, SLOT(SetMoveAfterReturnDirection(XlDirection)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetMoveAfterReturnDirection(XlDirection)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetODBCTimeout(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetODBCTimeout(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOnCalculate(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOnCalculate(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOnData(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOnData(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOnDoubleClick(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOnDoubleClick(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOnEntry(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOnEntry(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOnSheetActivate(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOnSheetActivate(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOnSheetDeactivate(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOnSheetDeactivate(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOnWindow(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOnWindow(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetPivotTableSelection(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPivotTableSelection(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetPromptForSummaryInfo(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPromptForSummaryInfo(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlReferenceStyle)), object, SLOT(SetReferenceStyle(XlReferenceStyle)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetReferenceStyle(XlReferenceStyle)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetRollZoom(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetRollZoom(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetScreenUpdating(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetScreenUpdating(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetSheetsInNewWorkbook(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSheetsInNewWorkbook(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowChartTipNames(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowChartTipNames(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowChartTipValues(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowChartTipValues(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowDevTools(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowDevTools(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowMenuFloaties(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowMenuFloaties(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowSelectionFloaties(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowSelectionFloaties(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowStartupDialog(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowStartupDialog(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowToolTips(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowToolTips(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowWindowsInTaskbar(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowWindowsInTaskbar(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetStandardFont(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetStandardFont(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetStandardFontSize(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetStandardFontSize(double)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(SetStatusBar(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetStatusBar(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetThousandsSeparator(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetThousandsSeparator(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetTop(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTop(double)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetTransitionMenuKey(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTransitionMenuKey(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetTransitionMenuKeyAction(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTransitionMenuKeyAction(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetTransitionNavigKeys(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTransitionNavigKeys(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetUILanguage(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetUILanguage(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetUseSystemSeparators(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetUseSystemSeparators(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetUserControl(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetUserControl(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetUserName(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetUserName(QString)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetVisible(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetVisible(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetWarnOnFunctionNameConflict(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetWarnOnFunctionNameConflict(bool)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetWidth(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetWidth(double)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(XlWindowState)), object, SLOT(SetWindowState(XlWindowState)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetWindowState(XlWindowState)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SharePointVersion(QString)));
Or call the function directly:
QVariantList params = ... int result = object->dynamicCall("SharePointVersion(QString)", params).toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(ShortcutMenus(int)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("ShortcutMenus(int)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*, int, QVariant)), object, SLOT(Support(IDispatch*, int, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("Support(IDispatch*, int, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Undo()));
Or call the function directly:
object->dynamicCall("Undo()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*, IDispatch*, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(Union(IDispatch*, IDispatch*, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("Union(IDispatch*, IDispatch*, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(Volatile(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Volatile(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(Wait(QVariant)));
Or call the function directly:
QVariantList params = ... bool result = object->dynamicCall("Wait(QVariant)", params).toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(_Evaluate(QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("_Evaluate(QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(_FindFile()));
Or call the function directly:
object->dynamicCall("_FindFile()");
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(_Run2(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("_Run2(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)), object, SLOT(_WSFunction(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("_WSFunction(QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant, QVariant)", params);
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(_Wait(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("_Wait(QVariant)", params);
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(AddRef()), receiver, SLOT(someSlot()));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(AfterCalculate()), receiver, SLOT(someSlot()));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(GetIDsOfNames(GUID*, int**, uint, uint, int&)), receiver, SLOT(someSlot(GUID*, int**, uint, uint, int&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(GetTypeInfo(uint, uint, void**)), receiver, SLOT(someSlot(uint, uint, void**)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(GetTypeInfoCount(uint&)), receiver, SLOT(someSlot(uint&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(Invoke(int, GUID*, uint, uint, DISPPARAMS*, QVariant&, EXCEPINFO*&, uint&)), receiver, SLOT(someSlot(int, GUID*, uint, uint, DISPPARAMS*, QVariant&, EXCEPINFO*&, uint&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(NewWorkbook(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(QueryInterface(GUID*, void**)), receiver, SLOT(someSlot(GUID*, void**)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(Release()), receiver, SLOT(someSlot()));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetActivate(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetBeforeDoubleClick(IDispatch*, IDispatch*, bool&)), receiver, SLOT(someSlot(IDispatch*, IDispatch*, bool&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetBeforeRightClick(IDispatch*, IDispatch*, bool&)), receiver, SLOT(someSlot(IDispatch*, IDispatch*, bool&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetCalculate(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetChange(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetDeactivate(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetFollowHyperlink(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetPivotTableUpdate(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(SheetSelectionChange(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WindowActivate(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WindowDeactivate(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WindowResize(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookActivate(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookAddinInstall(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookAddinUninstall(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookAfterXmlExport(IDispatch*, IDispatch*, QString, XlXmlExportResult)), receiver, SLOT(someSlot(IDispatch*, IDispatch*, QString, XlXmlExportResult)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookAfterXmlImport(IDispatch*, IDispatch*, bool, XlXmlImportResult)), receiver, SLOT(someSlot(IDispatch*, IDispatch*, bool, XlXmlImportResult)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookBeforeClose(IDispatch*, bool&)), receiver, SLOT(someSlot(IDispatch*, bool&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookBeforePrint(IDispatch*, bool&)), receiver, SLOT(someSlot(IDispatch*, bool&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookBeforeSave(IDispatch*, bool, bool&)), receiver, SLOT(someSlot(IDispatch*, bool, bool&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookBeforeXmlExport(IDispatch*, IDispatch*, QString, bool&)), receiver, SLOT(someSlot(IDispatch*, IDispatch*, QString, bool&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookBeforeXmlImport(IDispatch*, IDispatch*, QString, bool, bool&)), receiver, SLOT(someSlot(IDispatch*, IDispatch*, QString, bool, bool&)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookDeactivate(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookNewSheet(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookOpen(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookPivotTableCloseConnection(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookPivotTableOpenConnection(IDispatch*, IDispatch*)), receiver, SLOT(someSlot(IDispatch*, IDispatch*)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookRowsetComplete(IDispatch*, QString, QString, bool)), receiver, SLOT(someSlot(IDispatch*, QString, QString, bool)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(WorkbookSync(IDispatch*, Office::MsoSyncEventType)), receiver, SLOT(someSlot(IDispatch*, Office::MsoSyncEventType)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(exception(int, QString, QString, QString)), receiver, SLOT(someSlot(int, QString, QString, QString)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(propertyChanged(QString)), receiver, SLOT(someSlot(QString)));
For more information, see help context 104001 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Connect a slot to this signal:
QObject::connect(object, SIGNAL(signal(QString, int, void*)), receiver, SLOT(someSlot(QString, int, void*)));
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("objectName").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("objectName", newValue);Or using the setObjectName slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveCell").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveChart").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveDialog").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("ActiveEncryptionSession").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveMenuBar").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("ActivePrinter").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("ActivePrinter", newValue);Or using the SetActivePrinter slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveSheet").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveWindow").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveWorkbook").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("AddIns").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("AlertBeforeOverwriting").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("AlertBeforeOverwriting", newValue);Or using the SetAlertBeforeOverwriting slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("AltStartupPath").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("AltStartupPath", newValue);Or using the SetAltStartupPath slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("AlwaysUseClearType").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("AlwaysUseClearType", newValue);Or using the SetAlwaysUseClearType slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("AnswerWizard").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Application").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ArbitraryXMLSupportAvailable").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("AskToUpdateLinks").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("AskToUpdateLinks", newValue);Or using the SetAskToUpdateLinks slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Assistance").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Assistant").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("AutoCorrect").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("AutoFormatAsYouTypeReplaceHyperlinks").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("AutoFormatAsYouTypeReplaceHyperlinks", newValue);Or using the SetAutoFormatAsYouTypeReplaceHyperlinks slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("AutoPercentEntry").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("AutoPercentEntry", newValue);Or using the SetAutoPercentEntry slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("AutoRecover").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
This property is of an unsupported type.Set this property' value using QObject::setProperty:
Office::MsoAutomationSecurity newValue = ... object->setProperty("AutomationSecurity", newValue);Or using the SetAutomationSecurity slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("Build").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("COMAddIns").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("CalculateBeforeSave").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("CalculateBeforeSave", newValue);Or using the SetCalculateBeforeSave slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("Calculation").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("Calculation", newValue);Or using the SetCalculation slot.
See also XlCalculation.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("CalculationInterruptKey").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("CalculationInterruptKey", newValue);Or using the SetCalculationInterruptKey slot.
See also XlCalculationInterruptKey.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("CalculationState").toInt();
See also XlCalculationState.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("CalculationVersion").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("Caller").toVariant();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("CanPlaySounds").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("CanRecordSounds").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Caption").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("Caption", newValue);Or using the SetCaption slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("CellDragAndDrop").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("CellDragAndDrop", newValue);Or using the SetCellDragAndDrop slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Cells").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Charts").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("ClipboardFormats").toVariant();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ColorButtons").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ColorButtons", newValue);Or using the SetColorButtons slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Columns").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("CommandBars").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("CommandUnderlines").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("CommandUnderlines", newValue);Or using the SetCommandUnderlines slot.
See also XlCommandUnderlines.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ConstrainNumeric").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ConstrainNumeric", newValue);Or using the SetConstrainNumeric slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ControlCharacters").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ControlCharacters", newValue);Or using the SetControlCharacters slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("CopyObjectsWithCells").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("CopyObjectsWithCells", newValue);Or using the SetCopyObjectsWithCells slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("Creator").toInt();
See also XlCreator.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("Cursor").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("Cursor", newValue);Or using the SetCursor slot.
See also XlMousePointer.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("CursorMovement").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("CursorMovement", newValue);Or using the SetCursorMovement slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("CustomListCount").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("CutCopyMode").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("CutCopyMode", newValue);Or using the SetCutCopyMode slot.
See also XlCutCopyMode.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("DDEAppReturnCode").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("DataEntryMode").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("DataEntryMode", newValue);Or using the SetDataEntryMode slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("DecimalSeparator").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("DecimalSeparator", newValue);Or using the SetDecimalSeparator slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("DefaultFilePath").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("DefaultFilePath", newValue);Or using the SetDefaultFilePath slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("DefaultSaveFormat").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("DefaultSaveFormat", newValue);Or using the SetDefaultSaveFormat slot.
See also XlFileFormat.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("DefaultSheetDirection").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("DefaultSheetDirection", newValue);Or using the SetDefaultSheetDirection slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("DefaultWebOptions").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DeferAsyncQueries").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DeferAsyncQueries", newValue);Or using the SetDeferAsyncQueries slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("DialogSheets").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Dialogs").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayAlerts").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayAlerts", newValue);Or using the SetDisplayAlerts slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayClipboardWindow").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayClipboardWindow", newValue);Or using the SetDisplayClipboardWindow slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("DisplayCommentIndicator").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("DisplayCommentIndicator", newValue);Or using the SetDisplayCommentIndicator slot.
See also XlCommentDisplayMode.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayDocumentActionTaskPane").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayDocumentActionTaskPane", newValue);Or using the SetDisplayDocumentActionTaskPane slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayDocumentInformationPanel").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayDocumentInformationPanel", newValue);Or using the SetDisplayDocumentInformationPanel slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayExcel4Menus").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayExcel4Menus", newValue);Or using the SetDisplayExcel4Menus slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayFormulaAutoComplete").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayFormulaAutoComplete", newValue);Or using the SetDisplayFormulaAutoComplete slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayFormulaBar").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayFormulaBar", newValue);Or using the SetDisplayFormulaBar slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayFullScreen").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayFullScreen", newValue);Or using the SetDisplayFullScreen slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayFunctionToolTips").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayFunctionToolTips", newValue);Or using the SetDisplayFunctionToolTips slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayInfoWindow").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayInfoWindow", newValue);Or using the SetDisplayInfoWindow slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayInsertOptions").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayInsertOptions", newValue);Or using the SetDisplayInsertOptions slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayNoteIndicator").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayNoteIndicator", newValue);Or using the SetDisplayNoteIndicator slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayPasteOptions").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayPasteOptions", newValue);Or using the SetDisplayPasteOptions slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayRecentFiles").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayRecentFiles", newValue);Or using the SetDisplayRecentFiles slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayScrollBars").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayScrollBars", newValue);Or using the SetDisplayScrollBars slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisplayStatusBar").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisplayStatusBar", newValue);Or using the SetDisplayStatusBar slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Dummy101").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EditDirectlyInCell").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EditDirectlyInCell", newValue);Or using the SetEditDirectlyInCell slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnableAnimations").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnableAnimations", newValue);Or using the SetEnableAnimations slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnableAutoComplete").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnableAutoComplete", newValue);Or using the SetEnableAutoComplete slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("EnableCancelKey").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("EnableCancelKey", newValue);Or using the SetEnableCancelKey slot.
See also XlEnableCancelKey.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnableEvents").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnableEvents", newValue);Or using the SetEnableEvents slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnableLargeOperationAlert").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnableLargeOperationAlert", newValue);Or using the SetEnableLargeOperationAlert slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnableLivePreview").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnableLivePreview", newValue);Or using the SetEnableLivePreview slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnableSound").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnableSound", newValue);Or using the SetEnableSound slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnableTipWizard").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnableTipWizard", newValue);Or using the SetEnableTipWizard slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ErrorCheckingOptions").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Excel4IntlMacroSheets").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Excel4MacroSheets").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ExtendList").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ExtendList", newValue);Or using the SetExtendList slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
This property is of an unsupported type.Set this property' value using QObject::setProperty:
Office::MsoFeatureInstall newValue = ... object->setProperty("FeatureInstall", newValue);Or using the SetFeatureInstall slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("FileConverters").toVariant();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("FileExportConverters").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("FileFind").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("FileSearch").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("FindFormat").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FixedDecimal").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("FixedDecimal", newValue);Or using the SetFixedDecimal slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("FixedDecimalPlaces").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("FixedDecimalPlaces", newValue);Or using the SetFixedDecimalPlaces slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("FormulaBarHeight").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("FormulaBarHeight", newValue);Or using the SetFormulaBarHeight slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("GenerateGetPivotData").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("GenerateGetPivotData", newValue);Or using the SetGenerateGetPivotData slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("GenerateTableRefs").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("GenerateTableRefs", newValue);Or using the SetGenerateTableRefs slot.
See also XlGenerateTableRefs.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("Height").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("Height", newValue);Or using the SetHeight slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("HighQualityModeForGraphics").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("HighQualityModeForGraphics", newValue);Or using the SetHighQualityModeForGraphics slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("Hinstance").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("Hwnd").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("IgnoreRemoteRequests").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("IgnoreRemoteRequests", newValue);Or using the SetIgnoreRemoteRequests slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("Interactive").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("Interactive", newValue);Or using the SetInteractive slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("International").toVariant();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("Iteration").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("Iteration", newValue);Or using the SetIteration slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("LanguageSettings").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("LargeButtons").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("LargeButtons", newValue);Or using the SetLargeButtons slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("LargeOperationCellThousandCount").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("LargeOperationCellThousandCount", newValue);Or using the SetLargeOperationCellThousandCount slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("Left").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("Left", newValue);Or using the SetLeft slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("LibraryPath").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("MailSession").toVariant();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("MailSystem").toInt();
See also XlMailSystem.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("MapPaperSize").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("MapPaperSize", newValue);Or using the SetMapPaperSize slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("MathCoprocessorAvailable").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("MaxChange").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("MaxChange", newValue);Or using the SetMaxChange slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("MaxIterations").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("MaxIterations", newValue);Or using the SetMaxIterations slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("MeasurementUnit").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("MeasurementUnit", newValue);Or using the SetMeasurementUnit slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("MemoryFree").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("MemoryTotal").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("MemoryUsed").toInt();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("MenuBars").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Modules").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("MouseAvailable").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("MoveAfterReturn").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("MoveAfterReturn", newValue);Or using the SetMoveAfterReturn slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("MoveAfterReturnDirection").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("MoveAfterReturnDirection", newValue);Or using the SetMoveAfterReturnDirection slot.
See also XlDirection.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("MultiThreadedCalculation").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Name").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Names").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("NetworkTemplatesPath").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("NewWorkbook").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ODBCErrors").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("ODBCTimeout").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("ODBCTimeout", newValue);Or using the SetODBCTimeout slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("OLEDBErrors").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OnCalculate").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OnCalculate", newValue);Or using the SetOnCalculate slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OnData").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OnData", newValue);Or using the SetOnData slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OnDoubleClick").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OnDoubleClick", newValue);Or using the SetOnDoubleClick slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OnEntry").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OnEntry", newValue);Or using the SetOnEntry slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OnSheetActivate").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OnSheetActivate", newValue);Or using the SetOnSheetActivate slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OnSheetDeactivate").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OnSheetDeactivate", newValue);Or using the SetOnSheetDeactivate slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OnWindow").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OnWindow", newValue);Or using the SetOnWindow slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OperatingSystem").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OrganizationName").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Parent").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Path").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("PathSeparator").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("PivotTableSelection").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("PivotTableSelection", newValue);Or using the SetPivotTableSelection slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("PreviousSelections").toVariant();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("ProductCode").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("PromptForSummaryInfo").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("PromptForSummaryInfo", newValue);Or using the SetPromptForSummaryInfo slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("RTD").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("Ready").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("RecentFiles").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("RecordRelative").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("ReferenceStyle").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("ReferenceStyle", newValue);Or using the SetReferenceStyle slot.
See also XlReferenceStyle.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("RegisteredFunctions").toVariant();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ReplaceFormat").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("RollZoom").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("RollZoom", newValue);Or using the SetRollZoom slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Rows").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ScreenUpdating").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ScreenUpdating", newValue);Or using the SetScreenUpdating slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Selection").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Sheets").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("SheetsInNewWorkbook").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("SheetsInNewWorkbook", newValue);Or using the SetSheetsInNewWorkbook slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowChartTipNames").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowChartTipNames", newValue);Or using the SetShowChartTipNames slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowChartTipValues").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowChartTipValues", newValue);Or using the SetShowChartTipValues slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowDevTools").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowDevTools", newValue);Or using the SetShowDevTools slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowMenuFloaties").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowMenuFloaties", newValue);Or using the SetShowMenuFloaties slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowSelectionFloaties").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowSelectionFloaties", newValue);Or using the SetShowSelectionFloaties slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowStartupDialog").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowStartupDialog", newValue);Or using the SetShowStartupDialog slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowToolTips").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowToolTips", newValue);Or using the SetShowToolTips slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowWindowsInTaskbar").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowWindowsInTaskbar", newValue);Or using the SetShowWindowsInTaskbar slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("SmartTagRecognizers").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Speech").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("SpellingOptions").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("StandardFont").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("StandardFont", newValue);Or using the SetStandardFont slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("StandardFontSize").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("StandardFontSize", newValue);Or using the SetStandardFontSize slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("StartupPath").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("StatusBar").toVariant();Set this property' value using QObject::setProperty:
QVariant newValue = ... object->setProperty("StatusBar", newValue);Or using the SetStatusBar slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("TemplatesPath").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ThisCell").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ThisWorkbook").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("ThousandsSeparator").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("ThousandsSeparator", newValue);Or using the SetThousandsSeparator slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Toolbars").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("Top").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("Top", newValue);Or using the SetTop slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("TransitionMenuKey").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("TransitionMenuKey", newValue);Or using the SetTransitionMenuKey slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("TransitionMenuKeyAction").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("TransitionMenuKeyAction", newValue);Or using the SetTransitionMenuKeyAction slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("TransitionNavigKeys").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("TransitionNavigKeys", newValue);Or using the SetTransitionNavigKeys slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("UILanguage").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("UILanguage", newValue);Or using the SetUILanguage slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("UsableHeight").toDouble();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("UsableWidth").toDouble();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("UseSystemSeparators").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("UseSystemSeparators", newValue);Or using the SetUseSystemSeparators slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("UsedObjects").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("UserControl").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("UserControl", newValue);Or using the SetUserControl slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("UserLibraryPath").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("UserName").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("UserName", newValue);Or using the SetUserName slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("VBE").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Value").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Version").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("Visible").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("Visible", newValue);Or using the SetVisible slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("WarnOnFunctionNameConflict").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("WarnOnFunctionNameConflict", newValue);Or using the SetWarnOnFunctionNameConflict slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Watches").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
double val = object->property("Width").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("Width", newValue);Or using the SetWidth slot.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
int val = object->property("WindowState").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("WindowState", newValue);Or using the SetWindowState slot.
See also XlWindowState.
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Windows").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
bool val = object->property("WindowsForPens").toBool();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Workbooks").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("WorksheetFunction").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Worksheets").toIDispatch*();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("_Default").toString();
For more information, see help context 65537 in C:\Program Files\Microsoft Office\Office12\VBAXL10.CHM.
Read this property's value using QObject::property:
QString val = object->property("control").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("control", newValue);Or using the setControl slot.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。