@types/office-js 1.0.340 → 1.0.342
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js/README.md +1 -1
- office-js/index.d.ts +323 -238
- office-js/package.json +2 -2
office-js/index.d.ts
CHANGED
|
@@ -1042,7 +1042,12 @@ declare namespace Office {
|
|
|
1042
1042
|
*
|
|
1043
1043
|
* @remarks
|
|
1044
1044
|
*
|
|
1045
|
-
*
|
|
1045
|
+
* For information on support in Excel, Word, and PowerPoint, see
|
|
1046
|
+
* {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/add-in-commands-requirement-sets | Add-in commands requirement sets}.
|
|
1047
|
+
*
|
|
1048
|
+
* The following outlines support information for Outlook.
|
|
1049
|
+
*
|
|
1050
|
+
* [Api set: Mailbox 1.3]
|
|
1046
1051
|
*
|
|
1047
1052
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: **restricted**
|
|
1048
1053
|
*
|
|
@@ -1054,83 +1059,102 @@ declare namespace Office {
|
|
|
1054
1059
|
*
|
|
1055
1060
|
* @remarks
|
|
1056
1061
|
*
|
|
1057
|
-
*
|
|
1062
|
+
* The following outlines support information for Outlook.
|
|
1063
|
+
*
|
|
1064
|
+
* [Api set: Mailbox 1.3]
|
|
1065
|
+
*
|
|
1066
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **restricted**
|
|
1067
|
+
*
|
|
1068
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
1058
1069
|
*/
|
|
1059
1070
|
source:Source;
|
|
1060
|
-
|
|
1061
1071
|
/**
|
|
1062
1072
|
* Indicates that the add-in has completed processing and will automatically be closed.
|
|
1063
1073
|
*
|
|
1064
1074
|
* This method must be called at the end of a function which was invoked by the following:
|
|
1065
1075
|
*
|
|
1066
|
-
* - A function command button (that is, an add-in command defined with an
|
|
1076
|
+
* - A function command button (that is, an add-in command defined with an **\<Action\>** element, where the `xsi:type` attribute is set to `ExecuteFunction`).
|
|
1067
1077
|
*
|
|
1068
|
-
* - An event defined in the {@link https://learn.microsoft.com/javascript/api/manifest/extensionpoint#launchevent | LaunchEvent extension point}.
|
|
1069
|
-
* For example, an `OnMessageSend` event.
|
|
1070
|
-
*
|
|
1071
1078
|
* - An {@link https://learn.microsoft.com/javascript/api/manifest/event | event} defined in the
|
|
1072
|
-
* {@link https://learn.microsoft.com/javascript/api/manifest/extensionpoint#events | Events extension point}
|
|
1079
|
+
* {@link https://learn.microsoft.com/javascript/api/manifest/extensionpoint#events | Events extension point} of an on-send add-in in Outlook.
|
|
1080
|
+
* For example, an `ItemSend` event.
|
|
1073
1081
|
*
|
|
1074
1082
|
* @remarks
|
|
1075
1083
|
*
|
|
1084
|
+
* The following outlines support information for Outlook.
|
|
1085
|
+
*
|
|
1076
1086
|
* [Api set: Mailbox 1.3]
|
|
1077
|
-
*
|
|
1087
|
+
*
|
|
1078
1088
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **restricted**
|
|
1079
1089
|
*
|
|
1080
1090
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
1081
1091
|
*
|
|
1082
|
-
* **
|
|
1092
|
+
* **Important**: The `options` parameter only applies to Outlook add-ins that implement the
|
|
1093
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-on-send-addins | on-send feature}. It was introduced in Mailbox 1.8.
|
|
1083
1094
|
*
|
|
1084
|
-
* @param options Optional. An object that specifies behavior
|
|
1095
|
+
* @param options Optional. An object that specifies the behavior of an on-send add-in in Outlook when it completes processing an `ItemSend` event.
|
|
1085
1096
|
*/
|
|
1086
1097
|
completed(options?: EventCompletedOptions): void;
|
|
1087
1098
|
}
|
|
1088
|
-
|
|
1089
1099
|
/**
|
|
1090
|
-
* Specifies the behavior
|
|
1100
|
+
* Specifies the behavior of an {@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-on-send-addins | on-send} add-in in Outlook
|
|
1101
|
+
* when it completes processing an `ItemSend` event.
|
|
1102
|
+
*
|
|
1103
|
+
* @remarks
|
|
1104
|
+
*
|
|
1105
|
+
* [Api set: Mailbox 1.8]
|
|
1106
|
+
*
|
|
1107
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **restricted**
|
|
1108
|
+
*
|
|
1109
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
1091
1110
|
*/
|
|
1092
1111
|
interface EventCompletedOptions {
|
|
1093
1112
|
/**
|
|
1094
|
-
* When the {@link https://learn.microsoft.com/javascript/api/office/office.addincommands.event#office-office-addincommands-event-completed-member(1) | completed method}
|
|
1095
|
-
*
|
|
1096
|
-
* For example, an add-in that handles the `
|
|
1097
|
-
*
|
|
1098
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/smart-alerts-onmessagesend-walkthrough | Smart Alerts walkthrough}.
|
|
1099
|
-
*
|
|
1113
|
+
* When you use the {@link https://learn.microsoft.com/javascript/api/office/office.addincommands.event#office-office-addincommands-event-completed-member(1) | completed method}
|
|
1114
|
+
* to signal completion of an event handler, this value indicates if the handled event should continue execution or be canceled.
|
|
1115
|
+
* For example, an on-send add-in that handles the `ItemSend` event can set `allowEvent` to `false` to cancel the sending of a message.
|
|
1116
|
+
*
|
|
1100
1117
|
* @remarks
|
|
1101
1118
|
*
|
|
1102
1119
|
* [Api set: Mailbox 1.8]
|
|
1103
|
-
*
|
|
1104
|
-
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: **restricted**
|
|
1105
|
-
*
|
|
1106
|
-
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
1107
|
-
*/
|
|
1108
|
-
allowEvent: boolean;
|
|
1109
|
-
|
|
1110
|
-
/**
|
|
1111
|
-
* When the {@link https://learn.microsoft.com/javascript/api/office/office.addincommands.event#office-office-addincommands-event-completed-member(1) | completed method}
|
|
1112
|
-
* is used to signal completion of an event handler and if the `allowEvent` option is set to `false`, this value sets the error message
|
|
1113
|
-
* that will be displayed to the user. For an example, see the
|
|
1114
|
-
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/smart-alerts-onmessagesend-walkthrough | Smart Alerts walkthrough}.
|
|
1115
1120
|
*
|
|
1116
|
-
* @remarks
|
|
1117
|
-
*
|
|
1118
|
-
* [Api set: Mailbox 1.12]
|
|
1119
|
-
*
|
|
1120
1121
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: **restricted**
|
|
1121
1122
|
*
|
|
1122
1123
|
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
1123
1124
|
*/
|
|
1124
|
-
|
|
1125
|
+
allowEvent: boolean;
|
|
1125
1126
|
}
|
|
1126
|
-
|
|
1127
1127
|
/**
|
|
1128
1128
|
* Encapsulates source data for add-in events.
|
|
1129
|
+
*
|
|
1130
|
+
* @remarks
|
|
1131
|
+
*
|
|
1132
|
+
* For information on support in Excel, Word, and PowerPoint, see
|
|
1133
|
+
* {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/add-in-commands-requirement-sets | Add-in commands requirement sets}.
|
|
1134
|
+
*
|
|
1135
|
+
* The following outlines support information for Outlook.
|
|
1136
|
+
*
|
|
1137
|
+
* [Api set: Mailbox 1.3]
|
|
1138
|
+
*
|
|
1139
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: **restricted**
|
|
1140
|
+
*
|
|
1141
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
1129
1142
|
*/
|
|
1130
1143
|
interface Source {
|
|
1131
|
-
|
|
1132
1144
|
/**
|
|
1133
1145
|
* The ID of the control that triggered calling this function. The ID comes from the manifest.
|
|
1146
|
+
*
|
|
1147
|
+
* @remarks
|
|
1148
|
+
*
|
|
1149
|
+
* The following outlines support information for Outlook.
|
|
1150
|
+
*
|
|
1151
|
+
* [Api set: Mailbox 1.3]
|
|
1152
|
+
*
|
|
1153
|
+
* See {@link https://learn.microsoft.com/javascript/api/requirement-sets/common/add-in-commands-requirement-sets | Add-in commands requirement sets} for more support information.
|
|
1154
|
+
*
|
|
1155
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: **restricted**
|
|
1156
|
+
*
|
|
1157
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
1134
1158
|
*/
|
|
1135
1159
|
id: string;
|
|
1136
1160
|
}
|
|
@@ -1421,7 +1445,6 @@ declare namespace Office {
|
|
|
1421
1445
|
*/
|
|
1422
1446
|
openBrowserWindow(url: string): void;
|
|
1423
1447
|
}
|
|
1424
|
-
|
|
1425
1448
|
/**
|
|
1426
1449
|
* Provides information about which Requirement Sets are supported in the current environment.
|
|
1427
1450
|
*/
|
|
@@ -1444,7 +1467,6 @@ declare namespace Office {
|
|
|
1444
1467
|
*/
|
|
1445
1468
|
isSetSupported(name: string, minVersionNumber?: number): boolean;
|
|
1446
1469
|
}
|
|
1447
|
-
|
|
1448
1470
|
/**
|
|
1449
1471
|
* Provides options for how a dialog is displayed.
|
|
1450
1472
|
*/
|
|
@@ -1476,7 +1498,6 @@ declare namespace Office {
|
|
|
1476
1498
|
*/
|
|
1477
1499
|
asyncContext?: any
|
|
1478
1500
|
}
|
|
1479
|
-
|
|
1480
1501
|
/**
|
|
1481
1502
|
* The Office Auth namespace, `Office.auth`, provides a method that allows the Office client application to obtain an access token to the add-in's web application.
|
|
1482
1503
|
* Indirectly, this also enables the add-in to access the signed-in user's Microsoft Graph data without requiring the user to sign in a second time.
|
|
@@ -14864,6 +14885,34 @@ declare namespace Office {
|
|
|
14864
14885
|
*/
|
|
14865
14886
|
removeHandlerAsync(eventType: Office.EventType | string, callback?: (asyncResult: Office.AsyncResult<void>) => void): void;
|
|
14866
14887
|
}
|
|
14888
|
+
/**
|
|
14889
|
+
* The `MailboxEvent` object is passed as an argument to the event handler of an add-in that implements
|
|
14890
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/autolaunch | event-based activation}, including
|
|
14891
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/smart-alerts-onmessagesend-walkthrough | Smart Alerts}.
|
|
14892
|
+
* It allows the add-in to signify to the Outlook client that it has completed processing an event.
|
|
14893
|
+
*
|
|
14894
|
+
* @remarks
|
|
14895
|
+
* [Api set: Mailbox 1.10]
|
|
14896
|
+
*
|
|
14897
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **restricted**
|
|
14898
|
+
*
|
|
14899
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
14900
|
+
*/
|
|
14901
|
+
interface MailboxEvent {
|
|
14902
|
+
/**
|
|
14903
|
+
* Indicates that the event-based add-in has completed processing an event.
|
|
14904
|
+
*
|
|
14905
|
+
* @remarks
|
|
14906
|
+
* [Api set: Mailbox 1.10]
|
|
14907
|
+
*
|
|
14908
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level}**: **restricted**
|
|
14909
|
+
*
|
|
14910
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
|
|
14911
|
+
*
|
|
14912
|
+
* @param options - Optional. An object that specifies the behavior of an event-based add-in when it completes processing an event.
|
|
14913
|
+
*/
|
|
14914
|
+
completed(options?: SmartAlertsEventCompletedOptions): void;
|
|
14915
|
+
}
|
|
14867
14916
|
/**
|
|
14868
14917
|
* Represents the categories master list on the mailbox.
|
|
14869
14918
|
*
|
|
@@ -19038,6 +19087,42 @@ declare namespace Office {
|
|
|
19038
19087
|
*/
|
|
19039
19088
|
delegatePermissions: MailboxEnums.DelegatePermissions;
|
|
19040
19089
|
}
|
|
19090
|
+
/**
|
|
19091
|
+
* Specifies the behavior of a {@link https://learn.microsoft.com/office/dev/add-ins/outlook/smart-alerts-onmessagesend-walkthrough | Smart Alerts add-in}
|
|
19092
|
+
* when it completes processing an `OnMessageSend` or `OnAppointmentSend` event.
|
|
19093
|
+
*/
|
|
19094
|
+
interface SmartAlertsEventCompletedOptions {
|
|
19095
|
+
/**
|
|
19096
|
+
* When you use the {@link Office.MailboxEvent.completed | completed method} to signal completion of an event handler,
|
|
19097
|
+
* this value indicates if the handled event should continue execution or be canceled.
|
|
19098
|
+
* For example, an add-in that handles the `OnMessageSend` or `OnAppointmentSend` event can set `allowEvent` to `false` to cancel the sending of an item.
|
|
19099
|
+
* For a complete sample, see the
|
|
19100
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/smart-alerts-onmessagesend-walkthrough | Smart Alerts walkthrough}.
|
|
19101
|
+
*
|
|
19102
|
+
* @remarks
|
|
19103
|
+
*
|
|
19104
|
+
* [Api set: Mailbox 1.12]
|
|
19105
|
+
*
|
|
19106
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: **restricted**
|
|
19107
|
+
*
|
|
19108
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
19109
|
+
*/
|
|
19110
|
+
allowEvent?: boolean;
|
|
19111
|
+
/**
|
|
19112
|
+
* When you use the {@link Office.MailboxEvent.completed | completed method} to signal completion of an event handler and set its `allowEvent` property
|
|
19113
|
+
* to `false`, this property sets the error message that will be displayed to the user. For an example, see the
|
|
19114
|
+
* {@link https://learn.microsoft.com/office/dev/add-ins/outlook/smart-alerts-onmessagesend-walkthrough | Smart Alerts walkthrough}.
|
|
19115
|
+
*
|
|
19116
|
+
* @remarks
|
|
19117
|
+
*
|
|
19118
|
+
* [Api set: Mailbox 1.12]
|
|
19119
|
+
*
|
|
19120
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: **restricted**
|
|
19121
|
+
*
|
|
19122
|
+
* **{@link https://learn.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
|
|
19123
|
+
*/
|
|
19124
|
+
errorMessage?: string;
|
|
19125
|
+
}
|
|
19041
19126
|
/**
|
|
19042
19127
|
* Provides methods to get and set the subject of an appointment or message in an Outlook add-in.
|
|
19043
19128
|
*
|
|
@@ -83761,7 +83846,7 @@ declare namespace Word {
|
|
|
83761
83846
|
*/
|
|
83762
83847
|
readonly parentBody: Word.Body;
|
|
83763
83848
|
/**
|
|
83764
|
-
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
83849
|
+
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
83765
83850
|
*
|
|
83766
83851
|
* @remarks
|
|
83767
83852
|
* [Api set: WordApi 1.3]
|
|
@@ -83775,7 +83860,7 @@ declare namespace Word {
|
|
|
83775
83860
|
*/
|
|
83776
83861
|
readonly parentContentControl: Word.ContentControl;
|
|
83777
83862
|
/**
|
|
83778
|
-
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
83863
|
+
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
83779
83864
|
*
|
|
83780
83865
|
* @remarks
|
|
83781
83866
|
* [Api set: WordApi 1.3]
|
|
@@ -83789,7 +83874,7 @@ declare namespace Word {
|
|
|
83789
83874
|
*/
|
|
83790
83875
|
readonly parentSection: Word.Section;
|
|
83791
83876
|
/**
|
|
83792
|
-
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
83877
|
+
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
83793
83878
|
*
|
|
83794
83879
|
* @remarks
|
|
83795
83880
|
* [Api set: WordApi 1.3]
|
|
@@ -84055,11 +84140,11 @@ declare namespace Word {
|
|
|
84055
84140
|
expand?: string;
|
|
84056
84141
|
}): Word.Body;
|
|
84057
84142
|
/**
|
|
84058
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84143
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
84059
84144
|
*/
|
|
84060
84145
|
track(): Word.Body;
|
|
84061
84146
|
/**
|
|
84062
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84147
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84063
84148
|
*/
|
|
84064
84149
|
untrack(): Word.Body;
|
|
84065
84150
|
/**
|
|
@@ -84186,11 +84271,11 @@ declare namespace Word {
|
|
|
84186
84271
|
expand?: string;
|
|
84187
84272
|
}): Word.Comment;
|
|
84188
84273
|
/**
|
|
84189
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84274
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
84190
84275
|
*/
|
|
84191
84276
|
track(): Word.Comment;
|
|
84192
84277
|
/**
|
|
84193
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84278
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84194
84279
|
*/
|
|
84195
84280
|
untrack(): Word.Comment;
|
|
84196
84281
|
/**
|
|
@@ -84218,7 +84303,7 @@ declare namespace Word {
|
|
|
84218
84303
|
*/
|
|
84219
84304
|
getFirst(): Word.Comment;
|
|
84220
84305
|
/**
|
|
84221
|
-
* Gets the first comment in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84306
|
+
* Gets the first comment in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84222
84307
|
*
|
|
84223
84308
|
* @remarks
|
|
84224
84309
|
* [Api set: WordApi 1.4]
|
|
@@ -84243,11 +84328,11 @@ declare namespace Word {
|
|
|
84243
84328
|
*/
|
|
84244
84329
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
84245
84330
|
/**
|
|
84246
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84331
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
84247
84332
|
*/
|
|
84248
84333
|
track(): Word.CommentCollection;
|
|
84249
84334
|
/**
|
|
84250
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84335
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84251
84336
|
*/
|
|
84252
84337
|
untrack(): Word.CommentCollection;
|
|
84253
84338
|
/**
|
|
@@ -84352,11 +84437,11 @@ declare namespace Word {
|
|
|
84352
84437
|
expand?: string;
|
|
84353
84438
|
}): Word.CommentContentRange;
|
|
84354
84439
|
/**
|
|
84355
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84440
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
84356
84441
|
*/
|
|
84357
84442
|
track(): Word.CommentContentRange;
|
|
84358
84443
|
/**
|
|
84359
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84444
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84360
84445
|
*/
|
|
84361
84446
|
untrack(): Word.CommentContentRange;
|
|
84362
84447
|
/**
|
|
@@ -84460,11 +84545,11 @@ declare namespace Word {
|
|
|
84460
84545
|
expand?: string;
|
|
84461
84546
|
}): Word.CommentReply;
|
|
84462
84547
|
/**
|
|
84463
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84548
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
84464
84549
|
*/
|
|
84465
84550
|
track(): Word.CommentReply;
|
|
84466
84551
|
/**
|
|
84467
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84552
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84468
84553
|
*/
|
|
84469
84554
|
untrack(): Word.CommentReply;
|
|
84470
84555
|
/**
|
|
@@ -84492,7 +84577,7 @@ declare namespace Word {
|
|
|
84492
84577
|
*/
|
|
84493
84578
|
getFirst(): Word.CommentReply;
|
|
84494
84579
|
/**
|
|
84495
|
-
* Gets the first comment reply in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84580
|
+
* Gets the first comment reply in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84496
84581
|
*
|
|
84497
84582
|
* @remarks
|
|
84498
84583
|
* [Api set: WordApi 1.4]
|
|
@@ -84517,11 +84602,11 @@ declare namespace Word {
|
|
|
84517
84602
|
*/
|
|
84518
84603
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
84519
84604
|
/**
|
|
84520
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84605
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
84521
84606
|
*/
|
|
84522
84607
|
track(): Word.CommentReplyCollection;
|
|
84523
84608
|
/**
|
|
84524
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84609
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84525
84610
|
*/
|
|
84526
84611
|
untrack(): Word.CommentReplyCollection;
|
|
84527
84612
|
/**
|
|
@@ -84610,7 +84695,7 @@ declare namespace Word {
|
|
|
84610
84695
|
*/
|
|
84611
84696
|
readonly parentContentControl: Word.ContentControl;
|
|
84612
84697
|
/**
|
|
84613
|
-
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84698
|
+
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84614
84699
|
*
|
|
84615
84700
|
* @remarks
|
|
84616
84701
|
* [Api set: WordApi 1.3]
|
|
@@ -84631,14 +84716,14 @@ declare namespace Word {
|
|
|
84631
84716
|
*/
|
|
84632
84717
|
readonly parentTableCell: Word.TableCell;
|
|
84633
84718
|
/**
|
|
84634
|
-
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84719
|
+
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84635
84720
|
*
|
|
84636
84721
|
* @remarks
|
|
84637
84722
|
* [Api set: WordApi 1.3]
|
|
84638
84723
|
*/
|
|
84639
84724
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
84640
84725
|
/**
|
|
84641
|
-
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84726
|
+
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84642
84727
|
*
|
|
84643
84728
|
* @remarks
|
|
84644
84729
|
* [Api set: WordApi 1.3]
|
|
@@ -85039,11 +85124,11 @@ declare namespace Word {
|
|
|
85039
85124
|
*/
|
|
85040
85125
|
readonly onSelectionChanged: OfficeExtension.EventHandlers<Word.ContentControlSelectionChangedEventArgs>;
|
|
85041
85126
|
/**
|
|
85042
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85127
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
85043
85128
|
*/
|
|
85044
85129
|
track(): Word.ContentControl;
|
|
85045
85130
|
/**
|
|
85046
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85131
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85047
85132
|
*/
|
|
85048
85133
|
untrack(): Word.ContentControl;
|
|
85049
85134
|
/**
|
|
@@ -85082,7 +85167,7 @@ declare namespace Word {
|
|
|
85082
85167
|
*/
|
|
85083
85168
|
getById(id: number): Word.ContentControl;
|
|
85084
85169
|
/**
|
|
85085
|
-
* Gets a content control by its identifier. If there isn't a content control with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85170
|
+
* Gets a content control by its identifier. If there isn't a content control with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85086
85171
|
*
|
|
85087
85172
|
* @remarks
|
|
85088
85173
|
* [Api set: WordApi 1.3]
|
|
@@ -85125,7 +85210,7 @@ declare namespace Word {
|
|
|
85125
85210
|
*/
|
|
85126
85211
|
getFirst(): Word.ContentControl;
|
|
85127
85212
|
/**
|
|
85128
|
-
* Gets the first content control in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85213
|
+
* Gets the first content control in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85129
85214
|
*
|
|
85130
85215
|
* @remarks
|
|
85131
85216
|
* [Api set: WordApi 1.3]
|
|
@@ -85159,11 +85244,11 @@ declare namespace Word {
|
|
|
85159
85244
|
*/
|
|
85160
85245
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
85161
85246
|
/**
|
|
85162
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85247
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
85163
85248
|
*/
|
|
85164
85249
|
track(): Word.ContentControlCollection;
|
|
85165
85250
|
/**
|
|
85166
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85251
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85167
85252
|
*/
|
|
85168
85253
|
untrack(): Word.ContentControlCollection;
|
|
85169
85254
|
/**
|
|
@@ -85254,11 +85339,11 @@ declare namespace Word {
|
|
|
85254
85339
|
expand?: string;
|
|
85255
85340
|
}): Word.CustomProperty;
|
|
85256
85341
|
/**
|
|
85257
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85342
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
85258
85343
|
*/
|
|
85259
85344
|
track(): Word.CustomProperty;
|
|
85260
85345
|
/**
|
|
85261
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85346
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85262
85347
|
*/
|
|
85263
85348
|
untrack(): Word.CustomProperty;
|
|
85264
85349
|
/**
|
|
@@ -85312,7 +85397,7 @@ declare namespace Word {
|
|
|
85312
85397
|
*/
|
|
85313
85398
|
getItem(key: string): Word.CustomProperty;
|
|
85314
85399
|
/**
|
|
85315
|
-
* Gets a custom property object by its key, which is case-insensitive. If the custom property does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85400
|
+
* Gets a custom property object by its key, which is case-insensitive. If the custom property does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85316
85401
|
*
|
|
85317
85402
|
* @remarks
|
|
85318
85403
|
* [Api set: WordApi 1.3]
|
|
@@ -85339,11 +85424,11 @@ declare namespace Word {
|
|
|
85339
85424
|
*/
|
|
85340
85425
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
85341
85426
|
/**
|
|
85342
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85427
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
85343
85428
|
*/
|
|
85344
85429
|
track(): Word.CustomPropertyCollection;
|
|
85345
85430
|
/**
|
|
85346
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85431
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85347
85432
|
*/
|
|
85348
85433
|
untrack(): Word.CustomPropertyCollection;
|
|
85349
85434
|
/**
|
|
@@ -85618,11 +85703,11 @@ declare namespace Word {
|
|
|
85618
85703
|
expand?: string;
|
|
85619
85704
|
}): Word.CustomXmlPart;
|
|
85620
85705
|
/**
|
|
85621
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85706
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
85622
85707
|
*/
|
|
85623
85708
|
track(): Word.CustomXmlPart;
|
|
85624
85709
|
/**
|
|
85625
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85710
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85626
85711
|
*/
|
|
85627
85712
|
untrack(): Word.CustomXmlPart;
|
|
85628
85713
|
/**
|
|
@@ -85677,7 +85762,7 @@ declare namespace Word {
|
|
|
85677
85762
|
*/
|
|
85678
85763
|
getItem(id: string): Word.CustomXmlPart;
|
|
85679
85764
|
/**
|
|
85680
|
-
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85765
|
+
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85681
85766
|
*
|
|
85682
85767
|
* @remarks
|
|
85683
85768
|
* [Api set: WordApi 1.4]
|
|
@@ -85704,11 +85789,11 @@ declare namespace Word {
|
|
|
85704
85789
|
*/
|
|
85705
85790
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartCollection;
|
|
85706
85791
|
/**
|
|
85707
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85792
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
85708
85793
|
*/
|
|
85709
85794
|
track(): Word.CustomXmlPartCollection;
|
|
85710
85795
|
/**
|
|
85711
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85796
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85712
85797
|
*/
|
|
85713
85798
|
untrack(): Word.CustomXmlPartCollection;
|
|
85714
85799
|
/**
|
|
@@ -85745,7 +85830,7 @@ declare namespace Word {
|
|
|
85745
85830
|
*/
|
|
85746
85831
|
getItem(id: string): Word.CustomXmlPart;
|
|
85747
85832
|
/**
|
|
85748
|
-
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist in the collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85833
|
+
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist in the collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85749
85834
|
*
|
|
85750
85835
|
* @remarks
|
|
85751
85836
|
* [Api set: WordApi 1.4]
|
|
@@ -85761,7 +85846,7 @@ declare namespace Word {
|
|
|
85761
85846
|
*/
|
|
85762
85847
|
getOnlyItem(): Word.CustomXmlPart;
|
|
85763
85848
|
/**
|
|
85764
|
-
* If the collection contains exactly one item, this method returns it. Otherwise, this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85849
|
+
* If the collection contains exactly one item, this method returns it. Otherwise, this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85765
85850
|
*
|
|
85766
85851
|
* @remarks
|
|
85767
85852
|
* [Api set: WordApi 1.4]
|
|
@@ -85786,11 +85871,11 @@ declare namespace Word {
|
|
|
85786
85871
|
*/
|
|
85787
85872
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartScopedCollection;
|
|
85788
85873
|
/**
|
|
85789
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85874
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
85790
85875
|
*/
|
|
85791
85876
|
track(): Word.CustomXmlPartScopedCollection;
|
|
85792
85877
|
/**
|
|
85793
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85878
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85794
85879
|
*/
|
|
85795
85880
|
untrack(): Word.CustomXmlPartScopedCollection;
|
|
85796
85881
|
/**
|
|
@@ -85929,7 +86014,7 @@ declare namespace Word {
|
|
|
85929
86014
|
*/
|
|
85930
86015
|
getBookmarkRange(name: string): Word.Range;
|
|
85931
86016
|
/**
|
|
85932
|
-
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86017
|
+
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85933
86018
|
*
|
|
85934
86019
|
* @remarks
|
|
85935
86020
|
* [Api set: WordApi 1.4]
|
|
@@ -86060,11 +86145,11 @@ declare namespace Word {
|
|
|
86060
86145
|
*/
|
|
86061
86146
|
readonly onContentControlAdded: OfficeExtension.EventHandlers<Word.ContentControlAddedEventArgs>;
|
|
86062
86147
|
/**
|
|
86063
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86148
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
86064
86149
|
*/
|
|
86065
86150
|
track(): Word.Document;
|
|
86066
86151
|
/**
|
|
86067
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86152
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86068
86153
|
*/
|
|
86069
86154
|
untrack(): Word.Document;
|
|
86070
86155
|
/**
|
|
@@ -86178,7 +86263,7 @@ declare namespace Word {
|
|
|
86178
86263
|
*/
|
|
86179
86264
|
getBookmarkRange(name: string): Word.Range;
|
|
86180
86265
|
/**
|
|
86181
|
-
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86266
|
+
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86182
86267
|
*
|
|
86183
86268
|
* @remarks
|
|
86184
86269
|
* [Api set: WordApiHiddenDocument 1.4]
|
|
@@ -86269,11 +86354,11 @@ declare namespace Word {
|
|
|
86269
86354
|
expand?: string;
|
|
86270
86355
|
}): Word.DocumentCreated;
|
|
86271
86356
|
/**
|
|
86272
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86357
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
86273
86358
|
*/
|
|
86274
86359
|
track(): Word.DocumentCreated;
|
|
86275
86360
|
/**
|
|
86276
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86361
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86277
86362
|
*/
|
|
86278
86363
|
untrack(): Word.DocumentCreated;
|
|
86279
86364
|
/**
|
|
@@ -86447,11 +86532,11 @@ declare namespace Word {
|
|
|
86447
86532
|
expand?: string;
|
|
86448
86533
|
}): Word.DocumentProperties;
|
|
86449
86534
|
/**
|
|
86450
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86535
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
86451
86536
|
*/
|
|
86452
86537
|
track(): Word.DocumentProperties;
|
|
86453
86538
|
/**
|
|
86454
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86539
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86455
86540
|
*/
|
|
86456
86541
|
untrack(): Word.DocumentProperties;
|
|
86457
86542
|
/**
|
|
@@ -86484,7 +86569,7 @@ declare namespace Word {
|
|
|
86484
86569
|
*/
|
|
86485
86570
|
readonly parentContentControl: Word.ContentControl;
|
|
86486
86571
|
/**
|
|
86487
|
-
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86572
|
+
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86488
86573
|
*
|
|
86489
86574
|
* @remarks
|
|
86490
86575
|
* [Api set: WordApi 1.4]
|
|
@@ -86505,14 +86590,14 @@ declare namespace Word {
|
|
|
86505
86590
|
*/
|
|
86506
86591
|
readonly parentTableCell: Word.TableCell;
|
|
86507
86592
|
/**
|
|
86508
|
-
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86593
|
+
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86509
86594
|
*
|
|
86510
86595
|
* @remarks
|
|
86511
86596
|
* [Api set: WordApi 1.4]
|
|
86512
86597
|
*/
|
|
86513
86598
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
86514
86599
|
/**
|
|
86515
|
-
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86600
|
+
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86516
86601
|
*
|
|
86517
86602
|
* @remarks
|
|
86518
86603
|
* [Api set: WordApi 1.4]
|
|
@@ -86585,7 +86670,7 @@ declare namespace Word {
|
|
|
86585
86670
|
*/
|
|
86586
86671
|
getNext(): Word.Field;
|
|
86587
86672
|
/**
|
|
86588
|
-
* Gets the next field. If this field is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86673
|
+
* Gets the next field. If this field is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86589
86674
|
*
|
|
86590
86675
|
* @remarks
|
|
86591
86676
|
* [Api set: WordApi 1.4]
|
|
@@ -86638,11 +86723,11 @@ declare namespace Word {
|
|
|
86638
86723
|
expand?: string;
|
|
86639
86724
|
}): Word.Field;
|
|
86640
86725
|
/**
|
|
86641
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86726
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
86642
86727
|
*/
|
|
86643
86728
|
track(): Word.Field;
|
|
86644
86729
|
/**
|
|
86645
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86730
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86646
86731
|
*/
|
|
86647
86732
|
untrack(): Word.Field;
|
|
86648
86733
|
/**
|
|
@@ -86670,7 +86755,7 @@ declare namespace Word {
|
|
|
86670
86755
|
*/
|
|
86671
86756
|
getFirst(): Word.Field;
|
|
86672
86757
|
/**
|
|
86673
|
-
* Gets the first field in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86758
|
+
* Gets the first field in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86674
86759
|
*
|
|
86675
86760
|
* @remarks
|
|
86676
86761
|
* [Api set: WordApi 1.4]
|
|
@@ -86704,11 +86789,11 @@ declare namespace Word {
|
|
|
86704
86789
|
*/
|
|
86705
86790
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.FieldCollection;
|
|
86706
86791
|
/**
|
|
86707
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86792
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
86708
86793
|
*/
|
|
86709
86794
|
track(): Word.FieldCollection;
|
|
86710
86795
|
/**
|
|
86711
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86796
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86712
86797
|
*/
|
|
86713
86798
|
untrack(): Word.FieldCollection;
|
|
86714
86799
|
/**
|
|
@@ -86833,11 +86918,11 @@ declare namespace Word {
|
|
|
86833
86918
|
expand?: string;
|
|
86834
86919
|
}): Word.Font;
|
|
86835
86920
|
/**
|
|
86836
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86921
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
86837
86922
|
*/
|
|
86838
86923
|
track(): Word.Font;
|
|
86839
86924
|
/**
|
|
86840
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86925
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86841
86926
|
*/
|
|
86842
86927
|
untrack(): Word.Font;
|
|
86843
86928
|
/**
|
|
@@ -86870,7 +86955,7 @@ declare namespace Word {
|
|
|
86870
86955
|
*/
|
|
86871
86956
|
readonly parentContentControl: Word.ContentControl;
|
|
86872
86957
|
/**
|
|
86873
|
-
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86958
|
+
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86874
86959
|
*
|
|
86875
86960
|
* @remarks
|
|
86876
86961
|
* [Api set: WordApi 1.3]
|
|
@@ -86891,14 +86976,14 @@ declare namespace Word {
|
|
|
86891
86976
|
*/
|
|
86892
86977
|
readonly parentTableCell: Word.TableCell;
|
|
86893
86978
|
/**
|
|
86894
|
-
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86979
|
+
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86895
86980
|
*
|
|
86896
86981
|
* @remarks
|
|
86897
86982
|
* [Api set: WordApi 1.3]
|
|
86898
86983
|
*/
|
|
86899
86984
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
86900
86985
|
/**
|
|
86901
|
-
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86986
|
+
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86902
86987
|
*
|
|
86903
86988
|
* @remarks
|
|
86904
86989
|
* [Api set: WordApi 1.3]
|
|
@@ -86976,7 +87061,7 @@ declare namespace Word {
|
|
|
86976
87061
|
*/
|
|
86977
87062
|
getNext(): Word.InlinePicture;
|
|
86978
87063
|
/**
|
|
86979
|
-
* Gets the next inline image. If this inline image is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87064
|
+
* Gets the next inline image. If this inline image is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86980
87065
|
*
|
|
86981
87066
|
* @remarks
|
|
86982
87067
|
* [Api set: WordApi 1.3]
|
|
@@ -87108,11 +87193,11 @@ declare namespace Word {
|
|
|
87108
87193
|
expand?: string;
|
|
87109
87194
|
}): Word.InlinePicture;
|
|
87110
87195
|
/**
|
|
87111
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87196
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
87112
87197
|
*/
|
|
87113
87198
|
track(): Word.InlinePicture;
|
|
87114
87199
|
/**
|
|
87115
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87200
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87116
87201
|
*/
|
|
87117
87202
|
untrack(): Word.InlinePicture;
|
|
87118
87203
|
/**
|
|
@@ -87140,7 +87225,7 @@ declare namespace Word {
|
|
|
87140
87225
|
*/
|
|
87141
87226
|
getFirst(): Word.InlinePicture;
|
|
87142
87227
|
/**
|
|
87143
|
-
* Gets the first inline image in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87228
|
+
* Gets the first inline image in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87144
87229
|
*
|
|
87145
87230
|
* @remarks
|
|
87146
87231
|
* [Api set: WordApi 1.3]
|
|
@@ -87165,11 +87250,11 @@ declare namespace Word {
|
|
|
87165
87250
|
*/
|
|
87166
87251
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
87167
87252
|
/**
|
|
87168
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87253
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
87169
87254
|
*/
|
|
87170
87255
|
track(): Word.InlinePictureCollection;
|
|
87171
87256
|
/**
|
|
87172
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87257
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87173
87258
|
*/
|
|
87174
87259
|
untrack(): Word.InlinePictureCollection;
|
|
87175
87260
|
/**
|
|
@@ -87352,11 +87437,11 @@ declare namespace Word {
|
|
|
87352
87437
|
expand?: string;
|
|
87353
87438
|
}): Word.List;
|
|
87354
87439
|
/**
|
|
87355
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87440
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
87356
87441
|
*/
|
|
87357
87442
|
track(): Word.List;
|
|
87358
87443
|
/**
|
|
87359
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87444
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87360
87445
|
*/
|
|
87361
87446
|
untrack(): Word.List;
|
|
87362
87447
|
/**
|
|
@@ -87386,7 +87471,7 @@ declare namespace Word {
|
|
|
87386
87471
|
*/
|
|
87387
87472
|
getById(id: number): Word.List;
|
|
87388
87473
|
/**
|
|
87389
|
-
* Gets a list by its identifier. If there isn't a list with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87474
|
+
* Gets a list by its identifier. If there isn't a list with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87390
87475
|
*
|
|
87391
87476
|
* @remarks
|
|
87392
87477
|
* [Api set: WordApi 1.3]
|
|
@@ -87402,7 +87487,7 @@ declare namespace Word {
|
|
|
87402
87487
|
*/
|
|
87403
87488
|
getFirst(): Word.List;
|
|
87404
87489
|
/**
|
|
87405
|
-
* Gets the first list in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87490
|
+
* Gets the first list in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87406
87491
|
*
|
|
87407
87492
|
* @remarks
|
|
87408
87493
|
* [Api set: WordApi 1.3]
|
|
@@ -87436,11 +87521,11 @@ declare namespace Word {
|
|
|
87436
87521
|
*/
|
|
87437
87522
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
87438
87523
|
/**
|
|
87439
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87524
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
87440
87525
|
*/
|
|
87441
87526
|
track(): Word.ListCollection;
|
|
87442
87527
|
/**
|
|
87443
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87528
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87444
87529
|
*/
|
|
87445
87530
|
untrack(): Word.ListCollection;
|
|
87446
87531
|
/**
|
|
@@ -87497,7 +87582,7 @@ declare namespace Word {
|
|
|
87497
87582
|
*/
|
|
87498
87583
|
getAncestor(parentOnly?: boolean): Word.Paragraph;
|
|
87499
87584
|
/**
|
|
87500
|
-
* Gets the list item parent, or the closest ancestor if the parent does not exist. If the list item has no ancestor, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87585
|
+
* Gets the list item parent, or the closest ancestor if the parent does not exist. If the list item has no ancestor, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87501
87586
|
*
|
|
87502
87587
|
* @remarks
|
|
87503
87588
|
* [Api set: WordApi 1.3]
|
|
@@ -87536,11 +87621,11 @@ declare namespace Word {
|
|
|
87536
87621
|
expand?: string;
|
|
87537
87622
|
}): Word.ListItem;
|
|
87538
87623
|
/**
|
|
87539
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87624
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
87540
87625
|
*/
|
|
87541
87626
|
track(): Word.ListItem;
|
|
87542
87627
|
/**
|
|
87543
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87628
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87544
87629
|
*/
|
|
87545
87630
|
untrack(): Word.ListItem;
|
|
87546
87631
|
/**
|
|
@@ -87602,7 +87687,7 @@ declare namespace Word {
|
|
|
87602
87687
|
*/
|
|
87603
87688
|
getNext(): Word.NoteItem;
|
|
87604
87689
|
/**
|
|
87605
|
-
* Gets the next note item of the same type. If this note item is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87690
|
+
* Gets the next note item of the same type. If this note item is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87606
87691
|
*
|
|
87607
87692
|
* @remarks
|
|
87608
87693
|
* [Api set: WordApi 1.5]
|
|
@@ -87630,11 +87715,11 @@ declare namespace Word {
|
|
|
87630
87715
|
expand?: string;
|
|
87631
87716
|
}): Word.NoteItem;
|
|
87632
87717
|
/**
|
|
87633
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87718
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
87634
87719
|
*/
|
|
87635
87720
|
track(): Word.NoteItem;
|
|
87636
87721
|
/**
|
|
87637
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87722
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87638
87723
|
*/
|
|
87639
87724
|
untrack(): Word.NoteItem;
|
|
87640
87725
|
/**
|
|
@@ -87662,7 +87747,7 @@ declare namespace Word {
|
|
|
87662
87747
|
*/
|
|
87663
87748
|
getFirst(): Word.NoteItem;
|
|
87664
87749
|
/**
|
|
87665
|
-
* Gets the first note item in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87750
|
+
* Gets the first note item in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87666
87751
|
*
|
|
87667
87752
|
* @remarks
|
|
87668
87753
|
* [Api set: WordApi 1.5]
|
|
@@ -87687,11 +87772,11 @@ declare namespace Word {
|
|
|
87687
87772
|
*/
|
|
87688
87773
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
87689
87774
|
/**
|
|
87690
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87775
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
87691
87776
|
*/
|
|
87692
87777
|
track(): Word.NoteItemCollection;
|
|
87693
87778
|
/**
|
|
87694
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87779
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87695
87780
|
*/
|
|
87696
87781
|
untrack(): Word.NoteItemCollection;
|
|
87697
87782
|
/**
|
|
@@ -87766,14 +87851,14 @@ declare namespace Word {
|
|
|
87766
87851
|
*/
|
|
87767
87852
|
readonly listItem: Word.ListItem;
|
|
87768
87853
|
/**
|
|
87769
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87854
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87770
87855
|
*
|
|
87771
87856
|
* @remarks
|
|
87772
87857
|
* [Api set: WordApi 1.3]
|
|
87773
87858
|
*/
|
|
87774
87859
|
readonly listItemOrNullObject: Word.ListItem;
|
|
87775
87860
|
/**
|
|
87776
|
-
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87861
|
+
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87777
87862
|
*
|
|
87778
87863
|
* @remarks
|
|
87779
87864
|
* [Api set: WordApi 1.3]
|
|
@@ -87794,7 +87879,7 @@ declare namespace Word {
|
|
|
87794
87879
|
*/
|
|
87795
87880
|
readonly parentContentControl: Word.ContentControl;
|
|
87796
87881
|
/**
|
|
87797
|
-
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87882
|
+
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87798
87883
|
*
|
|
87799
87884
|
* @remarks
|
|
87800
87885
|
* [Api set: WordApi 1.3]
|
|
@@ -87815,14 +87900,14 @@ declare namespace Word {
|
|
|
87815
87900
|
*/
|
|
87816
87901
|
readonly parentTableCell: Word.TableCell;
|
|
87817
87902
|
/**
|
|
87818
|
-
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87903
|
+
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87819
87904
|
*
|
|
87820
87905
|
* @remarks
|
|
87821
87906
|
* [Api set: WordApi 1.3]
|
|
87822
87907
|
*/
|
|
87823
87908
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
87824
87909
|
/**
|
|
87825
|
-
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87910
|
+
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87826
87911
|
*
|
|
87827
87912
|
* @remarks
|
|
87828
87913
|
* [Api set: WordApi 1.3]
|
|
@@ -88012,7 +88097,7 @@ declare namespace Word {
|
|
|
88012
88097
|
*/
|
|
88013
88098
|
getNext(): Word.Paragraph;
|
|
88014
88099
|
/**
|
|
88015
|
-
* Gets the next paragraph. If the paragraph is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88100
|
+
* Gets the next paragraph. If the paragraph is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88016
88101
|
*
|
|
88017
88102
|
* @remarks
|
|
88018
88103
|
* [Api set: WordApi 1.3]
|
|
@@ -88033,7 +88118,7 @@ declare namespace Word {
|
|
|
88033
88118
|
*/
|
|
88034
88119
|
getPrevious(): Word.Paragraph;
|
|
88035
88120
|
/**
|
|
88036
|
-
* Gets the previous paragraph. If the paragraph is the first one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88121
|
+
* Gets the previous paragraph. If the paragraph is the first one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88037
88122
|
*
|
|
88038
88123
|
* @remarks
|
|
88039
88124
|
* [Api set: WordApi 1.3]
|
|
@@ -88245,11 +88330,11 @@ declare namespace Word {
|
|
|
88245
88330
|
expand?: string;
|
|
88246
88331
|
}): Word.Paragraph;
|
|
88247
88332
|
/**
|
|
88248
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
88333
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
88249
88334
|
*/
|
|
88250
88335
|
track(): Word.Paragraph;
|
|
88251
88336
|
/**
|
|
88252
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
88337
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
88253
88338
|
*/
|
|
88254
88339
|
untrack(): Word.Paragraph;
|
|
88255
88340
|
/**
|
|
@@ -88277,7 +88362,7 @@ declare namespace Word {
|
|
|
88277
88362
|
*/
|
|
88278
88363
|
getFirst(): Word.Paragraph;
|
|
88279
88364
|
/**
|
|
88280
|
-
* Gets the first paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88365
|
+
* Gets the first paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88281
88366
|
*
|
|
88282
88367
|
* @remarks
|
|
88283
88368
|
* [Api set: WordApi 1.3]
|
|
@@ -88291,7 +88376,7 @@ declare namespace Word {
|
|
|
88291
88376
|
*/
|
|
88292
88377
|
getLast(): Word.Paragraph;
|
|
88293
88378
|
/**
|
|
88294
|
-
* Gets the last paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88379
|
+
* Gets the last paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88295
88380
|
*
|
|
88296
88381
|
* @remarks
|
|
88297
88382
|
* [Api set: WordApi 1.3]
|
|
@@ -88316,11 +88401,11 @@ declare namespace Word {
|
|
|
88316
88401
|
*/
|
|
88317
88402
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
88318
88403
|
/**
|
|
88319
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
88404
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
88320
88405
|
*/
|
|
88321
88406
|
track(): Word.ParagraphCollection;
|
|
88322
88407
|
/**
|
|
88323
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
88408
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
88324
88409
|
*/
|
|
88325
88410
|
untrack(): Word.ParagraphCollection;
|
|
88326
88411
|
/**
|
|
@@ -88466,11 +88551,11 @@ declare namespace Word {
|
|
|
88466
88551
|
expand?: string;
|
|
88467
88552
|
}): Word.ParagraphFormat;
|
|
88468
88553
|
/**
|
|
88469
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
88554
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
88470
88555
|
*/
|
|
88471
88556
|
track(): Word.ParagraphFormat;
|
|
88472
88557
|
/**
|
|
88473
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
88558
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
88474
88559
|
*/
|
|
88475
88560
|
untrack(): Word.ParagraphFormat;
|
|
88476
88561
|
/**
|
|
@@ -88559,7 +88644,7 @@ declare namespace Word {
|
|
|
88559
88644
|
*/
|
|
88560
88645
|
readonly parentContentControl: Word.ContentControl;
|
|
88561
88646
|
/**
|
|
88562
|
-
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88647
|
+
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88563
88648
|
*
|
|
88564
88649
|
* @remarks
|
|
88565
88650
|
* [Api set: WordApi 1.3]
|
|
@@ -88580,14 +88665,14 @@ declare namespace Word {
|
|
|
88580
88665
|
*/
|
|
88581
88666
|
readonly parentTableCell: Word.TableCell;
|
|
88582
88667
|
/**
|
|
88583
|
-
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88668
|
+
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88584
88669
|
*
|
|
88585
88670
|
* @remarks
|
|
88586
88671
|
* [Api set: WordApi 1.3]
|
|
88587
88672
|
*/
|
|
88588
88673
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
88589
88674
|
/**
|
|
88590
|
-
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88675
|
+
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88591
88676
|
*
|
|
88592
88677
|
* @remarks
|
|
88593
88678
|
* [Api set: WordApi 1.3]
|
|
@@ -88676,7 +88761,7 @@ declare namespace Word {
|
|
|
88676
88761
|
*/
|
|
88677
88762
|
expandTo(range: Word.Range): Word.Range;
|
|
88678
88763
|
/**
|
|
88679
|
-
* Returns a new range that extends from this range in either direction to cover another range. This range is not changed. If the two ranges do not have a union, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88764
|
+
* Returns a new range that extends from this range in either direction to cover another range. This range is not changed. If the two ranges do not have a union, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88680
88765
|
*
|
|
88681
88766
|
* @remarks
|
|
88682
88767
|
* [Api set: WordApi 1.3]
|
|
@@ -88738,7 +88823,7 @@ declare namespace Word {
|
|
|
88738
88823
|
*/
|
|
88739
88824
|
getNextTextRange(endingMarks: string[], trimSpacing?: boolean): Word.Range;
|
|
88740
88825
|
/**
|
|
88741
|
-
* Gets the next text range by using punctuation marks and/or other ending marks. If this text range is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88826
|
+
* Gets the next text range by using punctuation marks and/or other ending marks. If this text range is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88742
88827
|
*
|
|
88743
88828
|
* @remarks
|
|
88744
88829
|
* [Api set: WordApi 1.3]
|
|
@@ -88955,7 +89040,7 @@ declare namespace Word {
|
|
|
88955
89040
|
*/
|
|
88956
89041
|
intersectWith(range: Word.Range): Word.Range;
|
|
88957
89042
|
/**
|
|
88958
|
-
* Returns a new range as the intersection of this range with another range. This range is not changed. If the two ranges are not overlapped or adjacent, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89043
|
+
* Returns a new range as the intersection of this range with another range. This range is not changed. If the two ranges are not overlapped or adjacent, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88959
89044
|
*
|
|
88960
89045
|
* @remarks
|
|
88961
89046
|
* [Api set: WordApi 1.3]
|
|
@@ -89033,11 +89118,11 @@ declare namespace Word {
|
|
|
89033
89118
|
expand?: string;
|
|
89034
89119
|
}): Word.Range;
|
|
89035
89120
|
/**
|
|
89036
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89121
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89037
89122
|
*/
|
|
89038
89123
|
track(): Word.Range;
|
|
89039
89124
|
/**
|
|
89040
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89125
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89041
89126
|
*/
|
|
89042
89127
|
untrack(): Word.Range;
|
|
89043
89128
|
/**
|
|
@@ -89065,7 +89150,7 @@ declare namespace Word {
|
|
|
89065
89150
|
*/
|
|
89066
89151
|
getFirst(): Word.Range;
|
|
89067
89152
|
/**
|
|
89068
|
-
* Gets the first range in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89153
|
+
* Gets the first range in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89069
89154
|
*
|
|
89070
89155
|
* @remarks
|
|
89071
89156
|
* [Api set: WordApi 1.3]
|
|
@@ -89090,11 +89175,11 @@ declare namespace Word {
|
|
|
89090
89175
|
*/
|
|
89091
89176
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
89092
89177
|
/**
|
|
89093
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89178
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89094
89179
|
*/
|
|
89095
89180
|
track(): Word.RangeCollection;
|
|
89096
89181
|
/**
|
|
89097
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89182
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89098
89183
|
*/
|
|
89099
89184
|
untrack(): Word.RangeCollection;
|
|
89100
89185
|
/**
|
|
@@ -89148,7 +89233,7 @@ declare namespace Word {
|
|
|
89148
89233
|
}
|
|
89149
89234
|
/**
|
|
89150
89235
|
* Specifies the options to be included in a search operation.
|
|
89151
|
-
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://
|
|
89236
|
+
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://learn.microsoft.com/office/dev/add-ins/word/search-option-guidance | Use search options to find text in your Word add-in}.
|
|
89152
89237
|
*
|
|
89153
89238
|
* @remarks
|
|
89154
89239
|
* [Api set: WordApi 1.1]
|
|
@@ -89312,7 +89397,7 @@ declare namespace Word {
|
|
|
89312
89397
|
*/
|
|
89313
89398
|
getNext(): Word.Section;
|
|
89314
89399
|
/**
|
|
89315
|
-
* Gets the next section. If this section is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89400
|
+
* Gets the next section. If this section is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89316
89401
|
*
|
|
89317
89402
|
* @remarks
|
|
89318
89403
|
* [Api set: WordApi 1.3]
|
|
@@ -89340,11 +89425,11 @@ declare namespace Word {
|
|
|
89340
89425
|
expand?: string;
|
|
89341
89426
|
}): Word.Section;
|
|
89342
89427
|
/**
|
|
89343
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89428
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89344
89429
|
*/
|
|
89345
89430
|
track(): Word.Section;
|
|
89346
89431
|
/**
|
|
89347
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89432
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89348
89433
|
*/
|
|
89349
89434
|
untrack(): Word.Section;
|
|
89350
89435
|
/**
|
|
@@ -89372,7 +89457,7 @@ declare namespace Word {
|
|
|
89372
89457
|
*/
|
|
89373
89458
|
getFirst(): Word.Section;
|
|
89374
89459
|
/**
|
|
89375
|
-
* Gets the first section in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89460
|
+
* Gets the first section in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89376
89461
|
*
|
|
89377
89462
|
* @remarks
|
|
89378
89463
|
* [Api set: WordApi 1.3]
|
|
@@ -89397,11 +89482,11 @@ declare namespace Word {
|
|
|
89397
89482
|
*/
|
|
89398
89483
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
89399
89484
|
/**
|
|
89400
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89485
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89401
89486
|
*/
|
|
89402
89487
|
track(): Word.SectionCollection;
|
|
89403
89488
|
/**
|
|
89404
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89489
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89405
89490
|
*/
|
|
89406
89491
|
untrack(): Word.SectionCollection;
|
|
89407
89492
|
/**
|
|
@@ -89470,11 +89555,11 @@ declare namespace Word {
|
|
|
89470
89555
|
expand?: string;
|
|
89471
89556
|
}): Word.Setting;
|
|
89472
89557
|
/**
|
|
89473
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89558
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89474
89559
|
*/
|
|
89475
89560
|
track(): Word.Setting;
|
|
89476
89561
|
/**
|
|
89477
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89562
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89478
89563
|
*/
|
|
89479
89564
|
untrack(): Word.Setting;
|
|
89480
89565
|
/**
|
|
@@ -89528,7 +89613,7 @@ declare namespace Word {
|
|
|
89528
89613
|
*/
|
|
89529
89614
|
getItem(key: string): Word.Setting;
|
|
89530
89615
|
/**
|
|
89531
|
-
* Gets a setting object by its key, which is case-sensitive. If the setting does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89616
|
+
* Gets a setting object by its key, which is case-sensitive. If the setting does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89532
89617
|
*
|
|
89533
89618
|
* @remarks
|
|
89534
89619
|
* [Api set: WordApi 1.4]
|
|
@@ -89555,11 +89640,11 @@ declare namespace Word {
|
|
|
89555
89640
|
*/
|
|
89556
89641
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
|
|
89557
89642
|
/**
|
|
89558
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89643
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89559
89644
|
*/
|
|
89560
89645
|
track(): Word.SettingCollection;
|
|
89561
89646
|
/**
|
|
89562
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89647
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89563
89648
|
*/
|
|
89564
89649
|
untrack(): Word.SettingCollection;
|
|
89565
89650
|
/**
|
|
@@ -89632,11 +89717,11 @@ declare namespace Word {
|
|
|
89632
89717
|
*/
|
|
89633
89718
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.StyleCollection;
|
|
89634
89719
|
/**
|
|
89635
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89720
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89636
89721
|
*/
|
|
89637
89722
|
track(): Word.StyleCollection;
|
|
89638
89723
|
/**
|
|
89639
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89724
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89640
89725
|
*/
|
|
89641
89726
|
untrack(): Word.StyleCollection;
|
|
89642
89727
|
/**
|
|
@@ -89782,11 +89867,11 @@ declare namespace Word {
|
|
|
89782
89867
|
expand?: string;
|
|
89783
89868
|
}): Word.Style;
|
|
89784
89869
|
/**
|
|
89785
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89870
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
89786
89871
|
*/
|
|
89787
89872
|
track(): Word.Style;
|
|
89788
89873
|
/**
|
|
89789
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89874
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89790
89875
|
*/
|
|
89791
89876
|
untrack(): Word.Style;
|
|
89792
89877
|
/**
|
|
@@ -89847,7 +89932,7 @@ declare namespace Word {
|
|
|
89847
89932
|
*/
|
|
89848
89933
|
readonly parentContentControl: Word.ContentControl;
|
|
89849
89934
|
/**
|
|
89850
|
-
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89935
|
+
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89851
89936
|
*
|
|
89852
89937
|
* @remarks
|
|
89853
89938
|
* [Api set: WordApi 1.3]
|
|
@@ -89868,14 +89953,14 @@ declare namespace Word {
|
|
|
89868
89953
|
*/
|
|
89869
89954
|
readonly parentTableCell: Word.TableCell;
|
|
89870
89955
|
/**
|
|
89871
|
-
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89956
|
+
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89872
89957
|
*
|
|
89873
89958
|
* @remarks
|
|
89874
89959
|
* [Api set: WordApi 1.3]
|
|
89875
89960
|
*/
|
|
89876
89961
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
89877
89962
|
/**
|
|
89878
|
-
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89963
|
+
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89879
89964
|
*
|
|
89880
89965
|
* @remarks
|
|
89881
89966
|
* [Api set: WordApi 1.3]
|
|
@@ -90121,7 +90206,7 @@ declare namespace Word {
|
|
|
90121
90206
|
*/
|
|
90122
90207
|
getCell(rowIndex: number, cellIndex: number): Word.TableCell;
|
|
90123
90208
|
/**
|
|
90124
|
-
* Gets the table cell at a specified row and column. If the specified table cell does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90209
|
+
* Gets the table cell at a specified row and column. If the specified table cell does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90125
90210
|
*
|
|
90126
90211
|
* @remarks
|
|
90127
90212
|
* [Api set: WordApi 1.3]
|
|
@@ -90156,7 +90241,7 @@ declare namespace Word {
|
|
|
90156
90241
|
*/
|
|
90157
90242
|
getNext(): Word.Table;
|
|
90158
90243
|
/**
|
|
90159
|
-
* Gets the next table. If this table is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90244
|
+
* Gets the next table. If this table is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90160
90245
|
*
|
|
90161
90246
|
* @remarks
|
|
90162
90247
|
* [Api set: WordApi 1.3]
|
|
@@ -90170,7 +90255,7 @@ declare namespace Word {
|
|
|
90170
90255
|
*/
|
|
90171
90256
|
getParagraphAfter(): Word.Paragraph;
|
|
90172
90257
|
/**
|
|
90173
|
-
* Gets the paragraph after the table. If there isn't a paragraph after the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90258
|
+
* Gets the paragraph after the table. If there isn't a paragraph after the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90174
90259
|
*
|
|
90175
90260
|
* @remarks
|
|
90176
90261
|
* [Api set: WordApi 1.3]
|
|
@@ -90184,7 +90269,7 @@ declare namespace Word {
|
|
|
90184
90269
|
*/
|
|
90185
90270
|
getParagraphBefore(): Word.Paragraph;
|
|
90186
90271
|
/**
|
|
90187
|
-
* Gets the paragraph before the table. If there isn't a paragraph before the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90272
|
+
* Gets the paragraph before the table. If there isn't a paragraph before the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90188
90273
|
*
|
|
90189
90274
|
* @remarks
|
|
90190
90275
|
* [Api set: WordApi 1.3]
|
|
@@ -90318,11 +90403,11 @@ declare namespace Word {
|
|
|
90318
90403
|
expand?: string;
|
|
90319
90404
|
}): Word.Table;
|
|
90320
90405
|
/**
|
|
90321
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90406
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
90322
90407
|
*/
|
|
90323
90408
|
track(): Word.Table;
|
|
90324
90409
|
/**
|
|
90325
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90410
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90326
90411
|
*/
|
|
90327
90412
|
untrack(): Word.Table;
|
|
90328
90413
|
/**
|
|
@@ -90350,7 +90435,7 @@ declare namespace Word {
|
|
|
90350
90435
|
*/
|
|
90351
90436
|
getFirst(): Word.Table;
|
|
90352
90437
|
/**
|
|
90353
|
-
* Gets the first table in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90438
|
+
* Gets the first table in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90354
90439
|
*
|
|
90355
90440
|
* @remarks
|
|
90356
90441
|
* [Api set: WordApi 1.3]
|
|
@@ -90375,11 +90460,11 @@ declare namespace Word {
|
|
|
90375
90460
|
*/
|
|
90376
90461
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
90377
90462
|
/**
|
|
90378
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90463
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
90379
90464
|
*/
|
|
90380
90465
|
track(): Word.TableCollection;
|
|
90381
90466
|
/**
|
|
90382
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90467
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90383
90468
|
*/
|
|
90384
90469
|
untrack(): Word.TableCollection;
|
|
90385
90470
|
/**
|
|
@@ -90561,7 +90646,7 @@ declare namespace Word {
|
|
|
90561
90646
|
*/
|
|
90562
90647
|
getNext(): Word.TableRow;
|
|
90563
90648
|
/**
|
|
90564
|
-
* Gets the next row. If this row is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90649
|
+
* Gets the next row. If this row is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90565
90650
|
*
|
|
90566
90651
|
* @remarks
|
|
90567
90652
|
* [Api set: WordApi 1.3]
|
|
@@ -90663,11 +90748,11 @@ declare namespace Word {
|
|
|
90663
90748
|
expand?: string;
|
|
90664
90749
|
}): Word.TableRow;
|
|
90665
90750
|
/**
|
|
90666
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90751
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
90667
90752
|
*/
|
|
90668
90753
|
track(): Word.TableRow;
|
|
90669
90754
|
/**
|
|
90670
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90755
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90671
90756
|
*/
|
|
90672
90757
|
untrack(): Word.TableRow;
|
|
90673
90758
|
/**
|
|
@@ -90695,7 +90780,7 @@ declare namespace Word {
|
|
|
90695
90780
|
*/
|
|
90696
90781
|
getFirst(): Word.TableRow;
|
|
90697
90782
|
/**
|
|
90698
|
-
* Gets the first row in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90783
|
+
* Gets the first row in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90699
90784
|
*
|
|
90700
90785
|
* @remarks
|
|
90701
90786
|
* [Api set: WordApi 1.3]
|
|
@@ -90720,11 +90805,11 @@ declare namespace Word {
|
|
|
90720
90805
|
*/
|
|
90721
90806
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
90722
90807
|
/**
|
|
90723
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90808
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
90724
90809
|
*/
|
|
90725
90810
|
track(): Word.TableRowCollection;
|
|
90726
90811
|
/**
|
|
90727
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90812
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90728
90813
|
*/
|
|
90729
90814
|
untrack(): Word.TableRowCollection;
|
|
90730
90815
|
/**
|
|
@@ -90885,7 +90970,7 @@ declare namespace Word {
|
|
|
90885
90970
|
*/
|
|
90886
90971
|
getNext(): Word.TableCell;
|
|
90887
90972
|
/**
|
|
90888
|
-
* Gets the next cell. If this cell is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90973
|
+
* Gets the next cell. If this cell is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90889
90974
|
*
|
|
90890
90975
|
* @remarks
|
|
90891
90976
|
* [Api set: WordApi 1.3]
|
|
@@ -90965,11 +91050,11 @@ declare namespace Word {
|
|
|
90965
91050
|
expand?: string;
|
|
90966
91051
|
}): Word.TableCell;
|
|
90967
91052
|
/**
|
|
90968
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
91053
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
90969
91054
|
*/
|
|
90970
91055
|
track(): Word.TableCell;
|
|
90971
91056
|
/**
|
|
90972
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
91057
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90973
91058
|
*/
|
|
90974
91059
|
untrack(): Word.TableCell;
|
|
90975
91060
|
/**
|
|
@@ -90997,7 +91082,7 @@ declare namespace Word {
|
|
|
90997
91082
|
*/
|
|
90998
91083
|
getFirst(): Word.TableCell;
|
|
90999
91084
|
/**
|
|
91000
|
-
* Gets the first table cell in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
91085
|
+
* Gets the first table cell in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
91001
91086
|
*
|
|
91002
91087
|
* @remarks
|
|
91003
91088
|
* [Api set: WordApi 1.3]
|
|
@@ -91022,11 +91107,11 @@ declare namespace Word {
|
|
|
91022
91107
|
*/
|
|
91023
91108
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
91024
91109
|
/**
|
|
91025
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
91110
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
91026
91111
|
*/
|
|
91027
91112
|
track(): Word.TableCellCollection;
|
|
91028
91113
|
/**
|
|
91029
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
91114
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
91030
91115
|
*/
|
|
91031
91116
|
untrack(): Word.TableCellCollection;
|
|
91032
91117
|
/**
|
|
@@ -91095,11 +91180,11 @@ declare namespace Word {
|
|
|
91095
91180
|
expand?: string;
|
|
91096
91181
|
}): Word.TableBorder;
|
|
91097
91182
|
/**
|
|
91098
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
91183
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
91099
91184
|
*/
|
|
91100
91185
|
track(): Word.TableBorder;
|
|
91101
91186
|
/**
|
|
91102
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
91187
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
91103
91188
|
*/
|
|
91104
91189
|
untrack(): Word.TableBorder;
|
|
91105
91190
|
/**
|
|
@@ -94460,7 +94545,7 @@ declare namespace Word {
|
|
|
94460
94545
|
*/
|
|
94461
94546
|
listItem?: Word.Interfaces.ListItemUpdateData;
|
|
94462
94547
|
/**
|
|
94463
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
94548
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
94464
94549
|
*
|
|
94465
94550
|
* @remarks
|
|
94466
94551
|
* [Api set: WordApi 1.3]
|
|
@@ -96050,7 +96135,7 @@ declare namespace Word {
|
|
|
96050
96135
|
*/
|
|
96051
96136
|
listItem?: Word.Interfaces.ListItemData;
|
|
96052
96137
|
/**
|
|
96053
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96138
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96054
96139
|
*
|
|
96055
96140
|
* @remarks
|
|
96056
96141
|
* [Api set: WordApi 1.3]
|
|
@@ -96880,7 +96965,7 @@ declare namespace Word {
|
|
|
96880
96965
|
*/
|
|
96881
96966
|
parentBody?: Word.Interfaces.BodyLoadOptions;
|
|
96882
96967
|
/**
|
|
96883
|
-
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96968
|
+
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96884
96969
|
*
|
|
96885
96970
|
* @remarks
|
|
96886
96971
|
* [Api set: WordApi 1.3]
|
|
@@ -96894,7 +96979,7 @@ declare namespace Word {
|
|
|
96894
96979
|
*/
|
|
96895
96980
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
96896
96981
|
/**
|
|
96897
|
-
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96982
|
+
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96898
96983
|
*
|
|
96899
96984
|
* @remarks
|
|
96900
96985
|
* [Api set: WordApi 1.3]
|
|
@@ -96908,7 +96993,7 @@ declare namespace Word {
|
|
|
96908
96993
|
*/
|
|
96909
96994
|
parentSection?: Word.Interfaces.SectionLoadOptions;
|
|
96910
96995
|
/**
|
|
96911
|
-
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96996
|
+
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96912
96997
|
*
|
|
96913
96998
|
* @remarks
|
|
96914
96999
|
* [Api set: WordApi 1.3]
|
|
@@ -97279,7 +97364,7 @@ declare namespace Word {
|
|
|
97279
97364
|
*/
|
|
97280
97365
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
97281
97366
|
/**
|
|
97282
|
-
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97367
|
+
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97283
97368
|
*
|
|
97284
97369
|
* @remarks
|
|
97285
97370
|
* [Api set: WordApi 1.3]
|
|
@@ -97300,14 +97385,14 @@ declare namespace Word {
|
|
|
97300
97385
|
*/
|
|
97301
97386
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
97302
97387
|
/**
|
|
97303
|
-
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97388
|
+
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97304
97389
|
*
|
|
97305
97390
|
* @remarks
|
|
97306
97391
|
* [Api set: WordApi 1.3]
|
|
97307
97392
|
*/
|
|
97308
97393
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
97309
97394
|
/**
|
|
97310
|
-
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97395
|
+
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97311
97396
|
*
|
|
97312
97397
|
* @remarks
|
|
97313
97398
|
* [Api set: WordApi 1.3]
|
|
@@ -97445,7 +97530,7 @@ declare namespace Word {
|
|
|
97445
97530
|
*/
|
|
97446
97531
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
97447
97532
|
/**
|
|
97448
|
-
* For EACH ITEM in the collection: Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97533
|
+
* For EACH ITEM in the collection: Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97449
97534
|
*
|
|
97450
97535
|
* @remarks
|
|
97451
97536
|
* [Api set: WordApi 1.3]
|
|
@@ -97466,14 +97551,14 @@ declare namespace Word {
|
|
|
97466
97551
|
*/
|
|
97467
97552
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
97468
97553
|
/**
|
|
97469
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97554
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97470
97555
|
*
|
|
97471
97556
|
* @remarks
|
|
97472
97557
|
* [Api set: WordApi 1.3]
|
|
97473
97558
|
*/
|
|
97474
97559
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
97475
97560
|
/**
|
|
97476
|
-
* For EACH ITEM in the collection: Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97561
|
+
* For EACH ITEM in the collection: Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97477
97562
|
*
|
|
97478
97563
|
* @remarks
|
|
97479
97564
|
* [Api set: WordApi 1.3]
|
|
@@ -97952,7 +98037,7 @@ declare namespace Word {
|
|
|
97952
98037
|
*/
|
|
97953
98038
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
97954
98039
|
/**
|
|
97955
|
-
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98040
|
+
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97956
98041
|
*
|
|
97957
98042
|
* @remarks
|
|
97958
98043
|
* [Api set: WordApi 1.4]
|
|
@@ -97973,14 +98058,14 @@ declare namespace Word {
|
|
|
97973
98058
|
*/
|
|
97974
98059
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
97975
98060
|
/**
|
|
97976
|
-
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98061
|
+
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97977
98062
|
*
|
|
97978
98063
|
* @remarks
|
|
97979
98064
|
* [Api set: WordApi 1.4]
|
|
97980
98065
|
*/
|
|
97981
98066
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
97982
98067
|
/**
|
|
97983
|
-
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98068
|
+
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97984
98069
|
*
|
|
97985
98070
|
* @remarks
|
|
97986
98071
|
* [Api set: WordApi 1.4]
|
|
@@ -98057,7 +98142,7 @@ declare namespace Word {
|
|
|
98057
98142
|
*/
|
|
98058
98143
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98059
98144
|
/**
|
|
98060
|
-
* For EACH ITEM in the collection: Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98145
|
+
* For EACH ITEM in the collection: Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98061
98146
|
*
|
|
98062
98147
|
* @remarks
|
|
98063
98148
|
* [Api set: WordApi 1.4]
|
|
@@ -98078,14 +98163,14 @@ declare namespace Word {
|
|
|
98078
98163
|
*/
|
|
98079
98164
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98080
98165
|
/**
|
|
98081
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98166
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98082
98167
|
*
|
|
98083
98168
|
* @remarks
|
|
98084
98169
|
* [Api set: WordApi 1.4]
|
|
98085
98170
|
*/
|
|
98086
98171
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98087
98172
|
/**
|
|
98088
|
-
* For EACH ITEM in the collection: Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98173
|
+
* For EACH ITEM in the collection: Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98089
98174
|
*
|
|
98090
98175
|
* @remarks
|
|
98091
98176
|
* [Api set: WordApi 1.4]
|
|
@@ -98251,7 +98336,7 @@ declare namespace Word {
|
|
|
98251
98336
|
*/
|
|
98252
98337
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98253
98338
|
/**
|
|
98254
|
-
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98339
|
+
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98255
98340
|
*
|
|
98256
98341
|
* @remarks
|
|
98257
98342
|
* [Api set: WordApi 1.3]
|
|
@@ -98272,14 +98357,14 @@ declare namespace Word {
|
|
|
98272
98357
|
*/
|
|
98273
98358
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98274
98359
|
/**
|
|
98275
|
-
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98360
|
+
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98276
98361
|
*
|
|
98277
98362
|
* @remarks
|
|
98278
98363
|
* [Api set: WordApi 1.3]
|
|
98279
98364
|
*/
|
|
98280
98365
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98281
98366
|
/**
|
|
98282
|
-
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98367
|
+
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98283
98368
|
*
|
|
98284
98369
|
* @remarks
|
|
98285
98370
|
* [Api set: WordApi 1.3]
|
|
@@ -98354,7 +98439,7 @@ declare namespace Word {
|
|
|
98354
98439
|
*/
|
|
98355
98440
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98356
98441
|
/**
|
|
98357
|
-
* For EACH ITEM in the collection: Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98442
|
+
* For EACH ITEM in the collection: Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98358
98443
|
*
|
|
98359
98444
|
* @remarks
|
|
98360
98445
|
* [Api set: WordApi 1.3]
|
|
@@ -98375,14 +98460,14 @@ declare namespace Word {
|
|
|
98375
98460
|
*/
|
|
98376
98461
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98377
98462
|
/**
|
|
98378
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98463
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98379
98464
|
*
|
|
98380
98465
|
* @remarks
|
|
98381
98466
|
* [Api set: WordApi 1.3]
|
|
98382
98467
|
*/
|
|
98383
98468
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98384
98469
|
/**
|
|
98385
|
-
* For EACH ITEM in the collection: Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98470
|
+
* For EACH ITEM in the collection: Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98386
98471
|
*
|
|
98387
98472
|
* @remarks
|
|
98388
98473
|
* [Api set: WordApi 1.3]
|
|
@@ -98629,14 +98714,14 @@ declare namespace Word {
|
|
|
98629
98714
|
*/
|
|
98630
98715
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
98631
98716
|
/**
|
|
98632
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98717
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98633
98718
|
*
|
|
98634
98719
|
* @remarks
|
|
98635
98720
|
* [Api set: WordApi 1.3]
|
|
98636
98721
|
*/
|
|
98637
98722
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
98638
98723
|
/**
|
|
98639
|
-
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98724
|
+
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98640
98725
|
*
|
|
98641
98726
|
* @remarks
|
|
98642
98727
|
* [Api set: WordApi 1.3]
|
|
@@ -98657,7 +98742,7 @@ declare namespace Word {
|
|
|
98657
98742
|
*/
|
|
98658
98743
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98659
98744
|
/**
|
|
98660
|
-
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98745
|
+
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98661
98746
|
*
|
|
98662
98747
|
* @remarks
|
|
98663
98748
|
* [Api set: WordApi 1.3]
|
|
@@ -98678,14 +98763,14 @@ declare namespace Word {
|
|
|
98678
98763
|
*/
|
|
98679
98764
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98680
98765
|
/**
|
|
98681
|
-
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98766
|
+
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98682
98767
|
*
|
|
98683
98768
|
* @remarks
|
|
98684
98769
|
* [Api set: WordApi 1.3]
|
|
98685
98770
|
*/
|
|
98686
98771
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98687
98772
|
/**
|
|
98688
|
-
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98773
|
+
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98689
98774
|
*
|
|
98690
98775
|
* @remarks
|
|
98691
98776
|
* [Api set: WordApi 1.3]
|
|
@@ -98837,14 +98922,14 @@ declare namespace Word {
|
|
|
98837
98922
|
*/
|
|
98838
98923
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
98839
98924
|
/**
|
|
98840
|
-
* For EACH ITEM in the collection: Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98925
|
+
* For EACH ITEM in the collection: Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98841
98926
|
*
|
|
98842
98927
|
* @remarks
|
|
98843
98928
|
* [Api set: WordApi 1.3]
|
|
98844
98929
|
*/
|
|
98845
98930
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
98846
98931
|
/**
|
|
98847
|
-
* For EACH ITEM in the collection: Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98932
|
+
* For EACH ITEM in the collection: Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98848
98933
|
*
|
|
98849
98934
|
* @remarks
|
|
98850
98935
|
* [Api set: WordApi 1.3]
|
|
@@ -98865,7 +98950,7 @@ declare namespace Word {
|
|
|
98865
98950
|
*/
|
|
98866
98951
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98867
98952
|
/**
|
|
98868
|
-
* For EACH ITEM in the collection: Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98953
|
+
* For EACH ITEM in the collection: Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98869
98954
|
*
|
|
98870
98955
|
* @remarks
|
|
98871
98956
|
* [Api set: WordApi 1.3]
|
|
@@ -98886,14 +98971,14 @@ declare namespace Word {
|
|
|
98886
98971
|
*/
|
|
98887
98972
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98888
98973
|
/**
|
|
98889
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98974
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98890
98975
|
*
|
|
98891
98976
|
* @remarks
|
|
98892
98977
|
* [Api set: WordApi 1.3]
|
|
98893
98978
|
*/
|
|
98894
98979
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98895
98980
|
/**
|
|
98896
|
-
* For EACH ITEM in the collection: Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98981
|
+
* For EACH ITEM in the collection: Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98897
98982
|
*
|
|
98898
98983
|
* @remarks
|
|
98899
98984
|
* [Api set: WordApi 1.3]
|
|
@@ -99155,7 +99240,7 @@ declare namespace Word {
|
|
|
99155
99240
|
*/
|
|
99156
99241
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99157
99242
|
/**
|
|
99158
|
-
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99243
|
+
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99159
99244
|
*
|
|
99160
99245
|
* @remarks
|
|
99161
99246
|
* [Api set: WordApi 1.3]
|
|
@@ -99176,14 +99261,14 @@ declare namespace Word {
|
|
|
99176
99261
|
*/
|
|
99177
99262
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99178
99263
|
/**
|
|
99179
|
-
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99264
|
+
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99180
99265
|
*
|
|
99181
99266
|
* @remarks
|
|
99182
99267
|
* [Api set: WordApi 1.3]
|
|
99183
99268
|
*/
|
|
99184
99269
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99185
99270
|
/**
|
|
99186
|
-
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99271
|
+
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99187
99272
|
*
|
|
99188
99273
|
* @remarks
|
|
99189
99274
|
* [Api set: WordApi 1.3]
|
|
@@ -99258,7 +99343,7 @@ declare namespace Word {
|
|
|
99258
99343
|
*/
|
|
99259
99344
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99260
99345
|
/**
|
|
99261
|
-
* For EACH ITEM in the collection: Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99346
|
+
* For EACH ITEM in the collection: Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99262
99347
|
*
|
|
99263
99348
|
* @remarks
|
|
99264
99349
|
* [Api set: WordApi 1.3]
|
|
@@ -99279,14 +99364,14 @@ declare namespace Word {
|
|
|
99279
99364
|
*/
|
|
99280
99365
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99281
99366
|
/**
|
|
99282
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99367
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99283
99368
|
*
|
|
99284
99369
|
* @remarks
|
|
99285
99370
|
* [Api set: WordApi 1.3]
|
|
99286
99371
|
*/
|
|
99287
99372
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99288
99373
|
/**
|
|
99289
|
-
* For EACH ITEM in the collection: Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99374
|
+
* For EACH ITEM in the collection: Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99290
99375
|
*
|
|
99291
99376
|
* @remarks
|
|
99292
99377
|
* [Api set: WordApi 1.3]
|
|
@@ -99330,7 +99415,7 @@ declare namespace Word {
|
|
|
99330
99415
|
}
|
|
99331
99416
|
/**
|
|
99332
99417
|
* Specifies the options to be included in a search operation.
|
|
99333
|
-
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://
|
|
99418
|
+
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://learn.microsoft.com/office/dev/add-ins/word/search-option-guidance | Use search options to find text in your Word add-in}.
|
|
99334
99419
|
*
|
|
99335
99420
|
* @remarks
|
|
99336
99421
|
* [Api set: WordApi 1.1]
|
|
@@ -99719,7 +99804,7 @@ declare namespace Word {
|
|
|
99719
99804
|
*/
|
|
99720
99805
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99721
99806
|
/**
|
|
99722
|
-
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99807
|
+
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99723
99808
|
*
|
|
99724
99809
|
* @remarks
|
|
99725
99810
|
* [Api set: WordApi 1.3]
|
|
@@ -99740,14 +99825,14 @@ declare namespace Word {
|
|
|
99740
99825
|
*/
|
|
99741
99826
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99742
99827
|
/**
|
|
99743
|
-
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99828
|
+
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99744
99829
|
*
|
|
99745
99830
|
* @remarks
|
|
99746
99831
|
* [Api set: WordApi 1.3]
|
|
99747
99832
|
*/
|
|
99748
99833
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99749
99834
|
/**
|
|
99750
|
-
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99835
|
+
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99751
99836
|
*
|
|
99752
99837
|
* @remarks
|
|
99753
99838
|
* [Api set: WordApi 1.3]
|
|
@@ -99906,7 +99991,7 @@ declare namespace Word {
|
|
|
99906
99991
|
*/
|
|
99907
99992
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99908
99993
|
/**
|
|
99909
|
-
* For EACH ITEM in the collection: Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99994
|
+
* For EACH ITEM in the collection: Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99910
99995
|
*
|
|
99911
99996
|
* @remarks
|
|
99912
99997
|
* [Api set: WordApi 1.3]
|
|
@@ -99927,14 +100012,14 @@ declare namespace Word {
|
|
|
99927
100012
|
*/
|
|
99928
100013
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99929
100014
|
/**
|
|
99930
|
-
* For EACH ITEM in the collection: Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
100015
|
+
* For EACH ITEM in the collection: Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99931
100016
|
*
|
|
99932
100017
|
* @remarks
|
|
99933
100018
|
* [Api set: WordApi 1.3]
|
|
99934
100019
|
*/
|
|
99935
100020
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99936
100021
|
/**
|
|
99937
|
-
* For EACH ITEM in the collection: Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
100022
|
+
* For EACH ITEM in the collection: Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99938
100023
|
*
|
|
99939
100024
|
* @remarks
|
|
99940
100025
|
* [Api set: WordApi 1.3]
|