@types/office-js 1.0.240 → 1.0.243

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.
Files changed (3) hide show
  1. office-js/README.md +1 -1
  2. office-js/index.d.ts +246 -246
  3. office-js/package.json +2 -2
office-js/index.d.ts CHANGED
@@ -533,7 +533,7 @@ declare namespace Office {
533
533
  * Manages actions and keyboard shortcuts.
534
534
  *
535
535
  * @remarks
536
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
536
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
537
537
  */
538
538
  interface Actions {
539
539
  /**
@@ -543,7 +543,7 @@ declare namespace Office {
543
543
  * @param actionFunction The function that is run when the action is invoked.
544
544
  *
545
545
  * @remarks
546
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
546
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
547
547
  */
548
548
  associate: (actionId: string, actionFunction: (arg?: any) => void) => void;
549
549
  }
@@ -560,7 +560,7 @@ declare namespace Office {
560
560
  * Represents add-in level functionality for operating or configuring various aspects of the add-in.
561
561
  *
562
562
  * @remarks
563
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
563
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
564
564
  */
565
565
  interface Addin {
566
566
  /**
@@ -568,14 +568,14 @@ declare namespace Office {
568
568
  * @param behavior - Specifies startup behavior of the add-in.
569
569
  *
570
570
  * @remarks
571
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
571
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
572
572
  */
573
573
  setStartupBehavior(behavior: Office.StartupBehavior): Promise<void>;
574
574
  /**
575
575
  * Gets the current startup behavior for the add-in.
576
576
  *
577
577
  * @remarks
578
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
578
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
579
579
  */
580
580
  getStartupBehavior(): Promise<Office.StartupBehavior>;
581
581
  /**
@@ -583,7 +583,7 @@ declare namespace Office {
583
583
  * @returns A promise that is resolved when the UI is shown.
584
584
  *
585
585
  * @remarks
586
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
586
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
587
587
  */
588
588
  showAsTaskpane(): Promise<void>;
589
589
  /**
@@ -591,7 +591,7 @@ declare namespace Office {
591
591
  * @returns A promise that is resolved when the UI is hidden.
592
592
  *
593
593
  * @remarks
594
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
594
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
595
595
  */
596
596
  hide(): Promise<void>;
597
597
  /**
@@ -600,7 +600,7 @@ declare namespace Office {
600
600
  * @returns A promise that resolves to a function when the handler is added. Calling it removes the handler.
601
601
  *
602
602
  * @remarks
603
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
603
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/shared-runtime-requirement-sets | SharedRuntime 1.1}
604
604
  */
605
605
  onVisibilityModeChanged(
606
606
  handler: (message: VisibilityModeChangedMessage) => void,
@@ -611,7 +611,7 @@ declare namespace Office {
611
611
  *
612
612
  * @remarks
613
613
  *
614
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
614
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.1}
615
615
  */
616
616
  interface Ribbon {
617
617
  /**
@@ -619,7 +619,7 @@ declare namespace Office {
619
619
  *
620
620
  * @remarks
621
621
  *
622
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.2}
622
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.2}
623
623
  *
624
624
  * This method only requests that the tab be registered. The actual registration is controlled by the Office application and may not be complete when the returned `Promise` object is resolved.
625
625
  * For more information and code examples, see {@link https://docs.microsoft.com/office/dev/add-ins/design/contextual-tabs | Create custom contextual tabs}.
@@ -632,7 +632,7 @@ declare namespace Office {
632
632
  *
633
633
  * @remarks
634
634
  *
635
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
635
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.1}
636
636
  *
637
637
  * Note that this API is only to request an update. The actual UI update to the ribbon is controlled by the Office application and hence the exact timing of the ribbon update (or refresh) cannot be determined by the completion of this API.
638
638
  *
@@ -647,7 +647,7 @@ declare namespace Office {
647
647
  *
648
648
  * @remarks
649
649
  *
650
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
650
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.1}
651
651
  */
652
652
  interface RibbonUpdaterData {
653
653
  /**
@@ -660,7 +660,7 @@ declare namespace Office {
660
660
  *
661
661
  * @remarks
662
662
  *
663
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
663
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.1}
664
664
  */
665
665
  interface Tab {
666
666
  /**
@@ -680,7 +680,7 @@ declare namespace Office {
680
680
  *
681
681
  * @remarks
682
682
  *
683
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.2}
683
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.2}
684
684
  */
685
685
  visible?: boolean;
686
686
  /**
@@ -690,14 +690,14 @@ declare namespace Office {
690
690
  *
691
691
  * When the `Tab` object is part of an {@link Office.RibbonUpdaterData} object passed to the `requestUpdate` method of {@link Office.Ribbon}, the `controls` properties of the various {@link Office.Group} objects specify which controls have their enabled status changed; the `controls` property of the `Tab` object is ignored.
692
692
  *
693
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
693
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.1}
694
694
  */
695
695
  groups?: Group[];
696
696
  }
697
697
  /**
698
698
  * Represents a group of controls on a ribbon tab.
699
699
  *
700
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
700
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.1}
701
701
  */
702
702
  interface Group {
703
703
  /**
@@ -721,7 +721,7 @@ declare namespace Office {
721
721
  *
722
722
  * For code samples showing how to use a `Control` object and its properties, see {@link https://docs.microsoft.com/office/dev/add-ins/design/disable-add-in-commands | Enable and Disable Add-in Commands} and {@link https://docs.microsoft.com/office/dev/add-ins/design/contextual-tabs | Create custom contextual tabs}.
723
723
  *
724
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
724
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/ribbon-api-requirement-sets | RibbonApi 1.1}
725
725
  */
726
726
  interface Control {
727
727
  /**
@@ -912,11 +912,11 @@ declare namespace Office {
912
912
  */
913
913
  code: number;
914
914
  /**
915
- * Gets the name of the error.
915
+ * Gets a detailed description of the error.
916
916
  */
917
917
  message: string;
918
918
  /**
919
- * Gets a detailed description of the error.
919
+ * Gets the name of the error.
920
920
  */
921
921
  name: string;
922
922
  }
@@ -927,7 +927,7 @@ declare namespace Office {
927
927
  *
928
928
  * @remarks
929
929
  *
930
- * See {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/add-in-commands-requirement-sets | Add-in commands requirement sets} for more support information.
930
+ * See {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/add-in-commands-requirement-sets | Add-in commands requirement sets} for more support information.
931
931
  *
932
932
  * **{@link https://docs.microsoft.com/office/dev/add-ins/outlook/understanding-outlook-add-in-permissions | Minimum permission level (Outlook)}**: Restricted
933
933
  *
@@ -939,7 +939,7 @@ declare namespace Office {
939
939
  *
940
940
  * @remarks
941
941
  *
942
- * This property is supported in Outlook only in {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/outlook-api-requirement-sets | requirement set} Mailbox 1.3 and later.
942
+ * This property is supported in Outlook only in {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/outlook-api-requirement-sets | requirement set} Mailbox 1.3 and later.
943
943
  */
944
944
  source:Source;
945
945
 
@@ -950,8 +950,8 @@ declare namespace Office {
950
950
  *
951
951
  * - A UI-less button (i.e., an add-in command defined with an `Action` element where the `xsi:type` attribute is set to `ExecuteFunction`)
952
952
  *
953
- * - An {@link https://docs.microsoft.com/office/dev/add-ins/reference/manifest/event | event} defined in the
954
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/manifest/extensionpoint#events | Events extension point},
953
+ * - An {@link https://docs.microsoft.com/javascript/api/manifest/event | event} defined in the
954
+ * {@link https://docs.microsoft.com/javascript/api/manifest/extensionpoint#events | Events extension point},
955
955
  * e.g., an `ItemSend` event
956
956
  *
957
957
  * [Api set: Mailbox 1.3]
@@ -1004,7 +1004,7 @@ declare namespace Office {
1004
1004
  *
1005
1005
  * @remarks
1006
1006
  *
1007
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi 1.2}
1007
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi 1.2}
1008
1008
  *
1009
1009
  * You can add multiple event handlers for the specified event type as long as the name of each event handler function is unique.
1010
1010
  *
@@ -1019,7 +1019,7 @@ declare namespace Office {
1019
1019
  *
1020
1020
  * @remarks
1021
1021
  *
1022
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi 1.2}
1022
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi 1.2}
1023
1023
  *
1024
1024
  * You can add multiple event handlers for the specified event type as long as the name of each event handler function is unique.
1025
1025
  *
@@ -1037,9 +1037,9 @@ declare namespace Office {
1037
1037
  *
1038
1038
  * **Requirement sets**:
1039
1039
  *
1040
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi}
1040
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi}
1041
1041
  *
1042
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/outlook-api-requirement-sets | Mailbox 1.4}
1042
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/outlook-api-requirement-sets | Mailbox 1.4}
1043
1043
  *
1044
1044
  * This method is available in the DialogApi requirement set for Excel, PowerPoint, or Word add-ins, and in the Mailbox requirement set 1.4
1045
1045
  * for Outlook. For more on how to specify a requirement set in your manifest, see
@@ -1138,9 +1138,9 @@ declare namespace Office {
1138
1138
  *
1139
1139
  * **Requirement sets**:
1140
1140
  *
1141
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi}
1141
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi}
1142
1142
  *
1143
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/outlook-api-requirement-sets | Mailbox 1.4}
1143
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/outlook-api-requirement-sets | Mailbox 1.4}
1144
1144
  *
1145
1145
  * This method is available in the DialogApi requirement set for Excel, PowerPoint, or Word add-ins, and in the Mailbox requirement set 1.4
1146
1146
  * for Outlook. For more on how to specify a requirement set in your manifest, see
@@ -1236,9 +1236,9 @@ declare namespace Office {
1236
1236
  *
1237
1237
  * **Requirement sets**:
1238
1238
  *
1239
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi}
1239
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi}
1240
1240
  *
1241
- * - If the `messageOptions` parameter is used, {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-origin-requirement-sets | DialogOrigin 1.1} is also required.
1241
+ * - If the `messageOptions` parameter is used, {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-origin-requirement-sets | DialogOrigin 1.1} is also required.
1242
1242
  *
1243
1243
  * @param message Accepts a message from the dialog to deliver to the add-in. Anything that can serialized to a string including JSON and XML can be sent.
1244
1244
  * @param messageOptions Optional. Provides options for how to send the message.
@@ -1253,9 +1253,9 @@ declare namespace Office {
1253
1253
  *
1254
1254
  * **Requirement sets**:
1255
1255
  *
1256
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi}
1256
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi}
1257
1257
  *
1258
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/outlook-api-requirement-sets | Mailbox 1.5}
1258
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/outlook-api-requirement-sets | Mailbox 1.5}
1259
1259
  *
1260
1260
  * The behavior of this method is specified by the following:
1261
1261
  *
@@ -1272,7 +1272,7 @@ declare namespace Office {
1272
1272
  *
1273
1273
  * @remarks
1274
1274
  *
1275
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/open-browser-window-api-requirement-sets | OpenBrowserWindowApi 1.1}
1275
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/open-browser-window-api-requirement-sets | OpenBrowserWindowApi 1.1}
1276
1276
  *
1277
1277
  * @param url The full URL to be opened including protocol (e.g., https), and port number, if any.
1278
1278
  */
@@ -1353,7 +1353,7 @@ declare namespace Office {
1353
1353
  *
1354
1354
  * **Hosts**: Excel, OneNote, Outlook, PowerPoint, Word
1355
1355
  *
1356
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI 1.3}
1356
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/identity-api-requirement-sets | IdentityAPI 1.3}
1357
1357
  *
