The Microsoft Word 97 - 2003 Document COM object is a QAxObject with the CLSID .
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(AcceptAllRevisions()));
Or call the function directly:
object->dynamicCall("AcceptAllRevisions()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(AcceptAllRevisionsShown()));
Or call the function directly:
object->dynamicCall("AcceptAllRevisionsShown()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Activate()));
Or call the function directly:
object->dynamicCall("Activate()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(ActiveWritingStyle(QVariant&)));
Or call the function directly:
QVariantList params = ... QString result = object->dynamicCall("ActiveWritingStyle(QVariant&)", params).toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool, QString, QString, QString, QString)), object, SLOT(AddDocumentWorkspaceHeader(bool, QString, QString, QString, QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("AddDocumentWorkspaceHeader(bool, QString, QString, QString, QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool, QString, QString, QString, QString)), object, SLOT(AddMeetingWorkspaceHeader(bool, QString, QString, QString, QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("AddMeetingWorkspaceHeader(bool, QString, QString, QString, QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(AddToFavorites()));
Or call the function directly:
object->dynamicCall("AddToFavorites()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(ApplyDocumentTheme(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ApplyDocumentTheme(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(ApplyQuickStyleSet(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ApplyQuickStyleSet(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(ApplyQuickStyleSet2(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ApplyQuickStyleSet2(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(ApplyTheme(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ApplyTheme(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(AutoFormat()));
Or call the function directly:
object->dynamicCall("AutoFormat()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&)), object, SLOT(AutoSummarize(QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("AutoSummarize(QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(CanCheckin()));
Or call the function directly:
bool result = object->dynamicCall("CanCheckin()").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(CheckConsistency()));
Or call the function directly:
object->dynamicCall("CheckConsistency()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(CheckGrammar()));
Or call the function directly:
object->dynamicCall("CheckGrammar()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool, QVariant&, bool)), object, SLOT(CheckIn(bool, QVariant&, bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("CheckIn(bool, QVariant&, bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool, QVariant&, bool, QVariant&)), object, SLOT(CheckInWithVersion(bool, QVariant&, bool, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("CheckInWithVersion(bool, QVariant&, bool, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(CheckNewSmartTags()));
Or call the function directly:
object->dynamicCall("CheckNewSmartTags()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(CheckSpelling(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("CheckSpelling(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&)), object, SLOT(Close(QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Close(QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ClosePrintPreview()));
Or call the function directly:
object->dynamicCall("ClosePrintPreview()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(Compare(QString, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Compare(QString, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(Compare2000(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Compare2000(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(Compare2002(QString, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Compare2002(QString, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdCompatibility)), object, SLOT(Compatibility(WdCompatibility)));
Or call the function directly:
QVariantList params = ... bool result = object->dynamicCall("Compatibility(WdCompatibility)", params).toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdStatistic, QVariant&)), object, SLOT(ComputeStatistics(WdStatistic, QVariant&)));
Or call the function directly:
QVariantList params = ... int result = object->dynamicCall("ComputeStatistics(WdStatistic, QVariant&)", params).toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Convert()));
Or call the function directly:
object->dynamicCall("Convert()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ConvertAutoHyphens()));
Or call the function directly:
object->dynamicCall("ConvertAutoHyphens()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(ConvertNumbersToText(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ConvertNumbersToText(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(ConvertVietDoc(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ConvertVietDoc(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(CopyStylesFromTemplate(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("CopyStylesFromTemplate(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&)), object, SLOT(CountNumberedItems(QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... int result = object->dynamicCall("CountNumberedItems(QVariant&, QVariant&)", params).toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, bool, QString, WdLetterStyle, bool, WdLetterheadLocation, double, QString, QString, QString, WdSalutationType, QString, QString, QString, QString, QString, QString, QString, QString, QString, QString, QString, int, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(CreateLetterContent(QString, bool, QString, WdLetterStyle, bool, WdLetterheadLocation, double, QString, QString, QString, WdSalutationType, QString, QString, QString, QString, QString, QString, QString, QString, QString, QString, QString, int, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("CreateLetterContent(QString, bool, QString, WdLetterStyle, bool, WdLetterheadLocation, double, QString, QString, QString, WdSalutationType, QString, QString, QString, QString, QString, QString, QString, QString, QString, QString, QString, int, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(DataForm()));
Or call the function directly:
object->dynamicCall("DataForm()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(DeleteAllComments()));
Or call the function directly:
object->dynamicCall("DeleteAllComments()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(DeleteAllCommentsShown()));
Or call the function directly:
object->dynamicCall("DeleteAllCommentsShown()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(DeleteAllEditableRanges(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("DeleteAllEditableRanges(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(DeleteAllInkAnnotations()));
Or call the function directly:
object->dynamicCall("DeleteAllInkAnnotations()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(DetectLanguage()));
Or call the function directly:
object->dynamicCall("DetectLanguage()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(DowngradeDocument()));
Or call the function directly:
object->dynamicCall("DowngradeDocument()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy2()));
Or call the function directly:
object->dynamicCall("Dummy2()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Dummy4()));
Or call the function directly:
object->dynamicCall("Dummy4()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdEditionType, WdEditionOption, QString, QVariant&)), object, SLOT(EditionOptions(WdEditionType, WdEditionOption, QString, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("EditionOptions(WdEditionType, WdEditionOption, QString, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(EndReview()));
Or call the function directly:
object->dynamicCall("EndReview()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, WdExportFormat, bool, WdExportOptimizeFor, WdExportRange, int, int, WdExportItem, bool, bool, WdExportCreateBookmarks, bool, bool, bool, QVariant&)), object, SLOT(ExportAsFixedFormat(QString, WdExportFormat, bool, WdExportOptimizeFor, WdExportRange, int, int, WdExportItem, bool, bool, WdExportCreateBookmarks, bool, bool, bool, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ExportAsFixedFormat(QString, WdExportFormat, bool, WdExportOptimizeFor, WdExportRange, int, int, WdExportItem, bool, bool, WdExportCreateBookmarks, bool, bool, bool, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(FitToPages()));
Or call the function directly:
object->dynamicCall("FitToPages()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(FollowHyperlink(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("FollowHyperlink(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ForwardMailer()));
Or call the function directly:
object->dynamicCall("ForwardMailer()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(FreezeLayout()));
Or call the function directly:
object->dynamicCall("FreezeLayout()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(GetCrossReferenceItems(QVariant&)));
Or call the function directly:
QVariantList params = ... QVariant result = object->dynamicCall("GetCrossReferenceItems(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(GetLetterContent()));
Or call the function directly:
QAxObject * result = object->querySubObject("GetLetterContent()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(GetWorkflowTasks()));
Or call the function directly:
QAxObject * result = object->querySubObject("GetWorkflowTasks()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(GetWorkflowTemplates()));
Or call the function directly:
QAxObject * result = object->querySubObject("GetWorkflowTemplates()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(GoTo(QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("GoTo(QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(LockServerFile()));
Or call the function directly:
object->dynamicCall("LockServerFile()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(MakeCompatibilityDefault()));
Or call the function directly:
object->dynamicCall("MakeCompatibilityDefault()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ManualHyphenation()));
Or call the function directly:
object->dynamicCall("ManualHyphenation()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(Merge(QString, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Merge(QString, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(Merge2000(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Merge2000(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Post()));
Or call the function directly:
object->dynamicCall("Post()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(PresentIt()));
Or call the function directly:
object->dynamicCall("PresentIt()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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&)), object, SLOT(PrintOut(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 = ... object->dynamicCall("PrintOut(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 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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&)), object, SLOT(PrintOut2000(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 = ... object->dynamicCall("PrintOut2000(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 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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&)), object, SLOT(PrintOutOld(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("PrintOutOld(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(PrintPreview()));
Or call the function directly:
object->dynamicCall("PrintPreview()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdProtectionType, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(Protect(WdProtectionType, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Protect(WdProtectionType, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdProtectionType, QVariant&, QVariant&)), object, SLOT(Protect2002(WdProtectionType, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Protect2002(WdProtectionType, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(RecheckSmartTags()));
Or call the function directly:
object->dynamicCall("RecheckSmartTags()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(Redo(QVariant&)));
Or call the function directly:
QVariantList params = ... bool result = object->dynamicCall("Redo(QVariant&)", params).toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(RejectAllRevisions()));
Or call the function directly:
object->dynamicCall("RejectAllRevisions()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(RejectAllRevisionsShown()));
Or call the function directly:
object->dynamicCall("RejectAllRevisionsShown()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Reload()));
Or call the function directly:
object->dynamicCall("Reload()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(Office::MsoEncoding)), object, SLOT(ReloadAs(Office::MsoEncoding)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ReloadAs(Office::MsoEncoding)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdRemoveDocInfoType)), object, SLOT(RemoveDocumentInformation(WdRemoveDocInfoType)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("RemoveDocumentInformation(WdRemoveDocInfoType)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(RemoveDocumentWorkspaceHeader(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("RemoveDocumentWorkspaceHeader(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(RemoveLockedStyles()));
Or call the function directly:
object->dynamicCall("RemoveLockedStyles()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(RemoveNumbers(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("RemoveNumbers(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(RemoveSmartTags()));
Or call the function directly:
object->dynamicCall("RemoveSmartTags()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(RemoveTheme()));
Or call the function directly:
object->dynamicCall("RemoveTheme()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Repaginate()));
Or call the function directly:
object->dynamicCall("Repaginate()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Reply()));
Or call the function directly:
object->dynamicCall("Reply()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ReplyAll()));
Or call the function directly:
object->dynamicCall("ReplyAll()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(ReplyWithChanges(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("ReplyWithChanges(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ResetFormFields()));
Or call the function directly:
object->dynamicCall("ResetFormFields()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ReturnToLastReadPosition()));
Or call the function directly:
int result = object->dynamicCall("ReturnToLastReadPosition()").toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Route()));
Or call the function directly:
object->dynamicCall("Route()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdAutoMacros)), object, SLOT(RunAutoMacro(WdAutoMacros)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("RunAutoMacro(WdAutoMacros)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&)), object, SLOT(RunLetterWizard(QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("RunLetterWizard(QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Save()));
Or call the function directly:
object->dynamicCall("Save()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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&)), object, SLOT(SaveAs(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SaveAs(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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&)), object, SLOT(SaveAs2(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SaveAs2(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(SaveAs2000(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SaveAs2000(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SaveAsQuickStyleSet(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SaveAsQuickStyleSet(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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&)), object, SLOT(SaveCopyAs(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SaveCopyAs(QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(Select()));
Or call the function directly:
object->dynamicCall("Select()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(SelectAllEditableRanges(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SelectAllEditableRanges(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SelectContentControlsByTag(QString)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("SelectContentControlsByTag(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SelectContentControlsByTitle(QString)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("SelectContentControlsByTitle(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*)), object, SLOT(SelectLinkedControls(IDispatch*)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("SelectLinkedControls(IDispatch*)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QString, bool)), object, SLOT(SelectNodes(QString, QString, bool)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("SelectNodes(QString, QString, bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QString, bool)), object, SLOT(SelectSingleNode(QString, QString, bool)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("SelectSingleNode(QString, QString, bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*)), object, SLOT(SelectUnlinkedControls(IDispatch*)));
Or call the function directly:
QVariantList params = ... QAxObject * result = object->querySubObject("SelectUnlinkedControls(IDispatch*)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QVariant&)), object, SLOT(SendFax(QString, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SendFax(QString, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&)), object, SLOT(SendFaxOverInternet(QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SendFaxOverInternet(QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&, QVariant&, QVariant&)), object, SLOT(SendForReview(QVariant&, QVariant&, QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SendForReview(QVariant&, QVariant&, QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(SendMail()));
Or call the function directly:
object->dynamicCall("SendMail()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QVariant&)), object, SLOT(SendMailer(QVariant&, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SendMailer(QVariant&, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, QString)), object, SLOT(SetActiveWritingStyle(QVariant&, QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetActiveWritingStyle(QVariant&, QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(SetAttachedTemplate(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAttachedTemplate(QVariant)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetAutoFormatOverride(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAutoFormatOverride(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetAutoHyphenation(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetAutoHyphenation(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*)), object, SLOT(SetBackground(IDispatch*)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetBackground(IDispatch*)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetChartDataPointTrack(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetChartDataPointTrack(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant)), object, SLOT(SetClickAndTypeParagraphStyle(QVariant)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetClickAndTypeParagraphStyle(QVariant)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdCompatibility, bool)), object, SLOT(SetCompatibility(WdCompatibility, bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCompatibility(WdCompatibility, bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetCompatibilityMode(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetCompatibilityMode(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetConsecutiveHyphensLimit(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetConsecutiveHyphensLimit(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetDefaultTabStop(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDefaultTabStop(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&, bool)), object, SLOT(SetDefaultTableStyle(QVariant&, bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDefaultTableStyle(QVariant&, bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetDefaultTargetFrame(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDefaultTargetFrame(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDisableFeatures(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisableFeatures(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdDisableFeaturesIntroducedAfter)), object, SLOT(SetDisableFeaturesIntroducedAfter(WdDisableFeaturesIntroducedAfter)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDisableFeaturesIntroducedAfter(WdDisableFeaturesIntroducedAfter)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetDoNotEmbedSystemFonts(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetDoNotEmbedSystemFonts(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEmbedLinguisticData(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEmbedLinguisticData(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEmbedSmartTags(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEmbedSmartTags(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEmbedTrueTypeFonts(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEmbedTrueTypeFonts(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetEncryptionProvider(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEncryptionProvider(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetEnforceStyle(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetEnforceStyle(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdFarEastLineBreakLanguageID)), object, SLOT(SetFarEastLineBreakLanguage(WdFarEastLineBreakLanguageID)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFarEastLineBreakLanguage(WdFarEastLineBreakLanguageID)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdFarEastLineBreakLevel)), object, SLOT(SetFarEastLineBreakLevel(WdFarEastLineBreakLevel)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFarEastLineBreakLevel(WdFarEastLineBreakLevel)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFinal(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFinal(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFormattingShowClear(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormattingShowClear(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdShowFilter)), object, SLOT(SetFormattingShowFilter(WdShowFilter)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormattingShowFilter(WdShowFilter)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFormattingShowFont(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormattingShowFont(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFormattingShowNextLevel(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormattingShowNextLevel(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFormattingShowNumbering(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormattingShowNumbering(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFormattingShowParagraph(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormattingShowParagraph(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetFormattingShowUserStyleName(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetFormattingShowUserStyleName(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetGrammarChecked(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGrammarChecked(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetGridDistanceHorizontal(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGridDistanceHorizontal(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetGridDistanceVertical(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGridDistanceVertical(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetGridOriginFromMargin(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGridOriginFromMargin(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetGridOriginHorizontal(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGridOriginHorizontal(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetGridOriginVertical(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGridOriginVertical(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetGridSpaceBetweenHorizontalLines(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGridSpaceBetweenHorizontalLines(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetGridSpaceBetweenVerticalLines(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetGridSpaceBetweenVerticalLines(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetHasMailer(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetHasMailer(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetHasRoutingSlip(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetHasRoutingSlip(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetHyphenateCaps(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetHyphenateCaps(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetHyphenationZone(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetHyphenationZone(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdJustificationMode)), object, SLOT(SetJustificationMode(WdJustificationMode)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetJustificationMode(WdJustificationMode)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetKerningByAlgorithm(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetKerningByAlgorithm(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdDocumentKind)), object, SLOT(SetKind(WdDocumentKind)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetKind(WdDocumentKind)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetLanguageDetected(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetLanguageDetected(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(SetLetterContent(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetLetterContent(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetLockQuickStyleSet(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetLockQuickStyleSet(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetLockTheme(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetLockTheme(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetNoLineBreakAfter(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetNoLineBreakAfter(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetNoLineBreakBefore(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetNoLineBreakBefore(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdOMathBreakBin)), object, SLOT(SetOMathBreakBin(WdOMathBreakBin)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathBreakBin(WdOMathBreakBin)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdOMathBreakSub)), object, SLOT(SetOMathBreakSub(WdOMathBreakSub)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathBreakSub(WdOMathBreakSub)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetOMathFontName(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathFontName(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetOMathIntSubSupLim(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathIntSubSupLim(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdOMathJc)), object, SLOT(SetOMathJc(WdOMathJc)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathJc(WdOMathJc)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetOMathLeftMargin(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathLeftMargin(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetOMathNarySupSubLim(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathNarySupSubLim(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetOMathRightMargin(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathRightMargin(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetOMathSmallFrac(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathSmallFrac(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(double)), object, SLOT(SetOMathWrap(double)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOMathWrap(double)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetOptimizeForWord97(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetOptimizeForWord97(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(IDispatch*)), object, SLOT(SetPageSetup(IDispatch*)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPageSetup(IDispatch*)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetPassword(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPassword(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, QString, int, QVariant&)), object, SLOT(SetPasswordEncryptionOptions(QString, QString, int, QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPasswordEncryptionOptions(QString, QString, int, QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetPrintFormsData(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPrintFormsData(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetPrintFractionalWidths(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPrintFractionalWidths(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetPrintPostScriptOverText(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPrintPostScriptOverText(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetPrintRevisions(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetPrintRevisions(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetReadOnlyRecommended(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetReadOnlyRecommended(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetReadingLayoutSizeX(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetReadingLayoutSizeX(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetReadingLayoutSizeY(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetReadingLayoutSizeY(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetReadingModeLayoutFrozen(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetReadingModeLayoutFrozen(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetRemoveDateAndTime(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetRemoveDateAndTime(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetRemovePersonalInformation(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetRemovePersonalInformation(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(Office::MsoEncoding)), object, SLOT(SetSaveEncoding(Office::MsoEncoding)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSaveEncoding(Office::MsoEncoding)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetSaveFormsData(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSaveFormsData(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetSaveSubsetFonts(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSaveSubsetFonts(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetSaved(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSaved(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowGrammaticalErrors(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowGrammaticalErrors(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowRevisions(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowRevisions(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowSpellingErrors(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowSpellingErrors(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetShowSummary(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetShowSummary(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetSmartTagsAsXMLProps(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSmartTagsAsXMLProps(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetSnapToGrid(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSnapToGrid(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetSnapToShapes(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSnapToShapes(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetSpellingChecked(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSpellingChecked(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdStyleSort)), object, SLOT(SetStyleSortMethod(WdStyleSort)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetStyleSortMethod(WdStyleSort)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(int)), object, SLOT(SetSummaryLength(int)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSummaryLength(int)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdSummaryMode)), object, SLOT(SetSummaryViewMode(WdSummaryMode)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetSummaryViewMode(WdSummaryMode)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(Office::MsoEncoding)), object, SLOT(SetTextEncoding(Office::MsoEncoding)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTextEncoding(Office::MsoEncoding)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(WdLineEndingType)), object, SLOT(SetTextLineEnding(WdLineEndingType)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTextLineEnding(WdLineEndingType)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetTrackFormatting(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTrackFormatting(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetTrackMoves(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTrackMoves(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetTrackRevisions(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetTrackRevisions(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetUpdateStylesOnOpen(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetUpdateStylesOnOpen(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetUseMathDefaults(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetUseMathDefaults(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetWritePassword(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetWritePassword(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetXMLHideNamespaces(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetXMLHideNamespaces(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetXMLSaveDataOnly(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetXMLSaveDataOnly(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(SetXMLSaveThroughXSLT(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetXMLSaveThroughXSLT(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetXMLShowAdvancedErrors(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetXMLShowAdvancedErrors(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(bool)), object, SLOT(SetXMLUseXSLTWhenSaving(bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("SetXMLUseXSLTWhenSaving(bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ToggleFormsDesign()));
Or call the function directly:
object->dynamicCall("ToggleFormsDesign()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString, bool)), object, SLOT(TransformDocument(QString, bool)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("TransformDocument(QString, bool)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(Undo(QVariant&)));
Or call the function directly:
QVariantList params = ... bool result = object->dynamicCall("Undo(QVariant&)", params).toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(UndoClear()));
Or call the function directly:
object->dynamicCall("UndoClear()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(UnfreezeLayout()));
Or call the function directly:
object->dynamicCall("UnfreezeLayout()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QVariant&)), object, SLOT(Unprotect(QVariant&)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("Unprotect(QVariant&)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(UpdateStyles()));
Or call the function directly:
object->dynamicCall("UpdateStyles()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(UpdateSummaryProperties()));
Or call the function directly:
object->dynamicCall("UpdateSummaryProperties()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ViewCode()));
Or call the function directly:
object->dynamicCall("ViewCode()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(ViewPropertyBrowser()));
Or call the function directly:
object->dynamicCall("ViewPropertyBrowser()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal()), object, SLOT(WebPagePreview()));
Or call the function directly:
object->dynamicCall("WebPagePreview()");
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(sblt(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("sblt(QString)", params);
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Connect a signal to this slot:
QObject::connect(sender, SIGNAL(someSignal(QString)), object, SLOT(set_CodeName(QString)));
Or call the function directly:
QVariantList params = ... object->dynamicCall("set_CodeName(QString)", params);
Connect a slot to this signal:
QObject::connect(object, SIGNAL(BuildingBlockInsert(IDispatch*, QString, QString, QString, QString)), receiver, SLOT(someSlot(IDispatch*, QString, QString, QString, QString)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(Close()), receiver, SLOT(someSlot()));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(ContentControlAfterAdd(IDispatch*, bool)), receiver, SLOT(someSlot(IDispatch*, bool)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(ContentControlBeforeContentUpdate(IDispatch*, QString&)), receiver, SLOT(someSlot(IDispatch*, QString&)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(ContentControlBeforeDelete(IDispatch*, bool)), receiver, SLOT(someSlot(IDispatch*, bool)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(ContentControlBeforeStoreUpdate(IDispatch*, QString&)), receiver, SLOT(someSlot(IDispatch*, QString&)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(ContentControlOnEnter(IDispatch*)), receiver, SLOT(someSlot(IDispatch*)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(ContentControlOnExit(IDispatch*, bool&)), receiver, SLOT(someSlot(IDispatch*, bool&)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(New()), receiver, SLOT(someSlot()));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(Open()), receiver, SLOT(someSlot()));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(Sync(Office::MsoSyncEventType)), receiver, SLOT(someSlot(Office::MsoSyncEventType)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(XMLAfterInsert(IDispatch*, bool)), receiver, SLOT(someSlot(IDispatch*, bool)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(XMLBeforeDelete(IDispatch*, IDispatch*, bool)), receiver, SLOT(someSlot(IDispatch*, IDispatch*, bool)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(exception(int, QString, QString, QString)), receiver, SLOT(someSlot(int, QString, QString, QString)));
Connect a slot to this signal:
QObject::connect(object, SIGNAL(propertyChanged(QString)), receiver, SLOT(someSlot(QString)));
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 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("ActiveTheme").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("ActiveThemeDisplayName").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ActiveWindow").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Application").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("AttachedTemplate").toVariant();Set this property' value using QObject::setProperty:
QVariant newValue = ... object->setProperty("AttachedTemplate", newValue);Or using the SetAttachedTemplate slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("AutoFormatOverride").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("AutoFormatOverride", newValue);Or using the SetAutoFormatOverride slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("AutoHyphenation").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("AutoHyphenation", newValue);Or using the SetAutoHyphenation slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Background").toIDispatch*();Set this property' value using QObject::setProperty:
IDispatch* newValue = ... object->setProperty("Background", newValue);Or using the SetBackground slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Bibliography").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Bookmarks").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Broadcast").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("BuiltInDocumentProperties").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Characters").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ChartDataPointTrack").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ChartDataPointTrack", newValue);Or using the SetChartDataPointTrack slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ChildNodeSuggestions").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("ClickAndTypeParagraphStyle").toVariant();Set this property' value using QObject::setProperty:
QVariant newValue = ... object->setProperty("ClickAndTypeParagraphStyle", newValue);Or using the SetClickAndTypeParagraphStyle slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("CoAuthoring").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("CodeName").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("CommandBars").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Comments").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("CompatibilityMode").toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("ConsecutiveHyphensLimit").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("ConsecutiveHyphensLimit", newValue);Or using the SetConsecutiveHyphensLimit slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Container").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Content").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ContentControls").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ContentTypeProperties").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("Creator").toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("CurrentRsid").toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("CustomDocumentProperties").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("CustomXMLParts").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("DefaultTabStop").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("DefaultTabStop", newValue);Or using the SetDefaultTabStop slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QVariant val = object->property("DefaultTableStyle").toVariant();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("DefaultTargetFrame").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("DefaultTargetFrame", newValue);Or using the SetDefaultTargetFrame slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DisableFeatures").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DisableFeatures", newValue);Or using the SetDisableFeatures slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("DisableFeaturesIntroducedAfter").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("DisableFeaturesIntroducedAfter", newValue);Or using the SetDisableFeaturesIntroducedAfter slot.
See also WdDisableFeaturesIntroducedAfter.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("DoNotEmbedSystemFonts").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("DoNotEmbedSystemFonts", newValue);Or using the SetDoNotEmbedSystemFonts slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("DocID").toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("DocumentInspectors").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("DocumentLibraryVersions").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("DocumentTheme").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Email").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EmbedLinguisticData").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EmbedLinguisticData", newValue);Or using the SetEmbedLinguisticData slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EmbedSmartTags").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EmbedSmartTags", newValue);Or using the SetEmbedSmartTags slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EmbedTrueTypeFonts").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EmbedTrueTypeFonts", newValue);Or using the SetEmbedTrueTypeFonts slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("EncryptionProvider").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("EncryptionProvider", newValue);Or using the SetEncryptionProvider slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Endnotes").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("EnforceStyle").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("EnforceStyle", newValue);Or using the SetEnforceStyle slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Envelope").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("FarEastLineBreakLanguage").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("FarEastLineBreakLanguage", newValue);Or using the SetFarEastLineBreakLanguage slot.
See also WdFarEastLineBreakLanguageID.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("FarEastLineBreakLevel").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("FarEastLineBreakLevel", newValue);Or using the SetFarEastLineBreakLevel slot.
See also WdFarEastLineBreakLevel.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Fields").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("Final").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("Final", newValue);Or using the SetFinal slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Footnotes").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("FormFields").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FormattingShowClear").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("FormattingShowClear", newValue);Or using the SetFormattingShowClear slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("FormattingShowFilter").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("FormattingShowFilter", newValue);Or using the SetFormattingShowFilter slot.
See also WdShowFilter.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FormattingShowFont").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("FormattingShowFont", newValue);Or using the SetFormattingShowFont slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FormattingShowNextLevel").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("FormattingShowNextLevel", newValue);Or using the SetFormattingShowNextLevel slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FormattingShowNumbering").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("FormattingShowNumbering", newValue);Or using the SetFormattingShowNumbering slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FormattingShowParagraph").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("FormattingShowParagraph", newValue);Or using the SetFormattingShowParagraph slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FormattingShowUserStyleName").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("FormattingShowUserStyleName", newValue);Or using the SetFormattingShowUserStyleName slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("FormsDesign").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Frames").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Frameset").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("FullName").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("GrammarChecked").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("GrammarChecked", newValue);Or using the SetGrammarChecked slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("GrammaticalErrors").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("GridDistanceHorizontal").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("GridDistanceHorizontal", newValue);Or using the SetGridDistanceHorizontal slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("GridDistanceVertical").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("GridDistanceVertical", newValue);Or using the SetGridDistanceVertical slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("GridOriginFromMargin").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("GridOriginFromMargin", newValue);Or using the SetGridOriginFromMargin slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("GridOriginHorizontal").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("GridOriginHorizontal", newValue);Or using the SetGridOriginHorizontal slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("GridOriginVertical").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("GridOriginVertical", newValue);Or using the SetGridOriginVertical slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("GridSpaceBetweenHorizontalLines").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("GridSpaceBetweenHorizontalLines", newValue);Or using the SetGridSpaceBetweenHorizontalLines slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("GridSpaceBetweenVerticalLines").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("GridSpaceBetweenVerticalLines", newValue);Or using the SetGridSpaceBetweenVerticalLines slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("HTMLDivisions").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("HTMLProject").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("HasMailer").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("HasMailer", newValue);Or using the SetHasMailer slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("HasPassword").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("HasRoutingSlip").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("HasRoutingSlip", newValue);Or using the SetHasRoutingSlip slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("HasVBProject").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Hyperlinks").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("HyphenateCaps").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("HyphenateCaps", newValue);Or using the SetHyphenateCaps slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("HyphenationZone").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("HyphenationZone", newValue);Or using the SetHyphenationZone slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Indexes").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("InlineShapes").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("IsInAutosave").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("IsMasterDocument").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("IsSubdocument").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("JustificationMode").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("JustificationMode", newValue);Or using the SetJustificationMode slot.
See also WdJustificationMode.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("KerningByAlgorithm").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("KerningByAlgorithm", newValue);Or using the SetKerningByAlgorithm slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("Kind").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("Kind", newValue);Or using the SetKind slot.
See also WdDocumentKind.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("LanguageDetected").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("LanguageDetected", newValue);Or using the SetLanguageDetected slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ListParagraphs").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ListTemplates").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Lists").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("LockQuickStyleSet").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("LockQuickStyleSet", newValue);Or using the SetLockQuickStyleSet slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("LockTheme").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("LockTheme", newValue);Or using the SetLockTheme slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("MailEnvelope").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("MailMerge").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Mailer").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Name").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("NoLineBreakAfter").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("NoLineBreakAfter", newValue);Or using the SetNoLineBreakAfter slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("NoLineBreakBefore").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("NoLineBreakBefore", newValue);Or using the SetNoLineBreakBefore slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("OMathBreakBin").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("OMathBreakBin", newValue);Or using the SetOMathBreakBin slot.
See also WdOMathBreakBin.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("OMathBreakSub").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("OMathBreakSub", newValue);Or using the SetOMathBreakSub slot.
See also WdOMathBreakSub.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OMathFontName").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("OMathFontName", newValue);Or using the SetOMathFontName slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("OMathIntSubSupLim").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("OMathIntSubSupLim", newValue);Or using the SetOMathIntSubSupLim slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("OMathJc").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("OMathJc", newValue);Or using the SetOMathJc slot.
See also WdOMathJc.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("OMathLeftMargin").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("OMathLeftMargin", newValue);Or using the SetOMathLeftMargin slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("OMathNarySupSubLim").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("OMathNarySupSubLim", newValue);Or using the SetOMathNarySupSubLim slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("OMathRightMargin").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("OMathRightMargin", newValue);Or using the SetOMathRightMargin slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("OMathSmallFrac").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("OMathSmallFrac", newValue);Or using the SetOMathSmallFrac slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
double val = object->property("OMathWrap").toDouble();Set this property' value using QObject::setProperty:
double newValue = ... object->setProperty("OMathWrap", newValue);Or using the SetOMathWrap slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("OMaths").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
This property is of an unsupported type.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("OptimizeForWord97").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("OptimizeForWord97", newValue);Or using the SetOptimizeForWord97 slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("OriginalDocumentTitle").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("PageSetup").toIDispatch*();Set this property' value using QObject::setProperty:
IDispatch* newValue = ... object->setProperty("PageSetup", newValue);Or using the SetPageSetup slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Paragraphs").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Parent").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Password").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("Password", newValue);Or using the SetPassword slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("PasswordEncryptionAlgorithm").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("PasswordEncryptionFileProperties").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("PasswordEncryptionKeyLength").toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("PasswordEncryptionProvider").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("Path").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Permission").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("PrintFormsData").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("PrintFormsData", newValue);Or using the SetPrintFormsData slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("PrintFractionalWidths").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("PrintFractionalWidths", newValue);Or using the SetPrintFractionalWidths slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("PrintPostScriptOverText").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("PrintPostScriptOverText", newValue);Or using the SetPrintPostScriptOverText slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("PrintRevisions").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("PrintRevisions", newValue);Or using the SetPrintRevisions slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("ProtectionType").toInt();
See also WdProtectionType.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ReadOnly").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ReadOnlyRecommended").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ReadOnlyRecommended", newValue);Or using the SetReadOnlyRecommended slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ReadabilityStatistics").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("ReadingLayoutSizeX").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("ReadingLayoutSizeX", newValue);Or using the SetReadingLayoutSizeX slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("ReadingLayoutSizeY").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("ReadingLayoutSizeY", newValue);Or using the SetReadingLayoutSizeY slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ReadingModeLayoutFrozen").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ReadingModeLayoutFrozen", newValue);Or using the SetReadingModeLayoutFrozen slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("RemoveDateAndTime").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("RemoveDateAndTime", newValue);Or using the SetRemoveDateAndTime slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("RemovePersonalInformation").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("RemovePersonalInformation", newValue);Or using the SetRemovePersonalInformation slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Research").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("RevisedDocumentTitle").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Revisions").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("Routed").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("RoutingSlip").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
This property is of an unsupported type. Set this property' value using QObject::setProperty:
Office::MsoEncoding newValue = ... object->setProperty("SaveEncoding", newValue);Or using the SetSaveEncoding slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("SaveFormat").toInt();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("SaveFormsData").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("SaveFormsData", newValue);Or using the SetSaveFormsData slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("SaveSubsetFonts").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("SaveSubsetFonts", newValue);Or using the SetSaveSubsetFonts slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("Saved").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("Saved", newValue);Or using the SetSaved slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Scripts").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Sections").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Sentences").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("ServerPolicy").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Shapes").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("SharedWorkspace").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowGrammaticalErrors").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowGrammaticalErrors", newValue);Or using the SetShowGrammaticalErrors slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowRevisions").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowRevisions", newValue);Or using the SetShowRevisions slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowSpellingErrors").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowSpellingErrors", newValue);Or using the SetShowSpellingErrors slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("ShowSummary").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("ShowSummary", newValue);Or using the SetShowSummary slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Signatures").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("SmartDocument").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("SmartTags").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("SmartTagsAsXMLProps").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("SmartTagsAsXMLProps", newValue);Or using the SetSmartTagsAsXMLProps slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("SnapToGrid").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("SnapToGrid", newValue);Or using the SetSnapToGrid slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("SnapToShapes").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("SnapToShapes", newValue);Or using the SetSnapToShapes slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("SpellingChecked").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("SpellingChecked", newValue);Or using the SetSpellingChecked slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("SpellingErrors").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("StoryRanges").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("StyleSheets").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("StyleSortMethod").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("StyleSortMethod", newValue);Or using the SetStyleSortMethod slot.
See also WdStyleSort.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Styles").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Subdocuments").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("SummaryLength").toInt();Set this property' value using QObject::setProperty:
int newValue = ... object->setProperty("SummaryLength", newValue);Or using the SetSummaryLength slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("SummaryViewMode").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("SummaryViewMode", newValue);Or using the SetSummaryViewMode slot.
See also WdSummaryMode.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Sync").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Tables").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("TablesOfAuthorities").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("TablesOfAuthoritiesCategories").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("TablesOfContents").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("TablesOfFigures").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
This property is of an unsupported type. Set this property' value using QObject::setProperty:
Office::MsoEncoding newValue = ... object->setProperty("TextEncoding", newValue);Or using the SetTextEncoding slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("TextLineEnding").toInt();Set this property' value using QObject::setProperty:
int newValue = ... // string representation of values also supported object->setProperty("TextLineEnding", newValue);Or using the SetTextLineEnding slot.
See also WdLineEndingType.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("TrackFormatting").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("TrackFormatting", newValue);Or using the SetTrackFormatting slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("TrackMoves").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("TrackMoves", newValue);Or using the SetTrackMoves slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("TrackRevisions").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("TrackRevisions", newValue);Or using the SetTrackRevisions slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
int val = object->property("Type").toInt();
See also WdDocumentType.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("UpdateStylesOnOpen").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("UpdateStylesOnOpen", newValue);Or using the SetUpdateStylesOnOpen slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("UseMathDefaults").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("UseMathDefaults", newValue);Or using the SetUseMathDefaults slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("VBASigned").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("VBProject").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Variables").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Versions").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("WebOptions").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Windows").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("WordOpenXML").toString();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("Words").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("WritePassword").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("WritePassword", newValue);Or using the SetWritePassword slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("WriteReserved").toBool();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("XMLHideNamespaces").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("XMLHideNamespaces", newValue);Or using the SetXMLHideNamespaces slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("XMLNodes").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("XMLSaveDataOnly").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("XMLSaveDataOnly", newValue);Or using the SetXMLSaveDataOnly slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("XMLSaveThroughXSLT").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("XMLSaveThroughXSLT", newValue);Or using the SetXMLSaveThroughXSLT slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("XMLSchemaReferences").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
IDispatch* val = object->property("XMLSchemaViolations").toIDispatch*();
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("XMLShowAdvancedErrors").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("XMLShowAdvancedErrors", newValue);Or using the SetXMLShowAdvancedErrors slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
bool val = object->property("XMLUseXSLTWhenSaving").toBool();Set this property' value using QObject::setProperty:
bool newValue = ... object->setProperty("XMLUseXSLTWhenSaving", newValue);Or using the SetXMLUseXSLTWhenSaving slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.CHM.
Read this property's value using QObject::property:
QString val = object->property("_CodeName").toString();Set this property' value using QObject::setProperty:
QString newValue = ... object->setProperty("_CodeName", newValue);Or using the set_CodeName slot.
For more information, see help context 158007297 in C:\Program Files\Microsoft Office 15\Root\Office15\VBAWD10.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.