@types/office-js-preview 1.0.318 → 1.0.321

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.
@@ -274,8 +274,8 @@ declare namespace Office {
274
274
  *
275
275
  * **Support details**
276
276
  *
277
- * A capital Y in the following matrix indicates that this method is supported in the corresponding Office host application.
278
- * An empty cell indicates that the Office host application doesn't support this method.
277
+ * A capital Y in the following matrix indicates that this function is supported in the corresponding Office host application.
278
+ * An empty cell indicates that the Office host application doesn't support this function.
279
279
  *
280
280
  * For more information about Office host application and server requirements, see
281
281
  * {@link https://docs.microsoft.com/office/dev/add-ins/concepts/requirements-for-running-office-add-ins | Requirements for running Office Add-ins}.
@@ -299,7 +299,7 @@ declare namespace Office {
299
299
  * also be used outside the add-in. In that case, once Office.js determines that it is running outside of an Office host application, it will call
300
300
  * the callback and resolve the promise with "null" for both the host and platform.
301
301
  *
302
- * @param callback - An optional callback method, that will receive the host and platform info.
302
+ * @param callback - An optional callback function, that will receive the host and platform info.
303
303
  * Alternatively, rather than use a callback, an add-in may simply wait for the Promise returned by the function to resolve.
304
304
  * @returns A Promise that contains the host and platform info, once initialization is completed.
305
305
  */
@@ -311,8 +311,8 @@ declare namespace Office {
311
311
  *
312
312
  * **Support details**
313
313
  *
314
- * A capital Y in the following matrix indicates that this method is supported in the corresponding Office host application.
315
- * An empty cell indicates that the Office host application doesn't support this method.
314
+ * A capital Y in the following matrix indicates that this function is supported in the corresponding Office host application.
315
+ * An empty cell indicates that the Office host application doesn't support this function.
316
316
  *
317
317
  * For more information about Office host application and server requirements, see
318
318
  * {@link https://docs.microsoft.com/office/dev/add-ins/concepts/requirements-for-running-office-add-ins | Requirements for running Office Add-ins}.
@@ -1263,7 +1263,7 @@ declare namespace Office {
1263
1263
  *
1264
1264
  * @param startAddress - Accepts the initial full HTTPS URL that opens in the dialog. Relative URLs must not be used.
1265
1265
  * @param options - Optional. Accepts an {@link Office.DialogOptions} object to define dialog display.
1266
- * @param callback - Optional. Accepts a callback method to handle the dialog creation attempt. If successful, the AsyncResult.value is a Dialog object.
1266
+ * @param callback - Optional. Accepts a callback function to handle the dialog creation attempt. If successful, the AsyncResult.value is a Dialog object.
1267
1267
  */
1268
1268
  displayDialogAsync(startAddress: string, options?: DialogOptions, callback?: (result: AsyncResult<Dialog>) => void): void;
1269
1269
  /**
@@ -1363,7 +1363,7 @@ declare namespace Office {
1363
1363
  * </table>
1364
1364
  *
1365
1365
  * @param startAddress - Accepts the initial full HTTPS URL that opens in the dialog. Relative URLs must not be used.
1366
- * @param callback - Optional. Accepts a callback method to handle the dialog creation attempt. If successful, the AsyncResult.value is a Dialog object.
1366
+ * @param callback - Optional. Accepts a callback function to handle the dialog creation attempt. If successful, the AsyncResult.value is a Dialog object.
1367
1367
  */
1368
1368
  displayDialogAsync(startAddress: string, callback?: (result: AsyncResult<Dialog>) => void): void;
1369
1369
  /**
@@ -1497,7 +1497,7 @@ declare namespace Office {
1497
1497
  * Accounts and Microsoft Accounts. Microsoft Azure returns tokens intended for both user account types to access resources in the Microsoft Graph.
1498
1498
  *
1499
1499
  * @param options - Optional. Accepts an `AuthOptions` object to define sign-on behaviors.
1500
- * @param callback - Optional. Accepts a callback method that can parse the token for the user's ID or use the token in the "on behalf of" flow to get access to Microsoft Graph.
1500
+ * @param callback - Optional. Accepts a callback function that can parse the token for the user's ID or use the token in the "on behalf of" flow to get access to Microsoft Graph.
1501
1501
  * If `AsyncResult.status` is "succeeded", then `AsyncResult.value` is the raw AAD v. 2.0-formatted access token.
1502
1502
  */
1503
1503
  getAccessTokenAsync(options?: AuthOptions, callback?: (result: AsyncResult<string>) => void): void;
@@ -1521,7 +1521,7 @@ declare namespace Office {
1521
1521
  * This API requires a single sign-on configuration that bridges the add-in to an Azure application. Office users sign in with Organizational
1522
1522
  * Accounts and Microsoft Accounts. Microsoft Azure returns tokens intended for both user account types to access resources in the Microsoft Graph.
1523
1523
  *
1524
- * @param callback - Optional. Accepts a callback method that can parse the token for the user's ID or use the token in the "on behalf of" flow to get access to Microsoft Graph.
1524
+ * @param callback - Optional. Accepts a callback function that can parse the token for the user's ID or use the token in the "on behalf of" flow to get access to Microsoft Graph.
1525
1525
  * If `AsyncResult.status` is "succeeded", then `AsyncResult.value` is the raw AAD v. 2.0-formatted access token.
1526
1526
  */
1527
1527
  getAccessTokenAsync(callback?: (result: AsyncResult<string>) => void): void;
@@ -2045,7 +2045,7 @@ declare namespace Office {
2045
2045
  }
2046
2046
 
2047
2047
  /**
2048
- * Returns a promise of an object described in the expression. Callback is invoked only if method fails.
2048
+ * Returns a promise of an object described in the expression. Callback is invoked only if the function fails.
2049
2049
  *
2050
2050
  * @param expression The object to be retrieved. Example "bindings#BindingName", retrieves a binding promise for a binding named 'BindingName'
2051
2051
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -2054,8 +2054,8 @@ declare namespace Office {
2054
2054
  *
2055
2055
  * **Support details**
2056
2056
  *
2057
- * A capital Y in the following matrix indicates that this method is supported in the corresponding Office host application.
2058
- * An empty cell indicates that the Office host application doesn't support this method.
2057
+ * A capital Y in the following matrix indicates that this function is supported in the corresponding Office host application.
2058
+ * An empty cell indicates that the Office host application doesn't support this function.
2059
2059
  *
2060
2060
  * For more information about Office host application and server requirements, see
2061
2061
  * {@link https://docs.microsoft.com/office/dev/add-ins/concepts/requirements-for-running-office-add-ins | Requirements for running Office Add-ins}.
@@ -9888,7 +9888,7 @@ declare namespace Office {
9888
9888
  * @param uri - The URI that provides the location of the file to attach to the message or appointment. The maximum length is 2048 characters.
9889
9889
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
9890
9890
  * @param options - An object literal that contains one or more of the following properties.
9891
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
9891
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
9892
9892
  * `isInline`: If true, indicates that the attachment will be shown inline in the message body,
9893
9893
  * and should not be displayed in the attachment list.
9894
9894
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
@@ -9959,10 +9959,15 @@ declare namespace Office {
9959
9959
  *
9960
9960
  * - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
9961
9961
  *
9962
+ * **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
9963
+ * {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
9964
+ * method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
9965
+ * For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
9966
+ *
9962
9967
  * @param base64File - The base64 encoded content of an image or file to be added to an email or event.
9963
9968
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
9964
9969
  * @param options - An object literal that contains one or more of the following properties.
9965
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
9970
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
9966
9971
  * `isInline`: If true, indicates that the attachment will be shown inline in the message body
9967
9972
  * and should not be displayed in the attachment list.
9968
9973
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
@@ -9998,6 +10003,11 @@ declare namespace Office {
9998
10003
  *
9999
10004
  * - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
10000
10005
  *
10006
+ * **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
10007
+ * {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
10008
+ * method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
10009
+ * For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
10010
+ *
10001
10011
  * @param base64File - The base64 encoded content of an image or file to be added to an email or event.
10002
10012
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
10003
10013
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
@@ -10024,7 +10034,7 @@ declare namespace Office {
10024
10034
  * @param handler - The function to handle the event. The function must accept a single parameter, which is an object literal.
10025
10035
  * The `type` property on the parameter will match the `eventType` parameter passed to `addHandlerAsync`.
10026
10036
  * @param options - An object literal that contains one or more of the following properties.
10027
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10037
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10028
10038
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
10029
10039
  * `asyncResult`, which is an `Office.AsyncResult` object.
10030
10040
  */
@@ -10053,9 +10063,9 @@ declare namespace Office {
10053
10063
  * Adds an Exchange item, such as a message, as an attachment to the message or appointment.
10054
10064
  *
10055
10065
  * The `addItemAttachmentAsync` method attaches the item with the specified Exchange identifier to the item in the compose form.
10056
- * If you specify a callback method, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
10066
+ * If you specify a callback function, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
10057
10067
  * a code that indicates any error that occurred while attaching the item.
10058
- * You can use the `options` parameter to pass state information to the callback method, if needed.
10068
+ * You can use the `options` parameter to pass state information to the callback function, if needed.
10059
10069
  *
10060
10070
  * You can subsequently use the identifier with the `removeAttachmentAsync` method to remove the attachment in the same session.
10061
10071
  *
@@ -10076,7 +10086,7 @@ declare namespace Office {
10076
10086
  * @param itemId - The Exchange identifier of the item to attach. The maximum length is 100 characters.
10077
10087
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
10078
10088
  * @param options - An object literal that contains one or more of the following properties.
10079
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10089
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10080
10090
  * @param callback - Optional. When the method completes, the function passed in the callback parameter is called with a single parameter of
10081
10091
  * type `Office.AsyncResult`.
10082
10092
  * On success, the attachment identifier will be provided in the `asyncResult.value` property.
@@ -10088,9 +10098,9 @@ declare namespace Office {
10088
10098
  * Adds an Exchange item, such as a message, as an attachment to the message or appointment.
10089
10099
  *
10090
10100
  * The `addItemAttachmentAsync` method attaches the item with the specified Exchange identifier to the item in the compose form.
10091
- * If you specify a callback method, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
10101
+ * If you specify a callback function, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
10092
10102
  * a code that indicates any error that occurred while attaching the item.
10093
- * You can use the `options` parameter to pass state information to the callback method, if needed.
10103
+ * You can use the `options` parameter to pass state information to the callback function, if needed.
10094
10104
  *
10095
10105
  * You can subsequently use the identifier with the `removeAttachmentAsync` method to remove the attachment in the same session.
10096
10106
  *
@@ -10152,7 +10162,7 @@ declare namespace Office {
10152
10162
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10153
10163
  *
10154
10164
  * @param options - An object literal that contains one or more of the following properties.
10155
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10165
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10156
10166
  * @param callback - Optional. When the method completes, the function passed in the callback parameter is called with a single parameter,
10157
10167
  * `asyncResult`, which is an `Office.AsyncResult` object.
10158
10168
  */
@@ -10201,7 +10211,7 @@ declare namespace Office {
10201
10211
  *
10202
10212
  * @param attachmentId - The identifier of the attachment you want to get.
10203
10213
  * @param options - An object literal that contains one or more of the following properties.
10204
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10214
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10205
10215
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
10206
10216
  * `asyncResult`, which is an `Office.AsyncResult` object. If the call fails, the `asyncResult.error` property will contain
10207
10217
  * an error code with the reason for the failure.
@@ -10247,7 +10257,7 @@ declare namespace Office {
10247
10257
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10248
10258
  *
10249
10259
  * @param options - An object literal that contains one or more of the following properties.
10250
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10260
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10251
10261
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
10252
10262
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
10253
10263
  * the failure.
@@ -10284,7 +10294,7 @@ declare namespace Office {
10284
10294
  * More information on {@link https://docs.microsoft.com/outlook/actionable-messages/invoke-add-in-from-actionable-message | actionable messages}.
10285
10295
  *
10286
10296
  * @param options - An object literal that contains one or more of the following properties.
10287
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10297
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10288
10298
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
10289
10299
  * of type `Office.AsyncResult`.
10290
10300
  * On success, the initialization context data is provided in the `asyncResult.value` property as a string.
@@ -10321,7 +10331,7 @@ declare namespace Office {
10321
10331
  /**
10322
10332
  * Asynchronously gets the ID of a saved item.
10323
10333
  *
10324
- * When invoked, this method returns the item ID via the callback method.
10334
+ * When invoked, this method returns the item ID via the callback function.
10325
10335
  *
10326
10336
  * **Note**: If your add-in calls `getItemIdAsync` on an item in compose mode (e.g., to get an `itemId` to use with EWS or the REST API),
10327
10337
  * be aware that when Outlook is in cached mode, it may take some time before the item is synced to the server.
@@ -10339,7 +10349,7 @@ declare namespace Office {
10339
10349
  * - `ItemNotSaved`: The id can't be retrieved until the item is saved.
10340
10350
  *
10341
10351
  * @param options - An object literal that contains one or more of the following properties.
10342
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10352
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10343
10353
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter
10344
10354
  * of type `Office.AsyncResult`.
10345
10355
  */
@@ -10347,7 +10357,7 @@ declare namespace Office {
10347
10357
  /**
10348
10358
  * Asynchronously gets the ID of a saved item.
10349
10359
  *
10350
- * When invoked, this method returns the item ID via the callback method.
10360
+ * When invoked, this method returns the item ID via the callback function.
10351
10361
  *
10352
10362
  * **Note**: If your add-in calls `getItemIdAsync` on an item in compose mode (e.g., to get an `itemId` to use with EWS or the REST API),
10353
10363
  * be aware that when Outlook is in cached mode, it may take some time before the item is synced to the server.
@@ -10374,7 +10384,7 @@ declare namespace Office {
10374
10384
  * If there is no selection but the cursor is in the body or subject, the method returns an empty string for the selected data.
10375
10385
  * If a field other than the body or subject is selected, the method returns the `InvalidSelection` error.
10376
10386
  *
10377
- * To access the selected data from the callback method, call `asyncResult.value.data`.
10387
+ * To access the selected data from the callback function, call `asyncResult.value.data`.
10378
10388
  * To access the `source` property that the selection comes from, call `asyncResult.value.sourceProperty`, which will be either `body` or `subject`.
10379
10389
  *
10380
10390
  * @returns
@@ -10390,7 +10400,7 @@ declare namespace Office {
10390
10400
  * @param coercionType - Requests a format for the data. If `Text`, the method returns the plain text as a string, removing any HTML tags present.
10391
10401
  * If `HTML`, the method returns the selected text, whether it is plaintext or HTML.
10392
10402
  * @param options - An object literal that contains one or more of the following properties.
10393
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10403
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10394
10404
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter
10395
10405
  * of type `Office.AsyncResult`.
10396
10406
  */
@@ -10401,7 +10411,7 @@ declare namespace Office {
10401
10411
  * If there is no selection but the cursor is in the body or subject, the method returns an empty string for the selected data.
10402
10412
  * If a field other than the body or subject is selected, the method returns the `InvalidSelection` error.
10403
10413
  *
10404
- * To access the selected data from the callback method, call `asyncResult.value.data`.
10414
+ * To access the selected data from the callback function, call `asyncResult.value.data`.
10405
10415
  * To access the `source` property that the selection comes from, call `asyncResult.value.sourceProperty`, which will be either `body` or `subject`.
10406
10416
  *
10407
10417
  * @returns
@@ -10436,7 +10446,7 @@ declare namespace Office {
10436
10446
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10437
10447
  *
10438
10448
  * @param options - An object literal that contains one or more of the following properties.
10439
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10449
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10440
10450
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
10441
10451
  * type `Office.AsyncResult`.
10442
10452
  * The `value` property of the result is the properties of the shared item.
@@ -10478,7 +10488,7 @@ declare namespace Office {
10478
10488
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Organizer
10479
10489
  *
10480
10490
  * @param options - An object literal that contains one or more of the following properties.
10481
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10491
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10482
10492
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
10483
10493
  * type `Office.AsyncResult`.
10484
10494
  */
@@ -10548,7 +10558,7 @@ declare namespace Office {
10548
10558
  * @param attachmentId - The identifier of the attachment to remove. The maximum string length of the `attachmentId`
10549
10559
  * is 200 characters in Outlook on the web and on Windows.
10550
10560
  * @param options - An object literal that contains one or more of the following properties.
10551
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10561
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10552
10562
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
10553
10563
  * type `Office.AsyncResult`.
10554
10564
  * If removing the attachment fails, the `asyncResult.error` property will contain an error code with the reason for the failure.
@@ -10596,7 +10606,7 @@ declare namespace Office {
10596
10606
  *
10597
10607
  * @param eventType - The event that should revoke the handler.
10598
10608
  * @param options - An object literal that contains one or more of the following properties.
10599
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10609
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10600
10610
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
10601
10611
  * `asyncResult`, which is an `Office.AsyncResult` object.
10602
10612
  */
@@ -10622,7 +10632,7 @@ declare namespace Office {
10622
10632
  /**
10623
10633
  * Asynchronously saves an item.
10624
10634
  *
10625
- * When invoked, this method saves the current message as a draft and returns the item ID via the callback method.
10635
+ * When invoked, this method saves the current message as a draft and returns the item ID via the callback function.
10626
10636
  * In Outlook on the web or Outlook in online mode, the item is saved to the server.
10627
10637
  * In Outlook in cached mode, the item is saved to the local cache.
10628
10638
  *
@@ -10653,7 +10663,7 @@ declare namespace Office {
10653
10663
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
10654
10664
  *
10655
10665
  * @param options - An object literal that contains one or more of the following properties.
10656
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10666
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10657
10667
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
10658
10668
  * type `Office.AsyncResult`.
10659
10669
  */
@@ -10661,7 +10671,7 @@ declare namespace Office {
10661
10671
  /**
10662
10672
  * Asynchronously saves an item.
10663
10673
  *
10664
- * When invoked, this method saves the current message as a draft and returns the item ID via the callback method.
10674
+ * When invoked, this method saves the current message as a draft and returns the item ID via the callback function.
10665
10675
  * In Outlook on the web or Outlook in online mode, the item is saved to the server. In Outlook in cached mode, the item is saved to the local cache.
10666
10676
  *
10667
10677
  * Since appointments have no draft state, if `saveAsync` is called on an appointment in compose mode, the item will be saved as a normal
@@ -10715,7 +10725,7 @@ declare namespace Office {
10715
10725
  * @param data - The data to be inserted. Data is not to exceed 1,000,000 characters.
10716
10726
  * If more than 1,000,000 characters are passed in, an `ArgumentOutOfRange` exception is thrown.
10717
10727
  * @param options - An object literal that contains one or more of the following properties.
10718
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
10728
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
10719
10729
  * `coercionType`: If text, the current style is applied in Outlook on the web and Windows.
10720
10730
  * If the field is an HTML editor, only the text data is inserted, even if the data is HTML.
10721
10731
  * If html and the field supports HTML (the subject doesn't), the current style is applied in Outlook on the web and the
@@ -11288,7 +11298,7 @@ declare namespace Office {
11288
11298
  * @param handler - The function to handle the event. The function must accept a single parameter, which is an object literal.
11289
11299
  * The `type` property on the parameter will match the `eventType` parameter passed to `addHandlerAsync`.
11290
11300
  * @param options - An object literal that contains one or more of the following properties.
11291
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
11301
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11292
11302
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
11293
11303
  * `asyncResult`, which is an `Office.AsyncResult` object.
11294
11304
  */
@@ -11359,7 +11369,7 @@ declare namespace Office {
11359
11369
  * @param formData - A string that contains text and HTML and that represents the body of the reply form. The string is limited to 32 KB
11360
11370
  * OR a {@link Office.ReplyFormData | ReplyFormData} object that contains body or attachment data and a callback function.
11361
11371
  * @param options - An object literal that contains one or more of the following properties.
11362
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
11372
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11363
11373
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
11364
11374
  * `asyncResult`, which is an `Office.AsyncResult` object.
11365
11375
  */
@@ -11434,7 +11444,7 @@ declare namespace Office {
11434
11444
  * @param formData - A string that contains text and HTML and that represents the body of the reply form. The string is limited to 32 KB
11435
11445
  * OR a {@link Office.ReplyFormData | ReplyFormData} object that contains body or attachment data and a callback function.
11436
11446
  * @param options - An object literal that contains one or more of the following properties.
11437
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
11447
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11438
11448
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
11439
11449
  * `asyncResult`, which is an `Office.AsyncResult` object.
11440
11450
  */
@@ -11489,7 +11499,7 @@ declare namespace Office {
11489
11499
  *
11490
11500
  * @param attachmentId - The identifier of the attachment you want to get.
11491
11501
  * @param options - An object literal that contains one or more of the following properties.
11492
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
11502
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11493
11503
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
11494
11504
  * `asyncResult`, which is an `Office.AsyncResult` object. If the call fails, the `asyncResult.error` property will contain
11495
11505
  * an error code with the reason for the failure.
@@ -11538,7 +11548,7 @@ declare namespace Office {
11538
11548
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Attendee
11539
11549
  *
11540
11550
  * @param options - An object literal that contains one or more of the following properties.
11541
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
11551
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11542
11552
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
11543
11553
  * of type `Office.AsyncResult`.
11544
11554
  * On success, the initialization context data is provided in the `asyncResult.value` property as a string.
@@ -11780,7 +11790,7 @@ declare namespace Office {
11780
11790
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Appointment Attendee
11781
11791
  *
11782
11792
  * @param options - An object literal that contains one or more of the following properties.
11783
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
11793
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11784
11794
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
11785
11795
  * type `Office.AsyncResult`.
11786
11796
  * The `value` property of the result is the properties of the shared item.
@@ -11844,7 +11854,7 @@ declare namespace Office {
11844
11854
  *
11845
11855
  * @param eventType - The event that should revoke the handler.
11846
11856
  * @param options - An object literal that contains one or more of the following properties.
11847
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
11857
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
11848
11858
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
11849
11859
  * `asyncResult`, which is an `Office.AsyncResult` object.
11850
11860
  */
@@ -12096,7 +12106,7 @@ declare namespace Office {
12096
12106
  *
12097
12107
  * @param data - The string to be added to the end of the body. The string is limited to 5,000 characters.
12098
12108
  * @param options - An object literal that contains one or more of the following properties.
12099
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12109
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12100
12110
  * `coercionType`: The desired format for the data to be appended. The string in the `data` parameter will be converted to this format.
12101
12111
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12102
12112
  * of type `Office.AsyncResult`. Any errors encountered will be provided in the `asyncResult.error` property.
@@ -12154,7 +12164,7 @@ declare namespace Office {
12154
12164
  *
12155
12165
  * @param coercionType - The format for the returned body.
12156
12166
  * @param options - An object literal that contains one or more of the following properties:
12157
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12167
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12158
12168
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12159
12169
  * of type Office.AsyncResult. The body is provided in the requested format in the `asyncResult.value` property.
12160
12170
  */
@@ -12191,7 +12201,7 @@ declare namespace Office {
12191
12201
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12192
12202
  *
12193
12203
  * @param options - An object literal that contains one or more of the following properties.
12194
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12204
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12195
12205
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12196
12206
  * of type `Office.AsyncResult`.
12197
12207
  * The content type is returned as one of the `CoercionType` values in the `asyncResult.value` property.
@@ -12240,7 +12250,7 @@ declare namespace Office {
12240
12250
  *
12241
12251
  * @param data - The string to be inserted at the beginning of the body. The string is limited to 1,000,000 characters.
12242
12252
  * @param options - An object literal that contains one or more of the following properties.
12243
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12253
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12244
12254
  * `coercionType`: The desired format for the body. The string in the `data` parameter will be converted to this format.
12245
12255
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12246
12256
  * of type `Office.AsyncResult`. Any errors encountered will be provided in the `asyncResult.error` property.
@@ -12306,7 +12316,7 @@ declare namespace Office {
12306
12316
  *
12307
12317
  * @param data - The string that will replace the existing body. The string is limited to 1,000,000 characters.
12308
12318
  * @param options - An object literal that contains one or more of the following properties.
12309
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12319
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12310
12320
  * `coercionType`: The desired format for the body. The string in the `data` parameter will be converted to this format.
12311
12321
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12312
12322
  * of type Office.AsyncResult. Any errors encountered will be provided in the `asyncResult.error` property.
@@ -12371,7 +12381,7 @@ declare namespace Office {
12371
12381
  *
12372
12382
  * @param data - The string that will replace the existing body. The string is limited to 1,000,000 characters.
12373
12383
  * @param options - An object literal that contains one or more of the following properties.
12374
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12384
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12375
12385
  * `coercionType`: The desired format for the body. The string in the `data` parameter will be converted to this format.
12376
12386
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12377
12387
  * of type `Office.AsyncResult`. Any errors encountered will be provided in the `asyncResult.error` property.
@@ -12434,7 +12444,7 @@ declare namespace Office {
12434
12444
  *
12435
12445
  * @param data - The string that represents the signature to be set in the body of the mail. This string is limited to 30,000 characters.
12436
12446
  * @param options - An object literal that contains one or more of the following properties.
12437
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12447
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12438
12448
  * `coercionType`: The format the signature should be set to. If Text, the method sets the signature to plain text,
12439
12449
  * removing any HTML tags present. If Html, the method sets the signature to HTML.
12440
12450
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
@@ -12508,7 +12518,7 @@ declare namespace Office {
12508
12518
  *
12509
12519
  * @param categories - The categories to be added to the item.
12510
12520
  * @param options - An object literal that contains one or more of the following properties.
12511
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12521
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12512
12522
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
12513
12523
  * type `Office.AsyncResult`.
12514
12524
  */
@@ -12553,7 +12563,7 @@ declare namespace Office {
12553
12563
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
12554
12564
  *
12555
12565
  * @param options - An object literal that contains one or more of the following properties.
12556
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12566
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12557
12567
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
12558
12568
  * type `Office.AsyncResult`. If getting categories fails, the `asyncResult.error` property will contain an error code.
12559
12569
  */
@@ -12593,7 +12603,7 @@ declare namespace Office {
12593
12603
  *
12594
12604
  * @param categories - The categories to be removed from the item.
12595
12605
  * @param options - An object literal that contains one or more of the following properties.
12596
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12606
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12597
12607
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
12598
12608
  * type `Office.AsyncResult`. If removing categories fails, the `asyncResult.error` property will contain an error code.
12599
12609
  */
@@ -12746,7 +12756,7 @@ declare namespace Office {
12746
12756
  * In particular, a read add-in can be activated while the user is in a connected state in a read form, and subsequently the user becomes
12747
12757
  * disconnected.
12748
12758
  * If the add-in calls `saveAsync` while in the disconnected state, `saveAsync` would return an error.
12749
- * Your callback method should handle this error accordingly.
12759
+ * Your callback function should handle this error accordingly.
12750
12760
  *
12751
12761
  * @remarks
12752
12762
  *
@@ -12756,7 +12766,7 @@ declare namespace Office {
12756
12766
  *
12757
12767
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
12758
12768
  * type `Office.AsyncResult`.
12759
- * @param asyncContext - Optional. Any state data that is passed to the callback method.
12769
+ * @param asyncContext - Optional. Any state data that is passed to the callback function.
12760
12770
  */
12761
12771
  saveAsync(callback: (asyncResult: Office.AsyncResult<void>) => void, asyncContext?: any): void;
12762
12772
  /**
@@ -12769,7 +12779,7 @@ declare namespace Office {
12769
12779
  * In particular, a read add-in can be activated while the user is in a connected state in a read form, and subsequently the user becomes
12770
12780
  * disconnected.
12771
12781
  * If the add-in calls `saveAsync` while in the disconnected state, `saveAsync` would return an error.
12772
- * Your callback method should handle this error accordingly.
12782
+ * Your callback function should handle this error accordingly.
12773
12783
  *
12774
12784
  * @remarks
12775
12785
  *
@@ -12777,7 +12787,7 @@ declare namespace Office {
12777
12787
  *
12778
12788
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
12779
12789
  *
12780
- * @param asyncContext - Optional. Any state data that is passed to the callback method.
12790
+ * @param asyncContext - Optional. Any state data that is passed to the callback function.
12781
12791
  */
12782
12792
  saveAsync(asyncContext?: any): void;
12783
12793
  /**
@@ -12824,7 +12834,7 @@ declare namespace Office {
12824
12834
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
12825
12835
  *
12826
12836
  * @param options - An object literal that contains one or more of the following properties:
12827
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12837
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12828
12838
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
12829
12839
  * `asyncResult`, which is an `Office.AsyncResult` object.
12830
12840
  *
@@ -12859,7 +12869,7 @@ declare namespace Office {
12859
12869
  *
12860
12870
  * @param datetime - The future date and time when the message should be sent.
12861
12871
  * @param options - An object literal that contains one or more of the following properties.
12862
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
12872
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
12863
12873
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
12864
12874
  * of type Office.AsyncResult. Any errors encountered will be provided in the `asyncResult.error` property.
12865
12875
  *
@@ -13035,7 +13045,7 @@ declare namespace Office {
13035
13045
  *
13036
13046
  * @param locationIdentifiers The locations to be added to the current list of locations.
13037
13047
  * @param options An object literal that contains one or more of the following properties.
13038
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13048
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13039
13049
  * @param callback Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
13040
13050
  * `asyncResult`, which is an `Office.AsyncResult` object. Check the `status` property of `asyncResult` to determine if the call succeeded.
13041
13051
  */
@@ -13070,7 +13080,7 @@ declare namespace Office {
13070
13080
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
13071
13081
  *
13072
13082
  * @param options An object literal that contains one or more of the following properties.
13073
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13083
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13074
13084
  * @param callback Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
13075
13085
  * `asyncResult`, which is an `Office.AsyncResult` object.
13076
13086
  */
@@ -13103,7 +13113,7 @@ declare namespace Office {
13103
13113
  *
13104
13114
  * @param locationIdentifiers The locations to be removed from the current list of locations.
13105
13115
  * @param options An object literal that contains one or more of the following properties.
13106
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13116
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13107
13117
  * @param callback Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
13108
13118
  * `asyncResult`, which is an `Office.AsyncResult` object. Check the `status` property of `asyncResult` to determine if the call succeeded.
13109
13119
  */
@@ -13236,7 +13246,7 @@ declare namespace Office {
13236
13246
  * The email sender is always a user whose email address is on the Exchange server.
13237
13247
  *
13238
13248
  * @param options - An object literal that contains one or more of the following properties.
13239
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13249
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13240
13250
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
13241
13251
  * `asyncResult`, which is an `Office.AsyncResult` object.
13242
13252
  * The `value` property of the result is the item's from value, as an `EmailAddressDetails` object.
@@ -13353,7 +13363,7 @@ declare namespace Office {
13353
13363
  *
13354
13364
  * @param names - The names of the internet headers to be returned.
13355
13365
  * @param options - An object literal that contains one or more of the following properties:
13356
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13366
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13357
13367
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
13358
13368
  * `asyncResult`, which is an `Office.AsyncResult` object.
13359
13369
  */
@@ -13390,7 +13400,7 @@ declare namespace Office {
13390
13400
  *
13391
13401
  * @param names - The names of the internet headers to be removed.
13392
13402
  * @param options - An object literal that contains one or more of the following properties:
13393
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13403
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13394
13404
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
13395
13405
  * `asyncResult`, which is an `Office.AsyncResult` object.
13396
13406
  */
@@ -13430,7 +13440,7 @@ declare namespace Office {
13430
13440
  * @param headers - The names and corresponding values of the headers to be set. Should be a dictionary object with keys being the names of the
13431
13441
  * internet headers and values being the values of the internet headers.
13432
13442
  * @param options - An object literal that contains one or more of the following properties.
13433
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13443
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13434
13444
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
13435
13445
  * of type Office.AsyncResult. Any errors encountered will be provided in the `asyncResult.error` property.
13436
13446
  */
@@ -13580,7 +13590,7 @@ declare namespace Office {
13580
13590
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
13581
13591
  *
13582
13592
  * @param options - An object literal that contains one or more of the following properties.
13583
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13593
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13584
13594
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
13585
13595
  * type `Office.AsyncResult`.
13586
13596
  */
@@ -13621,7 +13631,7 @@ declare namespace Office {
13621
13631
  *
13622
13632
  * @param location - The location of the appointment. The string is limited to 255 characters.
13623
13633
  * @param options - An object literal that contains one or more of the following properties.
13624
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
13634
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13625
13635
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
13626
13636
  * type `Office.AsyncResult`. If setting the location fails, the `asyncResult.error` property will contain an error code.
13627
13637
  */
@@ -13990,7 +14000,7 @@ declare namespace Office {
13990
14000
  *
13991
14001
  * @param itemId - The Exchange Web Services (EWS) identifier for an existing calendar appointment.
13992
14002
  * @param options - An object literal that contains one or more of the following properties.
13993
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
14003
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
13994
14004
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
13995
14005
  * `asyncResult`, which is an `Office.AsyncResult` object.
13996
14006
  */
@@ -14073,7 +14083,7 @@ declare namespace Office {
14073
14083
  *
14074
14084
  * @param itemId - The Exchange Web Services (EWS) identifier for an existing message.
14075
14085
  * @param options - An object literal that contains one or more of the following properties.
14076
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
14086
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
14077
14087
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
14078
14088
  * `asyncResult`, which is an `Office.AsyncResult` object.
14079
14089
  */
@@ -14160,7 +14170,7 @@ declare namespace Office {
14160
14170
  *
14161
14171
  * @param parameters - An `AppointmentForm` describing the new appointment. All properties are optional.
14162
14172
  * @param options - An object literal that contains one or more of the following properties.
14163
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
14173
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
14164
14174
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
14165
14175
  * `asyncResult`, which is an `Office.AsyncResult` object.
14166
14176
  */
@@ -14288,7 +14298,7 @@ declare namespace Office {
14288
14298
  * `attachments.itemId`: Only used if type is set to item. The EWS item id of the existing e-mail you want to attach to the new message.
14289
14299
  * This is a string up to 100 characters.
14290
14300
  * @param options - An object literal that contains one or more of the following properties.
14291
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
14301
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
14292
14302
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
14293
14303
  * `asyncResult`, which is an `Office.AsyncResult` object.
14294
14304
  */
@@ -14614,7 +14624,7 @@ declare namespace Office {
14614
14624
  *
14615
14625
  * @param categories - The categories to be added to the master list on the mailbox.
14616
14626
  * @param options - An object literal that contains one or more of the following properties.
14617
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
14627
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
14618
14628
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
14619
14629
  * type `Office.AsyncResult`.
14620
14630
  */
@@ -14651,7 +14661,7 @@ declare namespace Office {
14651
14661
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
14652
14662
  *
14653
14663
  * @param options - An object literal that contains one or more of the following properties.
14654
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
14664
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
14655
14665
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
14656
14666
  * type `Office.AsyncResult`. If adding categories fails, the `asyncResult.error` property will contain an error code.
14657
14667
  */
@@ -14686,7 +14696,7 @@ declare namespace Office {
14686
14696
  *
14687
14697
  * @param categories - The categories to be removed from the master list on the mailbox.
14688
14698
  * @param options - An object literal that contains one or more of the following properties.
14689
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
14699
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
14690
14700
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
14691
14701
  * type `Office.AsyncResult`. If removing categories fails, the `asyncResult.error` property will contain an error code.
14692
14702
  */
@@ -15014,7 +15024,7 @@ declare namespace Office {
15014
15024
  * @param uri - The URI that provides the location of the file to attach to the message or appointment. The maximum length is 2048 characters.
15015
15025
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
15016
15026
  * @param options - An object literal that contains one or more of the following properties.
15017
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15027
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15018
15028
  * `isInline`: If true, indicates that the attachment will be shown inline in the message body, and should not be displayed in the
15019
15029
  * attachment list.
15020
15030
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
@@ -15083,10 +15093,15 @@ declare namespace Office {
15083
15093
  *
15084
15094
  * - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
15085
15095
  *
15096
+ * **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
15097
+ * {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
15098
+ * method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
15099
+ * For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
15100
+ *
15086
15101
  * @param base64File - The base64-encoded content of an image or file to be added to an email or event.
15087
15102
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
15088
15103
  * @param options - An object literal that contains one or more of the following properties.
15089
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15104
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15090
15105
  * `isInline`: If true, indicates that the attachment will be shown inline in the message body and should not be displayed in the attachment list.
15091
15106
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15092
15107
  * type Office.AsyncResult. On success, the attachment identifier will be provided in the `asyncResult.value` property.
@@ -15119,6 +15134,11 @@ declare namespace Office {
15119
15134
  *
15120
15135
  * - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
15121
15136
  *
15137
+ * **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
15138
+ * {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
15139
+ * method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
15140
+ * For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
15141
+ *
15122
15142
  * @param base64File - The base64-encoded content of an image or file to be added to an email or event.
15123
15143
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
15124
15144
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
@@ -15143,7 +15163,7 @@ declare namespace Office {
15143
15163
  * @param handler - The function to handle the event. The function must accept a single parameter, which is an object literal.
15144
15164
  * The `type` property on the parameter will match the `eventType` parameter passed to `addHandlerAsync`.
15145
15165
  * @param options - An object literal that contains one or more of the following properties.
15146
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15166
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15147
15167
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
15148
15168
  * `asyncResult`, which is an `Office.AsyncResult` object.
15149
15169
  */
@@ -15172,9 +15192,9 @@ declare namespace Office {
15172
15192
  * Adds an Exchange item, such as a message, as an attachment to the message or appointment.
15173
15193
  *
15174
15194
  * The `addItemAttachmentAsync` method attaches the item with the specified Exchange identifier to the item in the compose form.
15175
- * If you specify a callback method, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
15195
+ * If you specify a callback function, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
15176
15196
  * a code that indicates any error that occurred while attaching the item. You can use the options parameter to pass state information to the
15177
- * callback method, if needed.
15197
+ * callback function, if needed.
15178
15198
  *
15179
15199
  * You can subsequently use the identifier with the `removeAttachmentAsync` method to remove the attachment in the same session.
15180
15200
  *
@@ -15195,7 +15215,7 @@ declare namespace Office {
15195
15215
  * @param itemId - The Exchange identifier of the item to attach. The maximum length is 100 characters.
15196
15216
  * @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
15197
15217
  * @param options - An object literal that contains one or more of the following properties.
15198
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15218
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15199
15219
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15200
15220
  * type `Office.AsyncResult`. On success, the attachment identifier will be provided in the `asyncResult.value` property.
15201
15221
  * If adding the attachment fails, the `asyncResult` object will contain an `Error` object that provides a description of
@@ -15206,9 +15226,9 @@ declare namespace Office {
15206
15226
  * Adds an Exchange item, such as a message, as an attachment to the message or appointment.
15207
15227
  *
15208
15228
  * The `addItemAttachmentAsync` method attaches the item with the specified Exchange identifier to the item in the compose form.
15209
- * If you specify a callback method, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
15229
+ * If you specify a callback function, the method is called with one parameter, `asyncResult`, which contains either the attachment identifier or
15210
15230
  * a code that indicates any error that occurred while attaching the item. You can use the options parameter to pass state information to the
15211
- * callback method, if needed.
15231
+ * callback function, if needed.
15212
15232
  *
15213
15233
  * You can subsequently use the identifier with the `removeAttachmentAsync` method to remove the attachment in the same session.
15214
15234
  *
@@ -15269,7 +15289,7 @@ declare namespace Office {
15269
15289
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
15270
15290
  *
15271
15291
  * @param options - An object literal that contains one or more of the following properties.
15272
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15292
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15273
15293
  * @param callback - Optional. When the method completes, the function passed in the callback parameter is called with a single parameter,
15274
15294
  * `asyncResult`, which is an `Office.AsyncResult` object.
15275
15295
  */
@@ -15318,7 +15338,7 @@ declare namespace Office {
15318
15338
  *
15319
15339
  * @param attachmentId - The identifier of the attachment you want to get.
15320
15340
  * @param options - An object literal that contains one or more of the following properties.
15321
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15341
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15322
15342
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
15323
15343
  * `asyncResult`, which is an `Office.AsyncResult` object. If the call fails, the `asyncResult.error` property will contain
15324
15344
  * an error code with the reason for the failure.
@@ -15364,7 +15384,7 @@ declare namespace Office {
15364
15384
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
15365
15385
  *
15366
15386
  * @param options - An object literal that contains one or more of the following properties.
15367
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15387
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15368
15388
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15369
15389
  * type `Office.AsyncResult`. If the call fails, the `asyncResult.error` property will contain an error code with the reason for
15370
15390
  * the failure.
@@ -15397,7 +15417,7 @@ declare namespace Office {
15397
15417
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
15398
15418
  *
15399
15419
  * @param options - An object literal that contains one or more of the following properties.
15400
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15420
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15401
15421
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15402
15422
  * type `Office.AsyncResult`. On success, the `asyncResult.value` property contains an object with the item's compose type
15403
15423
  * and coercion type.
@@ -15441,7 +15461,7 @@ declare namespace Office {
15441
15461
  * More information on {@link https://docs.microsoft.com/outlook/actionable-messages/invoke-add-in-from-actionable-message | actionable messages}.
15442
15462
  *
15443
15463
  * @param options - An object literal that contains one or more of the following properties.
15444
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15464
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15445
15465
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
15446
15466
  * of type `Office.AsyncResult`.
15447
15467
  * On success, the initialization context data is provided in the `asyncResult.value` property as a string.
@@ -15478,7 +15498,7 @@ declare namespace Office {
15478
15498
  /**
15479
15499
  * Asynchronously gets the ID of a saved item.
15480
15500
  *
15481
- * When invoked, this method returns the item ID via the callback method.
15501
+ * When invoked, this method returns the item ID via the callback function.
15482
15502
  *
15483
15503
  * **Note**: If your add-in calls `getItemIdAsync` on an item in compose mode (e.g., to get an `itemId` to use with EWS or the REST API),
15484
15504
  * be aware that when Outlook is in cached mode, it may take some time before the item is synced to the server.
@@ -15496,7 +15516,7 @@ declare namespace Office {
15496
15516
  * - `ItemNotSaved`: The id can't be retrieved until the item is saved.
15497
15517
  *
15498
15518
  * @param options - An object literal that contains one or more of the following properties.
15499
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15519
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15500
15520
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter
15501
15521
  * of type `Office.AsyncResult`.
15502
15522
  */
@@ -15504,7 +15524,7 @@ declare namespace Office {
15504
15524
  /**
15505
15525
  * Asynchronously gets the ID of a saved item.
15506
15526
  *
15507
- * When invoked, this method returns the item ID via the callback method.
15527
+ * When invoked, this method returns the item ID via the callback function.
15508
15528
  *
15509
15529
  * **Note**: If your add-in calls `getItemIdAsync` on an item in compose mode (e.g., to get an `itemId` to use with EWS or the REST API),
15510
15530
  * be aware that when Outlook is in cached mode, it may take some time before the item is synced to the server.
@@ -15531,7 +15551,7 @@ declare namespace Office {
15531
15551
  * If there is no selection but the cursor is in the body or subject, the method returns an empty string for the selected data.
15532
15552
  * If a field other than the body or subject is selected, the method returns the `InvalidSelection` error.
15533
15553
  *
15534
- * To access the selected data from the callback method, call `asyncResult.value.data`.
15554
+ * To access the selected data from the callback function, call `asyncResult.value.data`.
15535
15555
  * To access the source property that the selection comes from, call `asyncResult.value.sourceProperty`, which will be either `body` or `subject`.
15536
15556
  *
15537
15557
  * @returns
@@ -15547,7 +15567,7 @@ declare namespace Office {
15547
15567
  * @param coercionType - Requests a format for the data. If `Text`, the method returns the plain text as a string, removing any HTML tags present.
15548
15568
  * If `Html`, the method returns the selected text, whether it is plaintext or HTML.
15549
15569
  * @param options - An object literal that contains one or more of the following properties.
15550
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15570
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15551
15571
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15552
15572
  * type `Office.AsyncResult`.
15553
15573
  */
@@ -15558,7 +15578,7 @@ declare namespace Office {
15558
15578
  * If there is no selection but the cursor is in the body or subject, the method returns an empty string for the selected data.
15559
15579
  * If a field other than the body or subject is selected, the method returns the `InvalidSelection` error.
15560
15580
  *
15561
- * To access the selected data from the callback method, call `asyncResult.value.data`.
15581
+ * To access the selected data from the callback function, call `asyncResult.value.data`.
15562
15582
  * To access the source property that the selection comes from, call `asyncResult.value.sourceProperty`, which will be either `body` or `subject`.
15563
15583
  *
15564
15584
  * @returns
@@ -15614,7 +15634,7 @@ declare namespace Office {
15614
15634
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
15615
15635
  *
15616
15636
  * @param options - An object literal that contains one or more of the following properties.
15617
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15637
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15618
15638
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15619
15639
  * type `Office.AsyncResult`. The `value` property of the result is the properties of the shared item.
15620
15640
  */
@@ -15675,7 +15695,7 @@ declare namespace Office {
15675
15695
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Compose
15676
15696
  *
15677
15697
  * @param options - An object literal that contains one or more of the following properties.
15678
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15698
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15679
15699
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15680
15700
  * type `Office.AsyncResult`.
15681
15701
  */
@@ -15745,7 +15765,7 @@ declare namespace Office {
15745
15765
  * @param attachmentId - The identifier of the attachment to remove. The maximum string length of the `attachmentId`
15746
15766
  * is 200 characters in Outlook on the web and on Windows.
15747
15767
  * @param options - An object literal that contains one or more of the following properties.
15748
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15768
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15749
15769
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15750
15770
  * type `Office.AsyncResult`. If removing the attachment fails, the `asyncResult.error` property will contain an error code
15751
15771
  * with the reason for the failure.
@@ -15793,7 +15813,7 @@ declare namespace Office {
15793
15813
  *
15794
15814
  * @param eventType - The event that should revoke the handler.
15795
15815
  * @param options - An object literal that contains one or more of the following properties.
15796
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15816
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15797
15817
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
15798
15818
  * `asyncResult`, which is an `Office.AsyncResult` object.
15799
15819
  */
@@ -15819,7 +15839,7 @@ declare namespace Office {
15819
15839
  /**
15820
15840
  * Asynchronously saves an item.
15821
15841
  *
15822
- * When invoked, this method saves the current message as a draft and returns the item ID via the callback method.
15842
+ * When invoked, this method saves the current message as a draft and returns the item ID via the callback function.
15823
15843
  * In Outlook on the web or Outlook in online mode, the item is saved to the server.
15824
15844
  * In Outlook in cached mode, the item is saved to the local cache.
15825
15845
  *
@@ -15846,7 +15866,7 @@ declare namespace Office {
15846
15866
  * - `InvalidAttachmentId`: The attachment identifier does not exist.
15847
15867
  *
15848
15868
  * @param options - An object literal that contains one or more of the following properties.
15849
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15869
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15850
15870
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
15851
15871
  * type `Office.AsyncResult`.
15852
15872
  */
@@ -15854,7 +15874,7 @@ declare namespace Office {
15854
15874
  /**
15855
15875
  * Asynchronously saves an item.
15856
15876
  *
15857
- * When invoked, this method saves the current message as a draft and returns the item id via the callback method.
15877
+ * When invoked, this method saves the current message as a draft and returns the item id via the callback function.
15858
15878
  * In Outlook on the web or Outlook in online mode, the item is saved to the server.
15859
15879
  * In Outlook in cached mode, the item is saved to the local cache.
15860
15880
  *
@@ -15905,7 +15925,7 @@ declare namespace Office {
15905
15925
  * @param data - The data to be inserted. Data is not to exceed 1,000,000 characters.
15906
15926
  * If more than 1,000,000 characters are passed in, an `ArgumentOutOfRange` exception is thrown.
15907
15927
  * @param options - An object literal that contains one or more of the following properties.
15908
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
15928
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
15909
15929
  * `coercionType`: If text, the current style is applied in Outlook on the web and desktop clients.
15910
15930
  * If the field is an HTML editor, only the text data is inserted, even if the data is HTML.
15911
15931
  * If html and the field supports HTML (the subject doesn't), the current style is applied in Outlook on the web and the default style is
@@ -16330,7 +16350,7 @@ declare namespace Office {
16330
16350
  * @param handler - The function to handle the event. The function must accept a single parameter, which is an object literal.
16331
16351
  * The `type` property on the parameter will match the eventType `parameter` passed to `addHandlerAsync`.
16332
16352
  * @param options - An object literal that contains one or more of the following properties.
16333
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16353
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16334
16354
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
16335
16355
  * `asyncResult`, which is an `Office.AsyncResult` object.
16336
16356
  */
@@ -16401,7 +16421,7 @@ declare namespace Office {
16401
16421
  * @param formData - A string that contains text and HTML and that represents the body of the reply form. The string is limited to 32 KB
16402
16422
  * OR a {@link Office.ReplyFormData | ReplyFormData} object that contains body or attachment data and a callback function.
16403
16423
  * @param options - An object literal that contains one or more of the following properties.
16404
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16424
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16405
16425
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
16406
16426
  * `asyncResult`, which is an `Office.AsyncResult` object.
16407
16427
  */
@@ -16476,7 +16496,7 @@ declare namespace Office {
16476
16496
  * @param formData - A string that contains text and HTML and that represents the body of the reply form. The string is limited to 32 KB
16477
16497
  * OR a {@link Office.ReplyFormData | ReplyFormData} object that contains body or attachment data and a callback function.
16478
16498
  * @param options - An object literal that contains one or more of the following properties.
16479
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16499
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16480
16500
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
16481
16501
  * `asyncResult`, which is an `Office.AsyncResult` object.
16482
16502
  */
@@ -16520,7 +16540,7 @@ declare namespace Office {
16520
16540
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
16521
16541
  *
16522
16542
  * @param options - An object literal that contains one or more of the following properties.
16523
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16543
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16524
16544
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
16525
16545
  * `asyncResult`, which is an `Office.AsyncResult` object.
16526
16546
  * On success, the internet headers data is provided in the `asyncResult.value` property as a string.
@@ -16573,7 +16593,7 @@ declare namespace Office {
16573
16593
  *
16574
16594
  * @param attachmentId - The identifier of the attachment you want to get.
16575
16595
  * @param options - An object literal that contains one or more of the following properties.
16576
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16596
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16577
16597
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
16578
16598
  * `asyncResult`, which is an `Office.AsyncResult` object. If the call fails, the `asyncResult.error` property will contain
16579
16599
  * an error code with the reason for the failure.
@@ -16623,7 +16643,7 @@ declare namespace Office {
16623
16643
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
16624
16644
  *
16625
16645
  * @param options - An object literal that contains one or more of the following properties.
16626
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16646
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16627
16647
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
16628
16648
  * of type `Office.AsyncResult`.
16629
16649
  * On success, the initialization context data is provided in the `asyncResult.value` property as a string.
@@ -16866,7 +16886,7 @@ declare namespace Office {
16866
16886
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Message Read
16867
16887
  *
16868
16888
  * @param options - An object literal that contains one or more of the following properties.
16869
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16889
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16870
16890
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
16871
16891
  * type `Office.AsyncResult`. The `value` property of the result is the properties of the shared item.
16872
16892
  */
@@ -16927,7 +16947,7 @@ declare namespace Office {
16927
16947
  *
16928
16948
  * @param eventType - The event that should revoke the handler.
16929
16949
  * @param options - An object literal that contains one or more of the following properties.
16930
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16950
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16931
16951
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
16932
16952
  * `asyncResult`, which is an `Office.AsyncResult` object.
16933
16953
  */
@@ -16975,7 +16995,7 @@ declare namespace Office {
16975
16995
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
16976
16996
  *
16977
16997
  * @param options - An object literal that contains one or more of the following properties.
16978
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
16998
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
16979
16999
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
16980
17000
  * type `Office.AsyncResult`.
16981
17001
  *
@@ -17013,7 +17033,7 @@ declare namespace Office {
17013
17033
  *
17014
17034
  * @param isAllDayEvent - boolean value to set the all day event status.
17015
17035
  * @param options - An object literal that contains one or more of the following properties.
17016
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17036
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17017
17037
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
17018
17038
  * `asyncResult`, which is an `Office.AsyncResult` object.
17019
17039
  *
@@ -17176,7 +17196,7 @@ declare namespace Office {
17176
17196
  * @param JSONmessage - A JSON object that contains the notification message to be added to the item.
17177
17197
  * It contains a `NotificationMessageDetails` object.
17178
17198
  * @param options - An object literal that contains one or more of the following properties.
17179
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17199
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17180
17200
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
17181
17201
  * of type `Office.AsyncResult`.
17182
17202
  */
@@ -17219,7 +17239,7 @@ declare namespace Office {
17219
17239
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
17220
17240
  *
17221
17241
  * @param options - An object literal that contains one or more of the following properties.
17222
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17242
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17223
17243
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
17224
17244
  * of type `Office.AsyncResult`. The `value` property of the result is an array of `NotificationMessageDetails` objects.
17225
17245
  */
@@ -17250,7 +17270,7 @@ declare namespace Office {
17250
17270
  *
17251
17271
  * @param key - The key for the notification message to remove.
17252
17272
  * @param options - An object literal that contains one or more of the following properties.
17253
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17273
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17254
17274
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
17255
17275
  * of type `Office.AsyncResult`.
17256
17276
  */
@@ -17286,7 +17306,7 @@ declare namespace Office {
17286
17306
  * @param JSONmessage - A JSON object that contains the new notification message to replace the existing message.
17287
17307
  * It contains a `NotificationMessageDetails` object.
17288
17308
  * @param options - An object literal that contains one or more of the following properties.
17289
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17309
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17290
17310
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
17291
17311
  * of type `Office.AsyncResult`.
17292
17312
  */
@@ -17366,7 +17386,7 @@ declare namespace Office {
17366
17386
  * The appointment organizer is always a user whose email address is on the Exchange server.
17367
17387
  *
17368
17388
  * @param options - An object literal that contains one or more of the following properties.
17369
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17389
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17370
17390
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
17371
17391
  * `asyncResult`, which is an `AsyncResult` object. The `value` property of the result is the appointment's organizer value,
17372
17392
  * as an `EmailAddressDetails` object.
@@ -17463,7 +17483,7 @@ declare namespace Office {
17463
17483
  *
17464
17484
  * @param recipients - The recipients to add to the recipients list.
17465
17485
  * @param options - An object literal that contains one or more of the following properties.
17466
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17486
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17467
17487
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
17468
17488
  * of type `Office.AsyncResult`. If adding the recipients fails, the `asyncResult.error` property will contain an error code.
17469
17489
  */
@@ -17540,7 +17560,7 @@ declare namespace Office {
17540
17560
  * the auto-complete list.
17541
17561
  *
17542
17562
  * @param options - An object literal that contains one or more of the following properties.
17543
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17563
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17544
17564
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter
17545
17565
  * of type `Office.AsyncResult`. The `value` property of the result is an array of `EmailAddressDetails` objects.
17546
17566
  */
@@ -17619,7 +17639,7 @@ declare namespace Office {
17619
17639
  *
17620
17640
  * @param recipients - The recipients to add to the recipients list.
17621
17641
  * @param options - An object literal that contains one or more of the following properties.
17622
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17642
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17623
17643
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
17624
17644
  * type `Office.AsyncResult`. If setting the recipients fails the `asyncResult.error` property will contain a code that
17625
17645
  * indicates any error that occurred while adding the data.
@@ -17850,7 +17870,7 @@ declare namespace Office {
17850
17870
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose or Read
17851
17871
  *
17852
17872
  * @param options - An object literal that contains one or more of the following properties.
17853
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17873
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17854
17874
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
17855
17875
  * `asyncResult`, which is an `Office.AsyncResult` object. The `value` property of the result is a `Recurrence` object.
17856
17876
  */
@@ -17889,7 +17909,7 @@ declare namespace Office {
17889
17909
  *
17890
17910
  * @param recurrencePattern - A recurrence object.
17891
17911
  * @param options - An object literal that contains one or more of the following properties.
17892
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
17912
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
17893
17913
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
17894
17914
  * `asyncResult`, which is an `Office.AsyncResult` object.
17895
17915
  */
@@ -18048,7 +18068,7 @@ declare namespace Office {
18048
18068
  callback?: (asyncResult: Office.AsyncResult<any>) => void;
18049
18069
  /**
18050
18070
  * An object literal that contains the following property.
18051
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18071
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18052
18072
  */
18053
18073
  options?: Office.AsyncContextOptions;
18054
18074
  }
@@ -18132,7 +18152,7 @@ declare namespace Office {
18132
18152
  *
18133
18153
  * A maximum of 32KB is available for the settings of each add-in.
18134
18154
  *
18135
- * Any changes made to settings using the set function will not be saved to the server until the `saveAsync` function is called.
18155
+ * Any changes made to settings using the `set` method will not be saved to the server until the `saveAsync` method is called.
18136
18156
  *
18137
18157
  * @remarks
18138
18158
  *
@@ -18169,7 +18189,7 @@ declare namespace Office {
18169
18189
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
18170
18190
  *
18171
18191
  * @param options - An object literal that contains one or more of the following properties.
18172
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18192
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18173
18193
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter of
18174
18194
  * type `Office.AsyncResult`.
18175
18195
  *
@@ -18204,7 +18224,7 @@ declare namespace Office {
18204
18224
  *
18205
18225
  * @param sensitivity - The sensitivity value as enum or string.
18206
18226
  * @param options - An object literal that contains one or more of the following properties.
18207
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18227
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18208
18228
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
18209
18229
  * `asyncResult`, which is an `Office.AsyncResult` object.
18210
18230
  *
@@ -18426,7 +18446,7 @@ declare namespace Office {
18426
18446
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
18427
18447
  *
18428
18448
  * @param options - An object literal that contains one or more of the following properties.
18429
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18449
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18430
18450
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
18431
18451
  * `asyncResult`, which is an `Office.AsyncResult` object.
18432
18452
  */
@@ -18486,7 +18506,7 @@ declare namespace Office {
18486
18506
  *
18487
18507
  * @param name - The session data key.
18488
18508
  * @param options - An object literal that contains one or more of the following properties.
18489
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18509
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18490
18510
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter,
18491
18511
  * `asyncResult`, which is an `Office.AsyncResult` object.
18492
18512
  */
@@ -18521,7 +18541,7 @@ declare namespace Office {
18521
18541
  * @param name - The session data key.
18522
18542
  * @param value - The session data value as a string.
18523
18543
  * @param options - An object literal that contains one or more of the following properties.
18524
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18544
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18525
18545
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
18526
18546
  * type `Office.AsyncResult`.
18527
18547
  */
@@ -18608,7 +18628,7 @@ declare namespace Office {
18608
18628
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
18609
18629
  *
18610
18630
  * @param options - An object literal that contains one or more of the following properties.
18611
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18631
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18612
18632
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter
18613
18633
  * of type `Office.AsyncResult`. The `value` property of the result is the subject of the item.
18614
18634
  */
@@ -18648,7 +18668,7 @@ declare namespace Office {
18648
18668
  *
18649
18669
  * @param subject - The subject of the appointment or message. The string is limited to 255 characters.
18650
18670
  * @param options - An object literal that contains one or more of the following properties.
18651
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18671
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18652
18672
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
18653
18673
  * of type `Office.AsyncResult`. If setting the subject fails, the `asyncResult.error` property will contain an error code.
18654
18674
  */
@@ -18723,7 +18743,7 @@ declare namespace Office {
18723
18743
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/outlook-add-ins-overview#extension-points | Applicable Outlook mode}**: Compose
18724
18744
  *
18725
18745
  * @param options - An object literal that contains one or more of the following properties.
18726
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18746
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18727
18747
  * @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter
18728
18748
  * of type `Office.AsyncResult`. The `value` property of the result is a `Date` object.
18729
18749
  */
@@ -18753,7 +18773,7 @@ declare namespace Office {
18753
18773
  *
18754
18774
  * The time must be in UTC; you can get the correct UTC time by using the `convertToUtcClientTime` method.
18755
18775
  *
18756
- * **Important**: In the Windows client, you can't use this function to update the start or end of a recurrence.
18776
+ * **Important**: In the Windows client, you can't use this method to update the start or end of a recurrence.
18757
18777
  *
18758
18778
  * @remarks
18759
18779
  * [Api set: Mailbox 1.1]
@@ -18768,7 +18788,7 @@ declare namespace Office {
18768
18788
  *
18769
18789
  * @param dateTime - A date-time object in Coordinated Universal Time (UTC).
18770
18790
  * @param options - An object literal that contains one or more of the following properties.
18771
- * `asyncContext`: Developers can provide any object they wish to access in the callback method.
18791
+ * `asyncContext`: Developers can provide any object they wish to access in the callback function.
18772
18792
  * @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
18773
18793
  * type `Office.AsyncResult`. If setting the date and time fails, the `asyncResult.error` property will contain an error code.
18774
18794
  */
@@ -18781,7 +18801,7 @@ declare namespace Office {
18781
18801
  *
18782
18802
  * The time must be in UTC; you can get the correct UTC time by using the `convertToUtcClientTime` method.
18783
18803
  *
18784
- * **Important**: In the Windows client, you can't use this function to update the start or end of a recurrence.
18804
+ * **Important**: In the Windows client, you can't use this method to update the start or end of a recurrence.
18785
18805
  *
18786
18806
  * @remarks
18787
18807
  * [Api set: Mailbox 1.1]
@@ -83960,11 +83980,11 @@ declare namespace Word {
83960
83980
  expand?: string;
83961
83981
  }): Word.Body;
83962
83982
  /**
83963
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
83983
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
83964
83984
  */
83965
83985
  track(): Word.Body;
83966
83986
  /**
83967
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
83987
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
83968
83988
  */
83969
83989
  untrack(): Word.Body;
83970
83990
  /**
@@ -84091,11 +84111,11 @@ declare namespace Word {
84091
84111
  expand?: string;
84092
84112
  }): Word.Comment;
84093
84113
  /**
84094
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
84114
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
84095
84115
  */
84096
84116
  track(): Word.Comment;
84097
84117
  /**
84098
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
84118
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
84099
84119
  */
84100
84120
  untrack(): Word.Comment;
84101
84121
  /**
@@ -84157,11 +84177,11 @@ declare namespace Word {
84157
84177
  */
84158
84178
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
84159
84179
  /**
84160
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
84180
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
84161
84181
  */
84162
84182
  track(): Word.CommentCollection;
84163
84183
  /**
84164
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
84184
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
84165
84185
  */
84166
84186
  untrack(): Word.CommentCollection;
84167
84187
  /**
@@ -84235,7 +84255,7 @@ declare namespace Word {
84235
84255
  /** Sets multiple properties on the object at the same time, based on an existing loaded object. */
84236
84256
  set(properties: Word.CommentContentRange): void;
84237
84257
  /**
84238
- * Inserts text into at the specified location.
84258
+ * Inserts text into at the specified location. **Note**: For the modern comment, the content range tracked across context turns to empty if any revision to the comment is posted through the UI.
84239
84259
  *
84240
84260
  * @remarks
84241
84261
  * [Api set: WordApiOnline 1.1]
@@ -84245,7 +84265,7 @@ declare namespace Word {
84245
84265
  */
84246
84266
  insertText(text: string, insertLocation: Word.InsertLocation): Word.CommentContentRange;
84247
84267
  /**
84248
- * Inserts text into at the specified location.
84268
+ * Inserts text into at the specified location. **Note**: For the modern comment, the content range tracked across context turns to empty if any revision to the comment is posted through the UI.
84249
84269
  *
84250
84270
  * @remarks
84251
84271
  * [Api set: WordApiOnline 1.1]
@@ -84276,11 +84296,11 @@ declare namespace Word {
84276
84296
  expand?: string;
84277
84297
  }): Word.CommentContentRange;
84278
84298
  /**
84279
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
84299
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
84280
84300
  */
84281
84301
  track(): Word.CommentContentRange;
84282
84302
  /**
84283
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
84303
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
84284
84304
  */
84285
84305
  untrack(): Word.CommentContentRange;
84286
84306
  /**
@@ -84384,11 +84404,11 @@ declare namespace Word {
84384
84404
  expand?: string;
84385
84405
  }): Word.CommentReply;
84386
84406
  /**
84387
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
84407
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
84388
84408
  */
84389
84409
  track(): Word.CommentReply;
84390
84410
  /**
84391
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
84411
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
84392
84412
  */
84393
84413
  untrack(): Word.CommentReply;
84394
84414
  /**
@@ -84450,11 +84470,11 @@ declare namespace Word {
84450
84470
  */
84451
84471
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
84452
84472
  /**
84453
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
84473
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
84454
84474
  */
84455
84475
  track(): Word.CommentReplyCollection;
84456
84476
  /**
84457
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
84477
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
84458
84478
  */
84459
84479
  untrack(): Word.CommentReplyCollection;
84460
84480
  /**
@@ -84709,7 +84729,7 @@ declare namespace Word {
84709
84729
  */
84710
84730
  delete(keepContent: boolean): void;
84711
84731
  /**
84712
- * Gets comments associated with the body.
84732
+ * Gets comments associated with the content control.
84713
84733
  *
84714
84734
  * @remarks
84715
84735
  * [Api set: WordApiOnline 1.1]
@@ -85039,11 +85059,11 @@ declare namespace Word {
85039
85059
  */
85040
85060
  readonly onSelectionChanged: OfficeExtension.EventHandlers<Word.ContentControlEventArgs>;
85041
85061
  /**
85042
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
85062
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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
85063
  */
85044
85064
  track(): Word.ContentControl;
85045
85065
  /**
85046
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
85066
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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
85067
  */
85048
85068
  untrack(): Word.ContentControl;
85049
85069
  /**
@@ -85150,11 +85170,11 @@ declare namespace Word {
85150
85170
  */
85151
85171
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
85152
85172
  /**
85153
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
85173
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
85154
85174
  */
85155
85175
  track(): Word.ContentControlCollection;
85156
85176
  /**
85157
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
85177
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
85158
85178
  */
85159
85179
  untrack(): Word.ContentControlCollection;
85160
85180
  /**
@@ -85230,11 +85250,11 @@ declare namespace Word {
85230
85250
  expand?: string;
85231
85251
  }): Word.CustomProperty;
85232
85252
  /**
85233
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
85253
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
85234
85254
  */
85235
85255
  track(): Word.CustomProperty;
85236
85256
  /**
85237
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
85257
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
85238
85258
  */
85239
85259
  untrack(): Word.CustomProperty;
85240
85260
  /**
@@ -85315,11 +85335,11 @@ declare namespace Word {
85315
85335
  */
85316
85336
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
85317
85337
  /**
85318
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
85338
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
85319
85339
  */
85320
85340
  track(): Word.CustomPropertyCollection;
85321
85341
  /**
85322
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
85342
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
85323
85343
  */
85324
85344
  untrack(): Word.CustomPropertyCollection;
85325
85345
  /**
@@ -85607,11 +85627,11 @@ declare namespace Word {
85607
85627
  expand?: string;
85608
85628
  }): Word.CustomXmlPart;
85609
85629
  /**
85610
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
85630
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
85611
85631
  */
85612
85632
  track(): Word.CustomXmlPart;
85613
85633
  /**
85614
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
85634
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
85615
85635
  */
85616
85636
  untrack(): Word.CustomXmlPart;
85617
85637
  /**
@@ -85699,11 +85719,11 @@ declare namespace Word {
85699
85719
  */
85700
85720
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartCollection;
85701
85721
  /**
85702
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
85722
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
85703
85723
  */
85704
85724
  track(): Word.CustomXmlPartCollection;
85705
85725
  /**
85706
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
85726
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
85707
85727
  */
85708
85728
  untrack(): Word.CustomXmlPartCollection;
85709
85729
  /**
@@ -85787,11 +85807,11 @@ declare namespace Word {
85787
85807
  */
85788
85808
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartScopedCollection;
85789
85809
  /**
85790
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
85810
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
85791
85811
  */
85792
85812
  track(): Word.CustomXmlPartScopedCollection;
85793
85813
  /**
85794
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
85814
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
85795
85815
  */
85796
85816
  untrack(): Word.CustomXmlPartScopedCollection;
85797
85817
  /**
@@ -85982,11 +86002,11 @@ declare namespace Word {
85982
86002
  */
85983
86003
  readonly onContentControlAdded: OfficeExtension.EventHandlers<Word.ContentControlEventArgs>;
85984
86004
  /**
85985
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
86005
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
85986
86006
  */
85987
86007
  track(): Word.Document;
85988
86008
  /**
85989
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
86009
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
85990
86010
  */
85991
86011
  untrack(): Word.Document;
85992
86012
  /**
@@ -86129,11 +86149,11 @@ declare namespace Word {
86129
86149
  expand?: string;
86130
86150
  }): Word.DocumentCreated;
86131
86151
  /**
86132
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
86152
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
86133
86153
  */
86134
86154
  track(): Word.DocumentCreated;
86135
86155
  /**
86136
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
86156
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
86137
86157
  */
86138
86158
  untrack(): Word.DocumentCreated;
86139
86159
  /**
@@ -86307,11 +86327,11 @@ declare namespace Word {
86307
86327
  expand?: string;
86308
86328
  }): Word.DocumentProperties;
86309
86329
  /**
86310
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
86330
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
86311
86331
  */
86312
86332
  track(): Word.DocumentProperties;
86313
86333
  /**
86314
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
86334
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
86315
86335
  */
86316
86336
  untrack(): Word.DocumentProperties;
86317
86337
  /**
@@ -86456,11 +86476,11 @@ declare namespace Word {
86456
86476
  expand?: string;
86457
86477
  }): Word.Field;
86458
86478
  /**
86459
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
86479
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
86460
86480
  */
86461
86481
  track(): Word.Field;
86462
86482
  /**
86463
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
86483
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
86464
86484
  */
86465
86485
  untrack(): Word.Field;
86466
86486
  /**
@@ -86516,11 +86536,11 @@ declare namespace Word {
86516
86536
  */
86517
86537
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.FieldCollection;
86518
86538
  /**
86519
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
86539
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
86520
86540
  */
86521
86541
  track(): Word.FieldCollection;
86522
86542
  /**
86523
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
86543
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
86524
86544
  */
86525
86545
  untrack(): Word.FieldCollection;
86526
86546
  /**
@@ -86646,11 +86666,11 @@ declare namespace Word {
86646
86666
  expand?: string;
86647
86667
  }): Word.Font;
86648
86668
  /**
86649
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
86669
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
86650
86670
  */
86651
86671
  track(): Word.Font;
86652
86672
  /**
86653
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
86673
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
86654
86674
  */
86655
86675
  untrack(): Word.Font;
86656
86676
  /**
@@ -87008,11 +87028,11 @@ declare namespace Word {
87008
87028
  expand?: string;
87009
87029
  }): Word.InlinePicture;
87010
87030
  /**
87011
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
87031
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
87012
87032
  */
87013
87033
  track(): Word.InlinePicture;
87014
87034
  /**
87015
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
87035
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
87016
87036
  */
87017
87037
  untrack(): Word.InlinePicture;
87018
87038
  /**
@@ -87065,11 +87085,11 @@ declare namespace Word {
87065
87085
  */
87066
87086
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
87067
87087
  /**
87068
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
87088
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
87069
87089
  */
87070
87090
  track(): Word.InlinePictureCollection;
87071
87091
  /**
87072
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
87092
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
87073
87093
  */
87074
87094
  untrack(): Word.InlinePictureCollection;
87075
87095
  /**
@@ -87304,11 +87324,11 @@ declare namespace Word {
87304
87324
  expand?: string;
87305
87325
  }): Word.List;
87306
87326
  /**
87307
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
87327
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
87308
87328
  */
87309
87329
  track(): Word.List;
87310
87330
  /**
87311
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
87331
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
87312
87332
  */
87313
87333
  untrack(): Word.List;
87314
87334
  /**
@@ -87388,11 +87408,11 @@ declare namespace Word {
87388
87408
  */
87389
87409
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
87390
87410
  /**
87391
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
87411
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
87392
87412
  */
87393
87413
  track(): Word.ListCollection;
87394
87414
  /**
87395
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
87415
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
87396
87416
  */
87397
87417
  untrack(): Word.ListCollection;
87398
87418
  /**
@@ -87488,11 +87508,11 @@ declare namespace Word {
87488
87508
  expand?: string;
87489
87509
  }): Word.ListItem;
87490
87510
  /**
87491
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
87511
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
87492
87512
  */
87493
87513
  track(): Word.ListItem;
87494
87514
  /**
87495
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
87515
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
87496
87516
  */
87497
87517
  untrack(): Word.ListItem;
87498
87518
  /**
@@ -87582,11 +87602,11 @@ declare namespace Word {
87582
87602
  expand?: string;
87583
87603
  }): Word.NoteItem;
87584
87604
  /**
87585
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
87605
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
87586
87606
  */
87587
87607
  track(): Word.NoteItem;
87588
87608
  /**
87589
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
87609
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
87590
87610
  */
87591
87611
  untrack(): Word.NoteItem;
87592
87612
  /**
@@ -87639,11 +87659,11 @@ declare namespace Word {
87639
87659
  */
87640
87660
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
87641
87661
  /**
87642
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
87662
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
87643
87663
  */
87644
87664
  track(): Word.NoteItemCollection;
87645
87665
  /**
87646
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
87666
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
87647
87667
  */
87648
87668
  untrack(): Word.NoteItemCollection;
87649
87669
  /**
@@ -88274,11 +88294,11 @@ declare namespace Word {
88274
88294
  expand?: string;
88275
88295
  }): Word.Paragraph;
88276
88296
  /**
88277
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
88297
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
88278
88298
  */
88279
88299
  track(): Word.Paragraph;
88280
88300
  /**
88281
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
88301
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
88282
88302
  */
88283
88303
  untrack(): Word.Paragraph;
88284
88304
  /**
@@ -88345,11 +88365,11 @@ declare namespace Word {
88345
88365
  */
88346
88366
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
88347
88367
  /**
88348
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
88368
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
88349
88369
  */
88350
88370
  track(): Word.ParagraphCollection;
88351
88371
  /**
88352
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
88372
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
88353
88373
  */
88354
88374
  untrack(): Word.ParagraphCollection;
88355
88375
  /**
@@ -88967,11 +88987,11 @@ declare namespace Word {
88967
88987
  expand?: string;
88968
88988
  }): Word.Range;
88969
88989
  /**
88970
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
88990
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
88971
88991
  */
88972
88992
  track(): Word.Range;
88973
88993
  /**
88974
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
88994
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
88975
88995
  */
88976
88996
  untrack(): Word.Range;
88977
88997
  /**
@@ -89024,11 +89044,11 @@ declare namespace Word {
89024
89044
  */
89025
89045
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
89026
89046
  /**
89027
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
89047
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
89028
89048
  */
89029
89049
  track(): Word.RangeCollection;
89030
89050
  /**
89031
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
89051
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
89032
89052
  */
89033
89053
  untrack(): Word.RangeCollection;
89034
89054
  /**
@@ -89232,11 +89252,11 @@ declare namespace Word {
89232
89252
  expand?: string;
89233
89253
  }): Word.Section;
89234
89254
  /**
89235
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
89255
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
89236
89256
  */
89237
89257
  track(): Word.Section;
89238
89258
  /**
89239
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
89259
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
89240
89260
  */
89241
89261
  untrack(): Word.Section;
89242
89262
  /**
@@ -89289,11 +89309,11 @@ declare namespace Word {
89289
89309
  */
89290
89310
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
89291
89311
  /**
89292
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
89312
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
89293
89313
  */
89294
89314
  track(): Word.SectionCollection;
89295
89315
  /**
89296
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
89316
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
89297
89317
  */
89298
89318
  untrack(): Word.SectionCollection;
89299
89319
  /**
@@ -89366,11 +89386,11 @@ declare namespace Word {
89366
89386
  expand?: string;
89367
89387
  }): Word.Setting;
89368
89388
  /**
89369
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
89389
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
89370
89390
  */
89371
89391
  track(): Word.Setting;
89372
89392
  /**
89373
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
89393
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
89374
89394
  */
89375
89395
  untrack(): Word.Setting;
89376
89396
  /**
@@ -89457,11 +89477,11 @@ declare namespace Word {
89457
89477
  */
89458
89478
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
89459
89479
  /**
89460
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
89480
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
89461
89481
  */
89462
89482
  track(): Word.SettingCollection;
89463
89483
  /**
89464
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
89484
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
89465
89485
  */
89466
89486
  untrack(): Word.SettingCollection;
89467
89487
  /**
@@ -90048,11 +90068,11 @@ declare namespace Word {
90048
90068
  expand?: string;
90049
90069
  }): Word.Table;
90050
90070
  /**
90051
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
90071
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
90052
90072
  */
90053
90073
  track(): Word.Table;
90054
90074
  /**
90055
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
90075
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
90056
90076
  */
90057
90077
  untrack(): Word.Table;
90058
90078
  /**
@@ -90105,11 +90125,11 @@ declare namespace Word {
90105
90125
  */
90106
90126
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
90107
90127
  /**
90108
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
90128
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
90109
90129
  */
90110
90130
  track(): Word.TableCollection;
90111
90131
  /**
90112
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
90132
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
90113
90133
  */
90114
90134
  untrack(): Word.TableCollection;
90115
90135
  /**
@@ -90414,11 +90434,11 @@ declare namespace Word {
90414
90434
  expand?: string;
90415
90435
  }): Word.TableRow;
90416
90436
  /**
90417
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
90437
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
90418
90438
  */
90419
90439
  track(): Word.TableRow;
90420
90440
  /**
90421
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
90441
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
90422
90442
  */
90423
90443
  untrack(): Word.TableRow;
90424
90444
  /**
@@ -90471,11 +90491,11 @@ declare namespace Word {
90471
90491
  */
90472
90492
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
90473
90493
  /**
90474
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
90494
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
90475
90495
  */
90476
90496
  track(): Word.TableRowCollection;
90477
90497
  /**
90478
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
90498
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
90479
90499
  */
90480
90500
  untrack(): Word.TableRowCollection;
90481
90501
  /**
@@ -90739,11 +90759,11 @@ declare namespace Word {
90739
90759
  expand?: string;
90740
90760
  }): Word.TableCell;
90741
90761
  /**
90742
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
90762
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
90743
90763
  */
90744
90764
  track(): Word.TableCell;
90745
90765
  /**
90746
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
90766
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
90747
90767
  */
90748
90768
  untrack(): Word.TableCell;
90749
90769
  /**
@@ -90796,11 +90816,11 @@ declare namespace Word {
90796
90816
  */
90797
90817
  load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
90798
90818
  /**
90799
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
90819
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
90800
90820
  */
90801
90821
  track(): Word.TableCellCollection;
90802
90822
  /**
90803
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
90823
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
90804
90824
  */
90805
90825
  untrack(): Word.TableCellCollection;
90806
90826
  /**
@@ -90869,11 +90889,11 @@ declare namespace Word {
90869
90889
  expand?: string;
90870
90890
  }): Word.TableBorder;
90871
90891
  /**
90872
- * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `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 needed to have added the object to the tracked object collection when the object was first created.
90892
+ * Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.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.
90873
90893
  */
90874
90894
  track(): Word.TableBorder;
90875
90895
  /**
90876
- * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `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.
90896
+ * Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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.
90877
90897
  */
90878
90898
  untrack(): Word.TableBorder;
90879
90899
  /**
@@ -90945,54 +90965,40 @@ declare namespace Word {
90945
90965
  endnote = "Endnote",
90946
90966
  }
90947
90967
  /**
90948
- * Provides information about the type of a raised event. For each object type, please keep the order of: deleted, selection changed, data changed, added.
90968
+ * Provides information about the type of a raised event.
90949
90969
  *
90950
90970
  * @remarks
90951
90971
  * [Api set: WordApi 1.3]
90952
90972
  */
90953
90973
  enum EventType {
90954
90974
  /**
90955
- * ContentControlDeleted represent the event that the content control has been deleted.
90975
+ * ContentControlDeleted represents the event that the content control has been deleted.
90956
90976
  * @remarks
90957
- * [Api set: WordApi 1.3]
90977
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90978
+ * @beta
90958
90979
  */
90959
90980
  contentControlDeleted = "ContentControlDeleted",
90960
90981
  /**
90961
90982
  * ContentControlSelectionChanged represents the event that the selection in the content control has been changed.
90962
90983
  * @remarks
90963
- * [Api set: WordApi 1.3]
90984
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90985
+ * @beta
90964
90986
  */
90965
90987
  contentControlSelectionChanged = "ContentControlSelectionChanged",
90966
90988
  /**
90967
90989
  * ContentControlDataChanged represents the event that the data in the content control have been changed.
90968
90990
  * @remarks
90969
- * [Api set: WordApi 1.3]
90991
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90992
+ * @beta
90970
90993
  */
90971
90994
  contentControlDataChanged = "ContentControlDataChanged",
90972
90995
  /**
90973
90996
  * ContentControlAdded represents the event a content control has been added to the document.
90974
90997
  * @remarks
90975
- * [Api set: WordApi 1.3]
90998
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90999
+ * @beta
90976
91000
  */
90977
91001
  contentControlAdded = "ContentControlAdded",
90978
- /**
90979
- * AnnotationAdded represents the event an annotation has been added to the document.
90980
- * @remarks
90981
- * [Api set: WordApi 1.3]
90982
- */
90983
- annotationAdded = "AnnotationAdded",
90984
- /**
90985
- * AnnotationAdded represents the event an annotation has been updated in the document.
90986
- * @remarks
90987
- * [Api set: WordApi 1.3]
90988
- */
90989
- annotationChanged = "AnnotationChanged",
90990
- /**
90991
- * AnnotationAdded represents the event an annotation has been deleted from the document.
90992
- * @remarks
90993
- * [Api set: WordApi 1.3]
90994
- */
90995
- annotationDeleted = "AnnotationDeleted",
90996
91002
  }
90997
91003
  /**
90998
91004
  * Provides information about the content control that raised an event.
@@ -91017,7 +91023,7 @@ declare namespace Word {
91017
91023
  * [Api set: WordApi BETA (PREVIEW ONLY)]
91018
91024
  * @beta
91019
91025
  */
91020
- eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded" | "AnnotationAdded" | "AnnotationChanged" | "AnnotationDeleted";
91026
+ eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded";
91021
91027
  }
91022
91028
  /**
91023
91029
  * Specifies supported content control types and subtypes.
@@ -91331,7 +91337,7 @@ declare namespace Word {
91331
91337
  * @remarks
91332
91338
  * [Api set: WordApi 1.1]
91333
91339
  *
91334
- * To be used with an API call, such as `obj.insertSomething(newStuff, location);`
91340
+ * To be used with an API call, such as `obj.insertSomething(newStuff, location);`.
91335
91341
  * If the location is "Before" or "After", the new content will be outside of the modified object.
91336
91342
  * If the location is "Start" or "End", the new content will be included as part of the modified object.
91337
91343
  */
@@ -91414,7 +91420,7 @@ declare namespace Word {
91414
91420
  */
91415
91421
  enum HeaderFooterType {
91416
91422
  /**
91417
- * Returns the header or footer on all pages of a section, but excludes the first page or odd pages if they are different.
91423
+ * Returns the header or footer on all pages of a section, but excludes the first page or even pages if they are different.
91418
91424
  * @remarks
91419
91425
  * [Api set: WordApi 1.1]
91420
91426
  */