1358
1358
  * This API requires a single sign-on configuration that bridges the add-in to an Azure application. Office users sign in with Organizational
1359
1359
  * Accounts and Microsoft Accounts. Microsoft Azure returns tokens intended for both user account types to access resources in the Microsoft Graph.
@@ -1378,7 +1378,7 @@ declare namespace Office {
1378
1378
  *
1379
1379
  * **Hosts**: Excel, OneNote, Outlook, PowerPoint, Word
1380
1380
  *
1381
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI 1.3}
1381
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/identity-api-requirement-sets | IdentityAPI 1.3}
1382
1382
  *
1383
1383
  * This API requires a single sign-on configuration that bridges the add-in to an Azure application. Office users sign in with Organizational
1384
1384
  * Accounts and Microsoft Accounts. Microsoft Azure returns tokens intended for both user account types to access resources in the Microsoft Graph.
@@ -1400,7 +1400,7 @@ declare namespace Office {
1400
1400
  *
1401
1401
  * **Important**: In Outlook, this API is not supported if the add-in is loaded in an Outlook.com or Gmail mailbox.
1402
1402
  *
1403
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI 1.3}
1403
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/identity-api-requirement-sets | IdentityAPI 1.3}
1404
1404
  *
1405
1405
  * @param options - Optional. Accepts an `AuthOptions` object to define sign-on behaviors.
1406
1406
  * @returns Promise to the access token.
@@ -1849,7 +1849,7 @@ declare namespace Office {
1849
1849
  *
1850
1850
  * @remarks
1851
1851
  *
1852
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi}
1852
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi}
1853
1853
  */
1854
1854
  interface Dialog {
1855
1855
  /**
@@ -1866,7 +1866,7 @@ declare namespace Office {
1866
1866
  * - DialogEventReceived. Triggered when the dialog box has been closed or otherwise unloaded.
1867
1867
  *
1868
1868
  * @param eventType Must be either DialogMessageReceived or DialogEventReceived.
1869
- * @param handler A function which accepts either an object with a `message` and `origin` property, if `eventType` is `DialogMessageReceived`, or an object with an `error` property, if `eventType` is `DialogEventReceived`. Note that the `origin` property is `undefined` on clients that don’t support {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-origin-requirement-sets | DialogOrigin 1.1}.
1869
+ * @param handler A function which accepts either an object with a `message` and `origin` property, if `eventType` is `DialogMessageReceived`, or an object with an `error` property, if `eventType` is `DialogEventReceived`. Note that the `origin` property is `undefined` on clients that don’t support {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-origin-requirement-sets | DialogOrigin 1.1}.
1870
1870
  */
1871
1871
  addEventHandler(eventType: Office.EventType, handler: (args: {message: string, origin: string | undefined} | {error: number}) => void): void;
1872
1872
  /**
@@ -1878,11 +1878,11 @@ declare namespace Office {
1878
1878
  *
1879
1879
  * **Requirement sets**:
1880
1880
  *
1881
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-api-requirement-sets | DialogApi 1.2}
1881
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-api-requirement-sets | DialogApi 1.2}
1882
1882
  *
1883
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/outlook-api-requirement-sets | Mailbox 1.9}
1883
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/outlook-api-requirement-sets | Mailbox 1.9}
1884
1884
  *
1885
- * - If the `messageOptions` parameter is used, {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-origin-requirement-sets | DialogOrigin 1.1} is also required.
1885
+ * - If the `messageOptions` parameter is used, {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-origin-requirement-sets | DialogOrigin 1.1} is also required.
1886
1886
  *
1887
1887
  * @param message Accepts a message from the host page to deliver to the dialog. Anything that can be serialized to a string, including JSON and XML, can be sent.
1888
1888
  * @param messageOptions Optional. Provides options for how to send the message.
@@ -1959,21 +1959,21 @@ declare namespace Office {
1959
1959
  *
1960
1960
  * Application and platform support for each `CoercionType` is specified in the following requirement set descriptions.
1961
1961
  *
1962
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion}, (when using `Office.CoercionType.Html`)
1962
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion}, (when using `Office.CoercionType.Html`)
1963
1963
  *
1964
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/image-coercion-requirement-sets | ImageCoercion 1.1} (when using `Office.CoercionType.Image`)
1964
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/image-coercion-requirement-sets | ImageCoercion 1.1} (when using `Office.CoercionType.Image`)
1965
1965
  *
1966
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
1966
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
1967
1967
  *
1968
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
1968
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
1969
1969
  *
1970
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#selection | Selection}
1970
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#selection | Selection}
1971
1971
  *
1972
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
1972
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
1973
1973
  *
1974
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
1974
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
1975
1975
  *
1976
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/image-coercion-requirement-sets#imagecoercion-12 | ImageCoercion 1.2} (when using `Office.CoercionType.XmlSvg`)
1976
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/image-coercion-requirement-sets#imagecoercion-12 | ImageCoercion 1.2} (when using `Office.CoercionType.XmlSvg`)
1977
1977
  *
1978
1978
  */
1979
1979
  enum CoercionType {
@@ -2382,11 +2382,11 @@ declare namespace Office {
2382
2382
  *
2383
2383
  * **Requirement sets**:
2384
2384
  *
2385
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2385
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2386
2386
  *
2387
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
2387
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
2388
2388
  *
2389
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
2389
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
2390
2390
  */
2391
2391
  interface Binding {
2392
2392
  /**
@@ -2407,7 +2407,7 @@ declare namespace Office {
2407
2407
  *
2408
2408
  * @remarks
2409
2409
  *
2410
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#bindingevents | BindingEvents}
2410
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#bindingevents | BindingEvents}
2411
2411
  *
2412
2412
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
2413
2413
  *
@@ -2423,7 +2423,7 @@ declare namespace Office {
2423
2423
  *
2424
2424
  * @remarks
2425
2425
  *
2426
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#bindingevents | BindingEvents}
2426
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#bindingevents | BindingEvents}
2427
2427
  *
2428
2428
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
2429
2429
  *
@@ -2439,21 +2439,21 @@ declare namespace Office {
2439
2439
  *
2440
2440
  * **Requirement sets**:
2441
2441
  *
2442
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2442
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2443
2443
  *
2444
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2444
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2445
2445
  *
2446
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2446
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2447
2447
  *
2448
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2448
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2449
2449
  *
2450
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
2450
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
2451
2451
  *
2452
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2452
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2453
2453
  *
2454
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
2454
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
2455
2455
  *
2456
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2456
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2457
2457
  *
2458
2458
  * When called from a MatrixBinding or TableBinding, the getDataAsync method will return a subset of the bound values if the optional startRow,
2459
2459
  * startColumn, rowCount, and columnCount parameters are specified (and they specify a contiguous and valid range).
@@ -2471,21 +2471,21 @@ declare namespace Office {
2471
2471
  *
2472
2472
  * **Requirement sets**:
2473
2473
  *
2474
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2474
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2475
2475
  *
2476
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2476
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2477
2477
  *
2478
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2478
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2479
2479
  *
2480
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2480
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2481
2481
  *
2482
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
2482
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
2483
2483
  *
2484
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2484
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2485
2485
  *
2486
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
2486
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
2487
2487
  *
2488
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2488
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2489
2489
  *
2490
2490
  * When called from a MatrixBinding or TableBinding, the getDataAsync method will return a subset of the bound values if the optional startRow,
2491
2491
  * startColumn, rowCount, and columnCount parameters are specified (and they specify a contiguous and valid range).
@@ -2500,7 +2500,7 @@ declare namespace Office {
2500
2500
  *
2501
2501
  * @remarks
2502
2502
  *
2503
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#bindingevents | BindingEvents}
2503
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#bindingevents | BindingEvents}
2504
2504
  *
2505
2505
  * @param eventType The event type. For bindings, it can be `Office.EventType.BindingDataChanged` or `Office.EventType.BindingSelectionChanged`.
2506
2506
  * @param options Provides options to determine which event handler or handlers are removed.
@@ -2512,7 +2512,7 @@ declare namespace Office {
2512
2512
  *
2513
2513
  * @remarks
2514
2514
  *
2515
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#bindingevents | BindingEvents}
2515
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#bindingevents | BindingEvents}
2516
2516
  *
2517
2517
  * @param eventType The event type. For bindings, it can be `Office.EventType.BindingDataChanged` or `Office.EventType.BindingSelectionChanged`.
2518
2518
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -2525,21 +2525,21 @@ declare namespace Office {
2525
2525
  *
2526
2526
  * **Requirement sets**:
2527
2527
  *
2528
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2528
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2529
2529
  *
2530
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2530
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2531
2531
  *
2532
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2532
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2533
2533
  *
2534
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2534
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2535
2535
  *
2536
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
2536
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
2537
2537
  *
2538
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2538
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2539
2539
  *
2540
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
2540
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
2541
2541
  *
2542
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2542
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2543
2543
  *
2544
2544
  * The value passed for data contains the data to be written in the binding. The kind of value passed determines what will be written as
2545
2545
  * described in the following table.
@@ -2672,21 +2672,21 @@ declare namespace Office {
2672
2672
  *
2673
2673
  * **Requirement sets**:
2674
2674
  *
2675
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2675
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
2676
2676
  *
2677
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2677
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2678
2678
  *
2679
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2679
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
2680
2680
  *
2681
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2681
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
2682
2682
  *
2683
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
2683
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
2684
2684
  *
2685
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2685
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
2686
2686
  *
2687
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
2687
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
2688
2688
  *
2689
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2689
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
2690
2690
  *
2691
2691
  * The value passed for data contains the data to be written in the binding. The kind of value passed determines what will be written as
2692
2692
  * described in the following table.
@@ -2896,11 +2896,11 @@ declare namespace Office {
2896
2896
  *
2897
2897
  * **Requirement sets**:
2898
2898
  *
2899
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2899
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
2900
2900
  *
2901
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
2901
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
2902
2902
  *
2903
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
2903
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
2904
2904
  *
2905
2905
  * For Excel, the itemName parameter can refer to a named range or a table.
2906
2906
  *
@@ -2932,9 +2932,9 @@ declare namespace Office {
2932
2932
  *
2933
2933
  * @remarks
2934
2934
  *
2935
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings},
2936
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings},
2937
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
2935
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings},
2936
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings},
2937
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
2938
2938
  *
2939
2939
  * For Excel, the itemName parameter can refer to a named range or a table.
2940
2940
  *
@@ -2965,7 +2965,7 @@ declare namespace Office {
2965
2965
  *
2966
2966
  * @remarks
2967
2967
  *
2968
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
2968
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
2969
2969
  *
2970
2970
  * Adds a binding object of the specified type to the Bindings collection, which will be identified with the supplied id.
2971
2971
  * The method fails if the specified selection cannot be bound.
@@ -2982,7 +2982,7 @@ declare namespace Office {
2982
2982
  *
2983
2983
  * @remarks
2984
2984
  *
2985
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
2985
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
2986
2986
  *
2987
2987
  * Adds a binding object of the specified type to the Bindings collection, which will be identified with the supplied id.
2988
2988
  * The method fails if the specified selection cannot be bound.
@@ -3000,11 +3000,11 @@ declare namespace Office {
3000
3000
  *
3001
3001
  * **Requirement sets**:
3002
3002
  *
3003
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3003
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3004
3004
  *
3005
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3005
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3006
3006
  *
3007
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3007
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3008
3008
  *
3009
3009
  * Adds the specified type of binding object to the Bindings collection, which will be identified with the supplied id.
3010
3010
  *
@@ -3027,11 +3027,11 @@ declare namespace Office {
3027
3027
  *
3028
3028
  * **Requirement sets**:
3029
3029
  *
3030
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3030
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3031
3031
  *
3032
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3032
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3033
3033
  *
3034
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3034
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3035
3035
  *
3036
3036
  * Adds the specified type of binding object to the Bindings collection, which will be identified with the supplied id.
3037
3037
  *
@@ -3053,11 +3053,11 @@ declare namespace Office {
3053
3053
  *
3054
3054
  * **Requirement sets**:
3055
3055
  *
3056
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3056
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3057
3057
  *
3058
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3058
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3059
3059
  *
3060
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3060
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3061
3061
  *
3062
3062
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
3063
3063
  * @param callback A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3071,11 +3071,11 @@ declare namespace Office {
3071
3071
  *
3072
3072
  * **Requirement sets**:
3073
3073
  *
3074
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3074
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3075
3075
  *
3076
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3076
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3077
3077
  *
3078
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3078
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3079
3079
  *
3080
3080
  * @param callback A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
3081
3081
  * The `value` property of the result is an array that contains each binding created for the referenced Bindings object.
@@ -3088,11 +3088,11 @@ declare namespace Office {
3088
3088
  *
3089
3089
  * **Requirement sets**:
3090
3090
  *
3091
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3091
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3092
3092
  *
3093
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3093
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3094
3094
  *
3095
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3095
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3096
3096
  *
3097
3097
  * Fails if the specified id does not exist.
3098
3098
  *
@@ -3109,11 +3109,11 @@ declare namespace Office {
3109
3109
  *
3110
3110
  * **Requirement sets**:
3111
3111
  *
3112
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3112
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3113
3113
  *
3114
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3114
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3115
3115
  *
3116
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3116
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3117
3117
  *
3118
3118
  * Fails if the specified id does not exist.
3119
3119
  *
@@ -3129,11 +3129,11 @@ declare namespace Office {
3129
3129
  *
3130
3130
  * **Requirement sets**:
3131
3131
  *
3132
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3132
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3133
3133
  *
3134
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3134
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3135
3135
  *
3136
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3136
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3137
3137
  *
3138
3138
  * Fails if the specified id does not exist.
3139
3139
  *
@@ -3149,11 +3149,11 @@ declare namespace Office {
3149
3149
  *
3150
3150
  * **Requirement sets**:
3151
3151
  *
3152
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3152
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixbindings | MatrixBindings}
3153
3153
  *
3154
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablebindings | TableBindings}
3154
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablebindings | TableBindings}
3155
3155
  *
3156
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textbindings | TextBindings}
3156
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textbindings | TextBindings}
3157
3157
  *
3158
3158
  * Fails if the specified id does not exist.
3159
3159
  *
@@ -3187,7 +3187,7 @@ declare namespace Office {
3187
3187
  *
3188
3188
  * @remarks
3189
3189
  *
3190
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3190
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3191
3191
  *
3192
3192
  * @param xPath The XPath expression that specifies the nodes to get. Required.
3193
3193
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3200,7 +3200,7 @@ declare namespace Office {
3200
3200
  *
3201
3201
  * @remarks
3202
3202
  *
3203
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3203
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3204
3204
  *
3205
3205
  * @param xPath The XPath expression that specifies the nodes to get. Required.
3206
3206
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3212,7 +3212,7 @@ declare namespace Office {
3212
3212
  *
3213
3213
  * @remarks
3214
3214
  *
3215
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3215
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3216
3216
  *
3217
3217
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
3218
3218
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3224,7 +3224,7 @@ declare namespace Office {
3224
3224
  *
3225
3225
  * @remarks
3226
3226
  *
3227
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3227
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3228
3228
  *
3229
3229
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
3230
3230
  * The `value` property of the result is a string that contains the value of the referenced node.
@@ -3235,7 +3235,7 @@ declare namespace Office {
3235
3235
  *
3236
3236
  * @remarks
3237
3237
  *
3238
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3238
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3239
3239
  *
3240
3240
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
3241
3241
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3247,7 +3247,7 @@ declare namespace Office {
3247
3247
  *
3248
3248
  * @remarks
3249
3249
  *
3250
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3250
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3251
3251
  *
3252
3252
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
3253
3253
  * The `value` property of the result is a string that contains the inner text of the referenced nodes.
@@ -3258,7 +3258,7 @@ declare namespace Office {
3258
3258
  *
3259
3259
  * @remarks
3260
3260
  *
3261
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3261
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3262
3262
  *
3263
3263
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
3264
3264
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3270,7 +3270,7 @@ declare namespace Office {
3270
3270
  *
3271
3271
  * @remarks
3272
3272
  *
3273
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3273
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3274
3274
  *
3275
3275
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
3276
3276
  * The `value` property of the result is a string that contains the XML of the referenced node.
@@ -3281,7 +3281,7 @@ declare namespace Office {
3281
3281
  *
3282
3282
  * @remarks
3283
3283
  *
3284
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3284
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3285
3285
  *
3286
3286
  * @param value The value to be set on the node
3287
3287
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3293,7 +3293,7 @@ declare namespace Office {
3293
3293
  *
3294
3294
  * @remarks
3295
3295
  *
3296
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3296
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3297
3297
  *
3298
3298
  * @param value The value to be set on the node
3299
3299
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3304,7 +3304,7 @@ declare namespace Office {
3304
3304
  *
3305
3305
  * @remarks
3306
3306
  *
3307
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3307
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3308
3308
  *
3309
3309
  * @param text Required. The text value of the XML node.
3310
3310
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3316,7 +3316,7 @@ declare namespace Office {
3316
3316
  *
3317
3317
  * @remarks
3318
3318
  *
3319
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3319
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3320
3320
  *
3321
3321
  * @param text Required. The text value of the XML node.
3322
3322
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3327,7 +3327,7 @@ declare namespace Office {
3327
3327
  *
3328
3328
  * @remarks
3329
3329
  *
3330
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3330
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3331
3331
  *
3332
3332
  * @param xml The XML to be set on the node
3333
3333
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3339,7 +3339,7 @@ declare namespace Office {
3339
3339
  *
3340
3340
  * @remarks
3341
3341
  *
3342
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3342
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3343
3343
  *
3344
3344
  * @param xml The XML to be set on the node
3345
3345
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3371,7 +3371,7 @@ declare namespace Office {
3371
3371
  *
3372
3372
  * @remarks
3373
3373
  *
3374
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3374
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3375
3375
  *
3376
3376
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
3377
3377
  *
@@ -3388,7 +3388,7 @@ declare namespace Office {
3388
3388
  *
3389
3389
  * @remarks
3390
3390
  *
3391
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3391
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3392
3392
  *
3393
3393
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
3394
3394
  *
@@ -3404,7 +3404,7 @@ declare namespace Office {
3404
3404
  *
3405
3405
  * @remarks
3406
3406
  *
3407
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3407
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3408
3408
  *
3409
3409
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
3410
3410
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3415,7 +3415,7 @@ declare namespace Office {
3415
3415
  *
3416
3416
  * @remarks
3417
3417
  *
3418
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3418
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3419
3419
  *
3420
3420
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
3421
3421
  */
@@ -3425,7 +3425,7 @@ declare namespace Office {
3425
3425
  *
3426
3426
  * @remarks
3427
3427
  *
3428
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3428
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3429
3429
  *
3430
3430
  * @param xPath An XPath expression that specifies the nodes you want returned. Required.
3431
3431
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3438,7 +3438,7 @@ declare namespace Office {
3438
3438
  *
3439
3439
  * @remarks
3440
3440
  *
3441
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3441
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3442
3442
  *
3443
3443
  * @param xPath An XPath expression that specifies the nodes you want returned. Required.
3444
3444
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3450,7 +3450,7 @@ declare namespace Office {
3450
3450
  *
3451
3451
  * @remarks
3452
3452
  *
3453
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3453
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3454
3454
  *
3455
3455
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
3456
3456
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3462,7 +3462,7 @@ declare namespace Office {
3462
3462
  *
3463
3463
  * @remarks
3464
3464
  *
3465
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3465
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3466
3466
  *
3467
3467
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
3468
3468
  * The `value` property of the result is a string that contains the XML of the referenced CustomXmlPart object.
@@ -3473,7 +3473,7 @@ declare namespace Office {
3473
3473
  *
3474
3474
  * @remarks
3475
3475
  *
3476
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3476
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3477
3477
  *
3478
3478
  * @param eventType Specifies the type of event to remove. For a CustomXmlPart object, the eventType parameter can be specified as
3479
3479
  * `Office.EventType.NodeDeleted`, `Office.EventType.NodeInserted`, and `Office.EventType.NodeReplaced`.
@@ -3487,7 +3487,7 @@ declare namespace Office {
3487
3487
  *
3488
3488
  * @remarks
3489
3489
  *
3490
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3490
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3491
3491
  *
3492
3492
  * @param eventType Specifies the type of event to remove. For a CustomXmlPart object, the eventType parameter can be specified as
3493
3493
  * `Office.EventType.NodeDeleted`, `Office.EventType.NodeInserted`, and `Office.EventType.NodeReplaced`.
@@ -3570,7 +3570,7 @@ declare namespace Office {
3570
3570
  *
3571
3571
  * @remarks
3572
3572
  *
3573
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3573
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3574
3574
  *
3575
3575
  * @param xml The XML to add to the newly created custom XML part.
3576
3576
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3583,7 +3583,7 @@ declare namespace Office {
3583
3583
  *
3584
3584
  * @remarks
3585
3585
  *
3586
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3586
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3587
3587
  *
3588
3588
  * @param xml The XML to add to the newly created custom XML part.
3589
3589
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3595,7 +3595,7 @@ declare namespace Office {
3595
3595
  *
3596
3596
  * @remarks
3597
3597
  *
3598
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3598
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3599
3599
  *
3600
3600
  * @param id The GUID of the custom XML part, including opening and closing braces.
3601
3601
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3609,7 +3609,7 @@ declare namespace Office {
3609
3609
  *
3610
3610
  * @remarks
3611
3611
  *
3612
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3612
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3613
3613
  *
3614
3614
  * @param id The GUID of the custom XML part, including opening and closing braces.
3615
3615
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3622,7 +3622,7 @@ declare namespace Office {
3622
3622
  *
3623
3623
  * @remarks
3624
3624
  *
3625
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3625
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3626
3626
  *
3627
3627
  * @param ns The namespace URI.
3628
3628
  * @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
@@ -3635,7 +3635,7 @@ declare namespace Office {
3635
3635
  *
3636
3636
  * @remarks
3637
3637
  *
3638
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3638
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3639
3639
  *
3640
3640
  * @param ns The namespace URI.
3641
3641
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -3656,7 +3656,7 @@ declare namespace Office {
3656
3656
  *
3657
3657
  * @remarks
3658
3658
  *
3659
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3659
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3660
3660
  *
3661
3661
  * If no namespace is assigned to the requested prefix, the method returns an empty string ("").
3662
3662
  *
@@ -3671,7 +3671,7 @@ declare namespace Office {
3671
3671
  *
3672
3672
  * @remarks
3673
3673
  *
3674
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3674
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3675
3675
  *
3676
3676
  * If no namespace is assigned to the requested prefix, the method returns an empty string ("").
3677
3677
  *
@@ -3685,7 +3685,7 @@ declare namespace Office {
3685
3685
  *
3686
3686
  * @remarks
3687
3687
  *
3688
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3688
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3689
3689
  *
3690
3690
  * If the prefix already exists in the namespace manager, this method will overwrite the mapping of that prefix except when the prefix is one
3691
3691
  * added or used by the data store internally, in which case it will return an error.
@@ -3701,7 +3701,7 @@ declare namespace Office {
3701
3701
  *
3702
3702
  * @remarks
3703
3703
  *
3704
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3704
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3705
3705
  *
3706
3706
  * If the prefix already exists in the namespace manager, this method will overwrite the mapping of that prefix except when the prefix is one
3707
3707
  * added or used by the data store internally, in which case it will return an error.
@@ -3716,7 +3716,7 @@ declare namespace Office {
3716
3716
  *
3717
3717
  * @remarks
3718
3718
  *
3719
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3719
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3720
3720
  *
3721
3721
  * If no prefix is assigned to the requested namespace, the method returns an empty string (""). If there are multiple prefixes specified in
3722
3722
  * the namespace manager, the method returns the first prefix that matches the supplied namespace.
@@ -3732,7 +3732,7 @@ declare namespace Office {
3732
3732
  *
3733
3733
  * @remarks
3734
3734
  *
3735
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3735
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#customxmlparts | CustomXmlParts}
3736
3736
  *
3737
3737
  * If no prefix is assigned to the requested namespace, the method returns an empty string (""). If there are multiple prefixes specified in
3738
3738
  * the namespace manager, the method returns the first prefix that matches the supplied namespace.
@@ -3781,7 +3781,7 @@ declare namespace Office {
3781
3781
  *
3782
3782
  * @remarks
3783
3783
  *
3784
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#documentevents | DocumentEvents}
3784
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#documentevents | DocumentEvents}
3785
3785
  *
3786
3786
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
3787
3787
  *
@@ -3797,7 +3797,7 @@ declare namespace Office {
3797
3797
  *
3798
3798
  * @remarks
3799
3799
  *
3800
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#documentevents | DocumentEvents}
3800
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#documentevents | DocumentEvents}
3801
3801
  *
3802
3802
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
3803
3803
  *
@@ -3812,7 +3812,7 @@ declare namespace Office {
3812
3812
  *
3813
3813
  * @remarks
3814
3814
  *
3815
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#activeview | ActiveView}
3815
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#activeview | ActiveView}
3816
3816
  *
3817
3817
  * Can trigger an event when the view changes.
3818
3818
  *
@@ -3828,7 +3828,7 @@ declare namespace Office {
3828
3828
  *
3829
3829
  * @remarks
3830
3830
  *
3831
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#activeview | ActiveView}
3831
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#activeview | ActiveView}
3832
3832
  *
3833
3833
  * Can trigger an event when the view changes.
3834
3834
  *
@@ -3846,11 +3846,11 @@ declare namespace Office {
3846
3846
  *
3847
3847
  * **Requirement sets**:
3848
3848
  *
3849
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#compressedfile | CompressedFile} (when using `Office.FileType.Compressed`)
3849
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#compressedfile | CompressedFile} (when using `Office.FileType.Compressed`)
3850
3850
  *
3851
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#file | File}
3851
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#file | File}
3852
3852
  *
3853
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textfile | TextFile} (when using `Office.FileType.Text`)
3853
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textfile | TextFile} (when using `Office.FileType.Text`)
3854
3854
  *
3855
3855
  * For add-ins running in Office host applications other than Office on iPad, the `getFileAsync` method supports getting files in slices of up
3856
3856
  * to 4194304 bytes (4 MB). For add-ins running in Office apps on iPad, the `getFileAsync` method supports getting files in slices of up to
@@ -3881,11 +3881,11 @@ declare namespace Office {
3881
3881
  *
3882
3882
  * **Requirement sets**:
3883
3883
  *
3884
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#compressedfile | CompressedFile} (when using `Office.FileType.Compressed`)
3884
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#compressedfile | CompressedFile} (when using `Office.FileType.Compressed`)
3885
3885
  *
3886
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#file | File}
3886
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#file | File}
3887
3887
  *
3888
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textfile | TextFile} (when using `Office.FileType.Text`)
3888
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textfile | TextFile} (when using `Office.FileType.Text`)
3889
3889
  *
3890
3890
  * For add-ins running in Office host applications other than Office on iPad, the `getFileAsync` method supports getting files in slices of up
3891
3891
  * to 4194304 bytes (4 MB). For add-ins running in Office on iPad apps, the `getFileAsync` method supports getting files in slices of up to
@@ -3912,7 +3912,7 @@ declare namespace Office {
3912
3912
  *
3913
3913
  * @remarks
3914
3914
  *
3915
- * **Requirement sets**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
3915
+ * **Requirement sets**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
3916
3916
  *
3917
3917
  * You get the file's URL with the url property `asyncResult.value.url`.
3918
3918
  *
@@ -3926,7 +3926,7 @@ declare namespace Office {
3926
3926
  *
3927
3927
  * @remarks
3928
3928
  *
3929
- * **Requirement sets**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
3929
+ * **Requirement sets**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
3930
3930
  *
3931
3931
  * You get the file's URL with the url property `asyncResult.value.url`.
3932
3932
  *
@@ -3941,17 +3941,17 @@ declare namespace Office {
3941
3941
  *
3942
3942
  * **Requirement sets**:
3943
3943
  *
3944
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
3944
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
3945
3945
  *
3946
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
3946
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
3947
3947
  *
3948
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
3948
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
3949
3949
  *
3950
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#selection | Selection}
3950
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#selection | Selection}
3951
3951
  *
3952
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
3952
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
3953
3953
  *
3954
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
3954
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
3955
3955
  *
3956
3956
  * In the callback function that is passed to the getSelectedDataAsync method, you can use the properties of the AsyncResult object to return
3957
3957
  * the following information.
@@ -4033,17 +4033,17 @@ declare namespace Office {
4033
4033
  *
4034
4034
  * **Requirement sets**:
4035
4035
  *
4036
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
4036
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion} (when using `Office.CoercionType.Html`)
4037
4037
  *
4038
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
4038
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
4039
4039
  *
4040
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
4040
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
4041
4041
  *
4042
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#selection | Selection}
4042
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#selection | Selection}
4043
4043
  *
4044
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
4044
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
4045
4045
  *
4046
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
4046
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
4047
4047
  *
4048
4048
  * In the callback function that is passed to the getSelectedDataAsync method, you can use the properties of the AsyncResult object to return
4049
4049
  * the following information.
@@ -4120,7 +4120,7 @@ declare namespace Office {
4120
4120
  *
4121
4121
  * @remarks
4122
4122
  *
4123
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
4123
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
4124
4124
  *
4125
4125
  * PowerPoint doesn't support the goToByIdAsync method in Master Views.
4126
4126
  *
@@ -4147,7 +4147,7 @@ declare namespace Office {
4147
4147
  *
4148
4148
  * @remarks
4149
4149
  *
4150
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
4150
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
4151
4151
  *
4152
4152
  * PowerPoint doesn't support the goToByIdAsync method in Master Views.
4153
4153
  *
@@ -4173,7 +4173,7 @@ declare namespace Office {
4173
4173
  *
4174
4174
  * @remarks
4175
4175
  *
4176
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#documentevents | DocumentEvents}
4176
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#documentevents | DocumentEvents}
4177
4177
  *
4178
4178
  * @param eventType The event type. For document can be 'Document.SelectionChanged' or 'Document.ActiveViewChanged'.
4179
4179
  * @param options Provides options to determine which event handler or handlers are removed.
@@ -4185,7 +4185,7 @@ declare namespace Office {
4185
4185
  *
4186
4186
  * @remarks
4187
4187
  *
4188
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#documentevents | DocumentEvents}
4188
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#documentevents | DocumentEvents}
4189
4189
  *
4190
4190
  * @param eventType The event type. For document can be 'Document.SelectionChanged' or 'Document.ActiveViewChanged'.
4191
4191
  * @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
@@ -4198,21 +4198,21 @@ declare namespace Office {
4198
4198
  *
4199
4199
  * **Requirement sets**:
4200
4200
  *
4201
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion}, (when using `Office.CoercionType.Html`)
4201
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion}, (when using `Office.CoercionType.Html`)
4202
4202
  *
4203
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/image-coercion-requirement-sets | ImageCoercion 1.1} (when using `Office.CoercionType.Image`)
4203
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/image-coercion-requirement-sets | ImageCoercion 1.1} (when using `Office.CoercionType.Image`)
4204
4204
  *
4205
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
4205
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
4206
4206
  *
4207
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
4207
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
4208
4208
  *
4209
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#selection | Selection}
4209
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#selection | Selection}
4210
4210
  *
4211
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
4211
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
4212
4212
  *
4213
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
4213
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
4214
4214
  *
4215
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/image-coercion-requirement-sets#imagecoercion-12 | ImageCoercion 1.2} (when using `Office.CoercionType.XmlSvg`)
4215
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/image-coercion-requirement-sets#imagecoercion-12 | ImageCoercion 1.2} (when using `Office.CoercionType.XmlSvg`)
4216
4216
  *
4217
4217
  * **Application-specific behaviors**
4218
4218
  *
@@ -4388,21 +4388,21 @@ declare namespace Office {
4388
4388
  *
4389
4389
  * **Requirement sets**:
4390
4390
  *
4391
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion}, (when using `Office.CoercionType.Html`)
4391
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#htmlcoercion | HtmlCoercion}, (when using `Office.CoercionType.Html`)
4392
4392
  *
4393
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/image-coercion-requirement-sets | ImageCoercion} (when using `Office.CoercionType.Image`)
4393
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/image-coercion-requirement-sets | ImageCoercion} (when using `Office.CoercionType.Image`)
4394
4394
  *
4395
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
4395
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#matrixcoercion | MatrixCoercion} (when using `Office.CoercionType.Matrix`)
4396
4396
  *
4397
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
4397
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#ooxmlcoercion | OoxmlCoercion} (when using `Office.CoercionType.Ooxml`)
4398
4398
  *
4399
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#selection | Selection}
4399
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#selection | Selection}
4400
4400
  *
4401
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
4401
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#tablecoercion | TableCoercion} (when using `Office.CoercionType.Table`)
4402
4402
  *
4403
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
4403
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#textcoercion | TextCoercion} (when using `Office.CoercionType.Text`)
4404
4404
  *
4405
- * - {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/image-coercion-requirement-sets#imagecoercion-12 | ImageCoercion 1.2} (when using `Office.CoercionType.XmlSvg`)
4405
+ * - {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/image-coercion-requirement-sets#imagecoercion-12 | ImageCoercion 1.2} (when using `Office.CoercionType.XmlSvg`)
4406
4406
  *
4407
4407
  * **Application-specific behaviors**
4408
4408
  *
@@ -4888,7 +4888,7 @@ declare namespace Office {
4888
4888
  *
4889
4889
  * @remarks
4890
4890
  *
4891
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#file | File}
4891
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#file | File}
4892
4892
  *
4893
4893
  * No more than two documents are allowed to be in memory; otherwise the Document.getFileAsync operation will fail. Use the File.closeAsync
4894
4894
  * method to close the file when you are finished working with it.
@@ -4927,7 +4927,7 @@ declare namespace Office {
4927
4927
  *
4928
4928
  * @remarks
4929
4929
  *
4930
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#file | File}
4930
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#file | File}
4931
4931
  *
4932
4932
  * In the callback function passed to the getSliceAsync method, you can use the properties of the AsyncResult object to return the following
4933
4933
  * information.
@@ -5011,7 +5011,7 @@ declare namespace Office {
5011
5011
  *
5012
5012
  * @remarks
5013
5013
  *
5014
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5014
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5015
5015
  *
5016
5016
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
5017
5017
  *
@@ -5053,7 +5053,7 @@ declare namespace Office {
5053
5053
  *
5054
5054
  * @remarks
5055
5055
  *
5056
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5056
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5057
5057
  *
5058
5058
  * You can add multiple event handlers for the specified eventType as long as the name of each event handler function is unique.
5059
5059
  *
@@ -5090,7 +5090,7 @@ declare namespace Office {
5090
5090
  *
5091
5091
  * @remarks
5092
5092
  *
5093
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#settings | Settings}
5093
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
5094
5094
  *
5095
5095
  * @param settingName The case-sensitive name of the setting to retrieve.
5096
5096
  * @returns An object that has property names mapped to JSON serialized values.
@@ -5101,7 +5101,7 @@ declare namespace Office {
5101
5101
  *
5102
5102
  * @remarks
5103
5103
  *
5104
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5104
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5105
5105
  *
5106
5106
  * This method is useful in Excel, Word, and PowerPoint coauthoring scenarios when multiple instances of the same add-in are working against
5107
5107
  * the same document. Because each add-in is working against an in-memory copy of the settings loaded from the document at the time the user
@@ -5148,7 +5148,7 @@ declare namespace Office {
5148
5148
  *
5149
5149
  * @remarks
5150
5150
  *
5151
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#settings | Settings}
5151
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
5152
5152
  *
5153
5153
  * null is a valid value for a setting. Therefore, assigning null to the setting will not remove it from the settings property bag.
5154
5154
  *
@@ -5160,7 +5160,7 @@ declare namespace Office {
5160
5160
  *
5161
5161
  * @remarks
5162
5162
  *
5163
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5163
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5164
5164
  *
5165
5165
  * If the optional handler parameter is omitted when calling the removeHandlerAsync method, all event handlers for the specified eventType
5166
5166
  * will be removed.
@@ -5181,7 +5181,7 @@ declare namespace Office {
5181
5181
  *
5182
5182
  * @remarks
5183
5183
  *
5184
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5184
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5185
5185
  *
5186
5186
  * If the optional handler parameter is omitted when calling the removeHandlerAsync method, all event handlers for the specified eventType
5187
5187
  * will be removed.
@@ -5201,7 +5201,7 @@ declare namespace Office {
5201
5201
  *
5202
5202
  * @remarks
5203
5203
  *
5204
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#settings | Settings}
5204
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
5205
5205
  *
5206
5206
  * Any settings previously saved by an add-in are loaded when it is initialized, so during the lifetime of the session you can just use the
5207
5207
  * set and get methods to work with the in-memory copy of the settings property bag. When you want to persist the settings so that they are
@@ -5244,7 +5244,7 @@ declare namespace Office {
5244
5244
  *
5245
5245
  * @remarks
5246
5246
  *
5247
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#settings | Settings}
5247
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
5248
5248
  *
5249
5249
  * Any settings previously saved by an add-in are loaded when it is initialized, so during the lifetime of the session you can just use the
5250
5250
  * set and get methods to work with the in-memory copy of the settings property bag. When you want to persist the settings so that they are
@@ -5291,7 +5291,7 @@ declare namespace Office {
5291
5291
  *
5292
5292
  * @remarks
5293
5293
  *
5294
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#settings | Settings}
5294
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#settings | Settings}
5295
5295
  *
5296
5296
  * The set method creates a new setting of the specified name if it does not already exist, or sets an existing setting of the specified name
5297
5297
  * in the in-memory copy of the settings property bag. After you call the Settings.saveAsync method, the value is stored in the document as
@@ -5335,7 +5335,7 @@ declare namespace Office {
5335
5335
  *
5336
5336
  * @remarks
5337
5337
  *
5338
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-origin-requirement-sets | DialogOrigin 1.1}
5338
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-origin-requirement-sets | DialogOrigin 1.1}
5339
5339
  */
5340
5340
  interface DialogMessageOptions {
5341
5341
  /**
@@ -5360,7 +5360,7 @@ declare namespace Office {
5360
5360
  *
5361
5361
  * @remarks
5362
5362
  *
5363
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/dialog-origin-requirement-sets | DialogOrigin 1.1}.
5363
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/dialog-origin-requirement-sets | DialogOrigin 1.1}.
5364
5364
  * The property is `undefined` on clients that do not support this requirement set.
5365
5365
  */
5366
5366
  origin: string | undefined;
@@ -5880,7 +5880,7 @@ declare namespace Office {
5880
5880
  *
5881
5881
  * @remarks
5882
5882
  *
5883
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5883
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5884
5884
  *
5885
5885
  * In the callback function passed to the goToByIdAsync method, you can use the properties of the AsyncResult object to return the following information.
5886
5886
  *
@@ -5918,7 +5918,7 @@ declare namespace Office {
5918
5918
  *
5919
5919
  * @remarks
5920
5920
  *
5921
- * **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5921
+ * **Requirement set**: {@link https://docs.microsoft.com/javascript/api/requirement-sets/common/office-add-in-requirement-sets#methods-that-arent-part-of-a-requirement-set | Not in a set}
5922
5922
  *
5923
5923
  * In the callback function passed to the goToByIdAsync method, you can use the properties of the AsyncResult object to return the following information.
5924
5924
  *
@@ -9390,7 +9390,7 @@ declare namespace Office {
9390
9390
  *
9391
9391
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
9392
9392
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
9393
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
9393
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
9394
9394
  *
9395
9395
  * Child interfaces:
9396
9396
  *
@@ -9405,7 +9405,7 @@ declare namespace Office {
9405
9405
  *
9406
9406
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
9407
9407
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
9408
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
9408
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
9409
9409
  *
9410
9410
  * Parent interfaces:
9411
9411
  *
@@ -9780,7 +9780,7 @@ declare namespace Office {
9780
9780
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
9781
9781
  *
9782
9782
  * For supported events, refer to the Item object model
9783
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
9783
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
9784
9784
  *
9785
9785
  * @remarks
9786
9786
  * [Api set: Mailbox 1.7]
@@ -9802,7 +9802,7 @@ declare namespace Office {
9802
9802
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
9803
9803
  *
9804
9804
  * For supported events, refer to the Item object model
9805
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
9805
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
9806
9806
  *
9807
9807
  * @remarks
9808
9808
  * [Api set: Mailbox 1.7]
@@ -10304,7 +10304,7 @@ declare namespace Office {
10304
10304
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
10305
10305
  *
10306
10306
  * For supported events, refer to the Item object model
10307
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10307
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10308
10308
  *
10309
10309
  * @remarks
10310
10310
  * [Api set: Mailbox 1.7]
@@ -10324,7 +10324,7 @@ declare namespace Office {
10324
10324
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
10325
10325
  *
10326
10326
  * For supported events, refer to the Item object model
10327
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10327
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10328
10328
  *
10329
10329
  * @remarks
10330
10330
  * [Api set: Mailbox 1.7]
@@ -10649,7 +10649,7 @@ declare namespace Office {
10649
10649
  *
10650
10650
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
10651
10651
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
10652
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
10652
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
10653
10653
  *
10654
10654
  * Parent interfaces:
10655
10655
  *
@@ -10969,7 +10969,7 @@ declare namespace Office {
10969
10969
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
10970
10970
  *
10971
10971
  * For supported events, refer to the Item object model
10972
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10972
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10973
10973
  *
10974
10974
  * @remarks
10975
10975
  * [Api set: Mailbox 1.7]
@@ -10991,7 +10991,7 @@ declare namespace Office {
10991
10991
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
10992
10992
  *
10993
10993
  * For supported events, refer to the Item object model
10994
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10994
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
10995
10995
  *
10996
10996
  * @remarks
10997
10997
  * [Api set: Mailbox 1.7]
@@ -11480,7 +11480,7 @@ declare namespace Office {
11480
11480
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
11481
11481
  *
11482
11482
  * For supported events, refer to the Item object model
11483
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
11483
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
11484
11484
  *
11485
11485
  * @remarks
11486
11486
  * [Api set: Mailbox 1.7]
@@ -11500,7 +11500,7 @@ declare namespace Office {
11500
11500
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
11501
11501
  *
11502
11502
  * For supported events, refer to the Item object model
11503
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
11503
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
11504
11504
  *
11505
11505
  * @remarks
11506
11506
  * [Api set: Mailbox 1.7]
@@ -13009,7 +13009,7 @@ declare namespace Office {
13009
13009
  * You can determine the type of the item by using the `itemType` property.
13010
13010
  *
13011
13011
  * To see the full member list, refer to the
13012
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
13012
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
13013
13013
  *
13014
13014
  * If you want to see IntelliSense for only a specific type or mode, cast this item to one of the following:
13015
13015
  *
@@ -13034,7 +13034,7 @@ declare namespace Office {
13034
13034
  *
13035
13035
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
13036
13036
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
13037
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
13037
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
13038
13038
  *
13039
13039
  * Child interfaces:
13040
13040
  *
@@ -13049,7 +13049,7 @@ declare namespace Office {
13049
13049
  *
13050
13050
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
13051
13051
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
13052
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
13052
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
13053
13053
  *
13054
13054
  * Child interfaces:
13055
13055
  *
@@ -13366,7 +13366,7 @@ declare namespace Office {
13366
13366
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
13367
13367
  *
13368
13368
  * For supported events, refer to the Mailbox object model
13369
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox#events | events section}.
13369
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox#events | events section}.
13370
13370
  *
13371
13371
  * @remarks
13372
13372
  * [Api set: Mailbox 1.5]
@@ -13387,7 +13387,7 @@ declare namespace Office {
13387
13387
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
13388
13388
  *
13389
13389
  * For supported events, refer to the Mailbox object model
13390
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox#events | events section}.
13390
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox#events | events section}.
13391
13391
  *
13392
13392
  * @remarks
13393
13393
  * [Api set: Mailbox 1.5]
@@ -14090,7 +14090,7 @@ declare namespace Office {
14090
14090
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
14091
14091
  *
14092
14092
  * For supported events, refer to the Mailbox object model
14093
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox#events | events section}.
14093
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox#events | events section}.
14094
14094
  *
14095
14095
  * @remarks
14096
14096
  * [Api set: Mailbox 1.5]
@@ -14109,7 +14109,7 @@ declare namespace Office {
14109
14109
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
14110
14110
  *
14111
14111
  * For supported events, refer to the Mailbox object model
14112
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox#events | events section}.
14112
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox#events | events section}.
14113
14113
  *
14114
14114
  * @remarks
14115
14115
  * [Api set: Mailbox 1.5]
@@ -14301,7 +14301,7 @@ declare namespace Office {
14301
14301
  *
14302
14302
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
14303
14303
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
14304
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
14304
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
14305
14305
  *
14306
14306
  * Child interfaces:
14307
14307
  *
@@ -14316,7 +14316,7 @@ declare namespace Office {
14316
14316
  *
14317
14317
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
14318
14318
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
14319
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
14319
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
14320
14320
  *
14321
14321
  * Parent interfaces:
14322
14322
  *
@@ -14658,7 +14658,7 @@ declare namespace Office {
14658
14658
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
14659
14659
  *
14660
14660
  * For supported events, refer to the Item object model
14661
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
14661
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
14662
14662
  *
14663
14663
  * @remarks
14664
14664
  * [Api set: Mailbox 1.7]
@@ -14680,7 +14680,7 @@ declare namespace Office {
14680
14680
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
14681
14681
  *
14682
14682
  * For supported events, refer to the Item object model
14683
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
14683
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
14684
14684
  *
14685
14685
  * @remarks
14686
14686
  * [Api set: Mailbox 1.7]
@@ -15240,7 +15240,7 @@ declare namespace Office {
15240
15240
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
15241
15241
  *
15242
15242
  * For supported events, refer to the Item object model
15243
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15243
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15244
15244
  *
15245
15245
  * @remarks
15246
15246
  * [Api set: Mailbox 1.7]
@@ -15260,7 +15260,7 @@ declare namespace Office {
15260
15260
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
15261
15261
  *
15262
15262
  * For supported events, refer to the Item object model
15263
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15263
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15264
15264
  *
15265
15265
  * @remarks
15266
15266
  * [Api set: Mailbox 1.7]
@@ -15404,7 +15404,7 @@ declare namespace Office {
15404
15404
  *
15405
15405
  * **Important**: This is an internal Outlook object, not directly exposed through existing interfaces.
15406
15406
  * You should treat this as a mode of `Office.context.mailbox.item`. For more information, refer to the
15407
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
15407
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item | Object Model} page.
15408
15408
  *
15409
15409
  * Parent interfaces:
15410
15410
  *
@@ -15775,7 +15775,7 @@ declare namespace Office {
15775
15775
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
15776
15776
  *
15777
15777
  * For supported events, refer to the Item object model
15778
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15778
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15779
15779
  *
15780
15780
  * @remarks
15781
15781
  * [Api set: Mailbox 1.7]
@@ -15797,7 +15797,7 @@ declare namespace Office {
15797
15797
  * Adds an event handler for a supported event. **Note**: Events are only available with task pane implementation.
15798
15798
  *
15799
15799
  * For supported events, refer to the Item object model
15800
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15800
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
15801
15801
  *
15802
15802
  * @remarks
15803
15803
  * [Api set: Mailbox 1.7]
@@ -16326,7 +16326,7 @@ declare namespace Office {
16326
16326
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
16327
16327
  *
16328
16328
  * For supported events, refer to the Item object model
16329
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
16329
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
16330
16330
  *
16331
16331
  * @remarks
16332
16332
  * [Api set: Mailbox 1.7]
@@ -16346,7 +16346,7 @@ declare namespace Office {
16346
16346
  * Removes the event handlers for a supported event type. **Note**: Events are only available with task pane implementation.
16347
16347
  *
16348
16348
  * For supported events, refer to the Item object model
16349
- * {@link https://docs.microsoft.com/office/dev/add-ins/reference/objectmodel/requirement-set-1.10/office.context.mailbox.item#events | events section}.
16349
+ * {@link https://docs.microsoft.com/javascript/api/requirement-sets/outlook/requirement-set-1.10/office.context.mailbox.item#events | events section}.
16350
16350
  *
16351
16351
  * @remarks
16352
16352
  * [Api set: Mailbox 1.7]