@types/office-js-preview 1.0.282 → 1.0.286
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js-preview/README.md +1 -1
- office-js-preview/index.d.ts +840 -488
- office-js-preview/package.json +2 -2
office-js-preview/index.d.ts
CHANGED
|
@@ -531,6 +531,9 @@ declare namespace Office {
|
|
|
531
531
|
}
|
|
532
532
|
/**
|
|
533
533
|
* Manages actions and keyboard shortcuts.
|
|
534
|
+
*
|
|
535
|
+
* @remarks
|
|
536
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
534
537
|
*/
|
|
535
538
|
interface Actions {
|
|
536
539
|
/**
|
|
@@ -538,6 +541,9 @@ declare namespace Office {
|
|
|
538
541
|
*
|
|
539
542
|
* @param actionId The ID of an action that is defined in an extended manifest.
|
|
540
543
|
* @param actionFunction The function that is run when the action is invoked.
|
|
544
|
+
*
|
|
545
|
+
* @remarks
|
|
546
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
541
547
|
*/
|
|
542
548
|
associate: (actionId: string, actionFunction: (arg?: any) => void) => void;
|
|
543
549
|
/**
|
|
@@ -545,7 +551,7 @@ declare namespace Office {
|
|
|
545
551
|
*
|
|
546
552
|
* @remarks
|
|
547
553
|
*
|
|
548
|
-
* **Requirement set**: KeyboardShortcuts 1.1
|
|
554
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/keyboard-shortcuts-requirement-sets | KeyboardShortcuts 1.1}
|
|
549
555
|
* @beta
|
|
550
556
|
*
|
|
551
557
|
* @param shortcuts An object of custom shortcuts with keys being the IDs of the actions (as defined in an extended manifest) and values being the shortcut combinations. For example, `{"SetItalic": "Ctrl+1", "SetBold": "Ctrl+2"}`.
|
|
@@ -560,7 +566,7 @@ declare namespace Office {
|
|
|
560
566
|
*
|
|
561
567
|
* @remarks
|
|
562
568
|
*
|
|
563
|
-
* **Requirement set**: KeyboardShortcuts 1.1
|
|
569
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/keyboard-shortcuts-requirement-sets | KeyboardShortcuts 1.1}
|
|
564
570
|
* @beta
|
|
565
571
|
*
|
|
566
572
|
* @returns A promise that resolves to an object of shortcuts, with keys being the IDs of the actions (as defined in an extended manifest) and values being the shortcut combinations. For example, `{"SetItalic": "Ctrl+1", "SetBold": "Ctrl+2", "SetUnderline": null}`.
|
|
@@ -571,7 +577,7 @@ declare namespace Office {
|
|
|
571
577
|
*
|
|
572
578
|
* @remarks
|
|
573
579
|
*
|
|
574
|
-
* **Requirement set**: KeyboardShortcuts 1.1
|
|
580
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/keyboard-shortcuts-requirement-sets | KeyboardShortcuts 1.1}
|
|
575
581
|
* @beta
|
|
576
582
|
*
|
|
577
583
|
* @param shortcuts An array of shortcut combinations. For example, `["Ctrl+1", "Ctrl+2"]`.
|
|
@@ -590,31 +596,50 @@ declare namespace Office {
|
|
|
590
596
|
}
|
|
591
597
|
/**
|
|
592
598
|
* Represents add-in level functionality for operating or configuring various aspects of the add-in.
|
|
599
|
+
*
|
|
600
|
+
* @remarks
|
|
601
|
+
*
|
|
602
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
593
603
|
*/
|
|
594
604
|
interface Addin {
|
|
595
605
|
/**
|
|
596
606
|
* Sets the startup behavior for the add-in for when the document is opened next time.
|
|
597
607
|
* @param behavior - Specifies startup behavior of the add-in.
|
|
608
|
+
*
|
|
609
|
+
* @remarks
|
|
610
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
598
611
|
*/
|
|
599
612
|
setStartupBehavior(behavior: Office.StartupBehavior): Promise<void>;
|
|
600
613
|
/**
|
|
601
614
|
* Gets the current startup behavior for the add-in.
|
|
615
|
+
*
|
|
616
|
+
* @remarks
|
|
617
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
602
618
|
*/
|
|
603
619
|
getStartupBehavior(): Promise<Office.StartupBehavior>;
|
|
604
620
|
/**
|
|
605
621
|
* Shows the task pane associated with the add-in.
|
|
606
622
|
* @returns A promise that is resolved when the UI is shown.
|
|
623
|
+
*
|
|
624
|
+
* @remarks
|
|
625
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
607
626
|
*/
|
|
608
627
|
showAsTaskpane(): Promise<void>;
|
|
609
628
|
/**
|
|
610
629
|
* Hides the task pane.
|
|
611
630
|
* @returns A promise that is resolved when the UI is hidden.
|
|
631
|
+
*
|
|
632
|
+
* @remarks
|
|
633
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
612
634
|
*/
|
|
613
635
|
hide(): Promise<void>;
|
|
614
636
|
/**
|
|
615
637
|
* Adds a handler for the `onVisibilityModeChanged` event.
|
|
616
638
|
* @param handler - The handler function that is called when the event is emitted. This function takes in a message for the receiving component.
|
|
617
639
|
* @returns A promise that resolves to a function when the handler is added. Calling it removes the handler.
|
|
640
|
+
*
|
|
641
|
+
* @remarks
|
|
642
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/shared-runtime-requirement-sets | SharedRuntime 1.1}
|
|
618
643
|
*/
|
|
619
644
|
onVisibilityModeChanged(
|
|
620
645
|
handler: (message: VisibilityModeChangedMessage) => void,
|
|
@@ -678,7 +703,7 @@ declare namespace Office {
|
|
|
678
703
|
*
|
|
679
704
|
* @remarks
|
|
680
705
|
*
|
|
681
|
-
* **Requirement set**:
|
|
706
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
|
|
682
707
|
*/
|
|
683
708
|
interface Ribbon {
|
|
684
709
|
/**
|
|
@@ -686,7 +711,7 @@ declare namespace Office {
|
|
|
686
711
|
*
|
|
687
712
|
* @remarks
|
|
688
713
|
*
|
|
689
|
-
* **Requirement set**:
|
|
714
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.2}
|
|
690
715
|
*
|
|
691
716
|
* 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.
|
|
692
717
|
* For more information and code examples, see {@link https://docs.microsoft.com/office/dev/add-ins/design/contextual-tabs | Create custom contextual tabs}.
|
|
@@ -699,7 +724,7 @@ declare namespace Office {
|
|
|
699
724
|
*
|
|
700
725
|
* @remarks
|
|
701
726
|
*
|
|
702
|
-
* **Requirement set**:
|
|
727
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
|
|
703
728
|
*
|
|
704
729
|
* 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.
|
|
705
730
|
*
|
|
@@ -714,7 +739,7 @@ declare namespace Office {
|
|
|
714
739
|
*
|
|
715
740
|
* @remarks
|
|
716
741
|
*
|
|
717
|
-
* **Requirement set**:
|
|
742
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
|
|
718
743
|
*/
|
|
719
744
|
interface RibbonUpdaterData {
|
|
720
745
|
/**
|
|
@@ -727,7 +752,7 @@ declare namespace Office {
|
|
|
727
752
|
*
|
|
728
753
|
* @remarks
|
|
729
754
|
*
|
|
730
|
-
* **Requirement set**:
|
|
755
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
|
|
731
756
|
*/
|
|
732
757
|
interface Tab {
|
|
733
758
|
/**
|
|
@@ -747,7 +772,7 @@ declare namespace Office {
|
|
|
747
772
|
*
|
|
748
773
|
* @remarks
|
|
749
774
|
*
|
|
750
|
-
* **Requirement set**:
|
|
775
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.2}
|
|
751
776
|
*/
|
|
752
777
|
visible?: boolean;
|
|
753
778
|
/**
|
|
@@ -757,14 +782,14 @@ declare namespace Office {
|
|
|
757
782
|
*
|
|
758
783
|
* 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.
|
|
759
784
|
*
|
|
760
|
-
* **Requirement set**:
|
|
785
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
|
|
761
786
|
*/
|
|
762
787
|
groups?: Group[];
|
|
763
788
|
}
|
|
764
789
|
/**
|
|
765
790
|
* Represents a group of controls on a ribbon tab.
|
|
766
791
|
*
|
|
767
|
-
* **Requirement set**:
|
|
792
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
|
|
768
793
|
*/
|
|
769
794
|
interface Group {
|
|
770
795
|
/**
|
|
@@ -788,7 +813,7 @@ declare namespace Office {
|
|
|
788
813
|
*
|
|
789
814
|
* @remarks
|
|
790
815
|
*
|
|
791
|
-
* **Requirement set**:
|
|
816
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/ribbon-api-requirement-sets | RibbonApi 1.1}
|
|
792
817
|
*/
|
|
793
818
|
interface Control {
|
|
794
819
|
/**
|
|
@@ -1427,7 +1452,7 @@ declare namespace Office {
|
|
|
1427
1452
|
*
|
|
1428
1453
|
* **Hosts**: Excel, OneNote, Outlook, PowerPoint, Word
|
|
1429
1454
|
*
|
|
1430
|
-
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI}
|
|
1455
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI 1.3}
|
|
1431
1456
|
*
|
|
1432
1457
|
* This API requires a single sign-on configuration that bridges the add-in to an Azure application. Office users sign in with Organizational
|
|
1433
1458
|
* Accounts and Microsoft Accounts. Microsoft Azure returns tokens intended for both user account types to access resources in the Microsoft Graph.
|
|
@@ -1452,7 +1477,7 @@ declare namespace Office {
|
|
|
1452
1477
|
*
|
|
1453
1478
|
* **Hosts**: Excel, OneNote, Outlook, PowerPoint, Word
|
|
1454
1479
|
*
|
|
1455
|
-
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI}
|
|
1480
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI 1.3}
|
|
1456
1481
|
*
|
|
1457
1482
|
* This API requires a single sign-on configuration that bridges the add-in to an Azure application. Office users sign in with Organizational
|
|
1458
1483
|
* Accounts and Microsoft Accounts. Microsoft Azure returns tokens intended for both user account types to access resources in the Microsoft Graph.
|
|
@@ -1474,7 +1499,7 @@ declare namespace Office {
|
|
|
1474
1499
|
*
|
|
1475
1500
|
* **Important**: In Outlook, this API is not supported if the add-in is loaded in an Outlook.com or Gmail mailbox.
|
|
1476
1501
|
*
|
|
1477
|
-
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI}
|
|
1502
|
+
* **Requirement set**: {@link https://docs.microsoft.com/office/dev/add-ins/reference/requirement-sets/identity-api-requirement-sets | IdentityAPI 1.3}
|
|
1478
1503
|
*
|
|
1479
1504
|
* @param options - Optional. Accepts an `AuthOptions` object to define sign-on behaviors.
|
|
1480
1505
|
* @returns Promise to the access token.
|
|
@@ -2164,7 +2189,7 @@ declare namespace Office {
|
|
|
2164
2189
|
*/
|
|
2165
2190
|
enum EventType {
|
|
2166
2191
|
/**
|
|
2167
|
-
* A Document.ActiveViewChanged event was raised.
|
|
2192
|
+
* A Document.ActiveViewChanged event was raised in PowerPoint.
|
|
2168
2193
|
*
|
|
2169
2194
|
* @remarks
|
|
2170
2195
|
*
|
|
@@ -3900,8 +3925,8 @@ declare namespace Office {
|
|
|
3900
3925
|
* @param options Provides an option for preserving context data of any type, unchanged, for use in a callback.
|
|
3901
3926
|
* @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
|
|
3902
3927
|
* The `value` property of the result is the state of the presentation's current view.
|
|
3903
|
-
* The value returned can be either "edit" or "read". "edit" corresponds to any of the views in which you can edit slides
|
|
3904
|
-
*
|
|
3928
|
+
* The value returned can be either "edit" or "read". "edit" corresponds to any of the views in which you can edit slides:
|
|
3929
|
+
* Normal, Slide Sorter, or Outline View. "read" corresponds to either Slide Show or Reading View.
|
|
3905
3930
|
*/
|
|
3906
3931
|
getActiveViewAsync(options?: Office.AsyncContextOptions, callback?: (result: AsyncResult<"edit" | "read">) => void): void;
|
|
3907
3932
|
/**
|
|
@@ -3915,8 +3940,8 @@ declare namespace Office {
|
|
|
3915
3940
|
*
|
|
3916
3941
|
* @param callback Optional. A function that is invoked when the callback returns, whose only parameter is of type {@link Office.AsyncResult}.
|
|
3917
3942
|
* The `value` property of the result is the state of the presentation's current view.
|
|
3918
|
-
* The value returned can be either "edit" or "read". "edit" corresponds to any of the views in which you can edit slides
|
|
3919
|
-
*
|
|
3943
|
+
* The value returned can be either "edit" or "read". "edit" corresponds to any of the views in which you can edit slides:
|
|
3944
|
+
* Normal, Slide Sorter, or Outline View. "read" corresponds to either Slide Show or Reading View.
|
|
3920
3945
|
*/
|
|
3921
3946
|
getActiveViewAsync(callback?: (result: AsyncResult<"edit" | "read">) => void): void;
|
|
3922
3947
|
/**
|
|
@@ -14126,7 +14151,9 @@ declare namespace Office {
|
|
|
14126
14151
|
*
|
|
14127
14152
|
* `attachments.name`: A string that contains the name of the attachment, up to 255 characters in length.
|
|
14128
14153
|
*
|
|
14129
|
-
* `attachments.url`: Only used if type is set to file. The URI of the location for the file.
|
|
14154
|
+
* `attachments.url`: Only used if type is set to file. The URI of the location for the file. **Important**: This link must be
|
|
14155
|
+
* publicly accessible, without need for authentication by Exchange Online servers. However, with on-premises Exchange, the link can
|
|
14156
|
+
* be accessible on a private network as long as it doesn't need further authentication.
|
|
14130
14157
|
*
|
|
14131
14158
|
* `attachments.isInline`: Only used if type is set to file. If true, indicates that the attachment will be shown inline in the
|
|
14132
14159
|
* message body, and should not be displayed in the attachment list.
|
|
@@ -14171,7 +14198,9 @@ declare namespace Office {
|
|
|
14171
14198
|
*
|
|
14172
14199
|
* `attachments.name`: A string that contains the name of the attachment, up to 255 characters in length.
|
|
14173
14200
|
*
|
|
14174
|
-
* `attachments.url`: Only used if type is set to file. The URI of the location for the file.
|
|
14201
|
+
* `attachments.url`: Only used if type is set to file. The URI of the location for the file. **Important**: This link must be
|
|
14202
|
+
* publicly accessible, without need for authentication by Exchange Online servers. However, with on-premises Exchange, the link can
|
|
14203
|
+
* be accessible on a private network as long as it doesn't need further authentication.
|
|
14175
14204
|
*
|
|
14176
14205
|
* `attachments.isInline`: Only used if type is set to file. If true, indicates that the attachment will be shown inline in the
|
|
14177
14206
|
* message body, and should not be displayed in the attachment list.
|
|
@@ -14220,7 +14249,9 @@ declare namespace Office {
|
|
|
14220
14249
|
*
|
|
14221
14250
|
* `attachments.name`: A string that contains the name of the attachment, up to 255 characters in length.
|
|
14222
14251
|
*
|
|
14223
|
-
* `attachments.url`: Only used if type is set to file. The URI of the location for the file.
|
|
14252
|
+
* `attachments.url`: Only used if type is set to file. The URI of the location for the file. **Important**: This link must be
|
|
14253
|
+
* publicly accessible, without need for authentication by Exchange Online servers. However, with on-premises Exchange, the link can
|
|
14254
|
+
* be accessible on a private network as long as it doesn't need further authentication.
|
|
14224
14255
|
*
|
|
14225
14256
|
* `attachments.isInline`: Only used if type is set to file. If true, indicates that the attachment will be shown inline in the
|
|
14226
14257
|
* message body, and should not be displayed in the attachment list.
|
|
@@ -17865,6 +17896,9 @@ declare namespace Office {
|
|
|
17865
17896
|
name: string;
|
|
17866
17897
|
/**
|
|
17867
17898
|
* Only used if type is set to file. The URI of the location for the file.
|
|
17899
|
+
*
|
|
17900
|
+
* **Important**: This link must be publicly accessible, without need for authentication by Exchange Online servers. However, with
|
|
17901
|
+
* on-premises Exchange, the link can be accessible on a private network as long as it doesn't need further authentication.
|
|
17868
17902
|
*/
|
|
17869
17903
|
url?: string;
|
|
17870
17904
|
/**
|
|
@@ -82649,10 +82683,7 @@ declare namespace Word {
|
|
|
82649
82683
|
*/
|
|
82650
82684
|
readonly lists: Word.ListCollection;
|
|
82651
82685
|
/**
|
|
82652
|
-
* Gets the collection of paragraph objects in the body. Read-only.
|
|
82653
|
-
*
|
|
82654
|
-
* **Important**: Paragraphs in tables are not returned for requirement sets 1.1 and 1.2.
|
|
82655
|
-
* From requirement set 1.3, paragraphs in tables are also returned.
|
|
82686
|
+
* Gets the collection of paragraph objects in the body. Read-only. **Important**: Paragraphs in tables are not returned for requirement sets 1.1 and 1.2. From requirement set 1.3, paragraphs in tables are also returned.
|
|
82656
82687
|
*
|
|
82657
82688
|
* @remarks
|
|
82658
82689
|
* [Api set: WordApi 1.1]
|
|
@@ -83062,6 +83093,14 @@ declare namespace Word {
|
|
|
83062
83093
|
class Comment extends OfficeExtension.ClientObject {
|
|
83063
83094
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
83064
83095
|
context: RequestContext;
|
|
83096
|
+
/**
|
|
83097
|
+
* Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
|
|
83098
|
+
*
|
|
83099
|
+
* @remarks
|
|
83100
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83101
|
+
* @beta
|
|
83102
|
+
*/
|
|
83103
|
+
contentRange: Word.CommentContentRange;
|
|
83065
83104
|
/**
|
|
83066
83105
|
* Gets the collection of reply objects associated with the comment.
|
|
83067
83106
|
*
|
|
@@ -83106,11 +83145,12 @@ declare namespace Word {
|
|
|
83106
83145
|
* ID
|
|
83107
83146
|
*
|
|
83108
83147
|
* @remarks
|
|
83109
|
-
* [Api set:
|
|
83148
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83149
|
+
* @beta
|
|
83110
83150
|
*/
|
|
83111
83151
|
readonly id: string;
|
|
83112
83152
|
/**
|
|
83113
|
-
* Gets or sets the comment thread status.
|
|
83153
|
+
* Gets or sets the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
|
|
83114
83154
|
*
|
|
83115
83155
|
* @remarks
|
|
83116
83156
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -83139,7 +83179,6 @@ declare namespace Word {
|
|
|
83139
83179
|
* @remarks
|
|
83140
83180
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83141
83181
|
* @beta
|
|
83142
|
-
* @returns
|
|
83143
83182
|
*/
|
|
83144
83183
|
getRange(): Word.Range;
|
|
83145
83184
|
/**
|
|
@@ -83188,7 +83227,7 @@ declare namespace Word {
|
|
|
83188
83227
|
toJSON(): Word.Interfaces.CommentData;
|
|
83189
83228
|
}
|
|
83190
83229
|
/**
|
|
83191
|
-
* Contains a collection of {@link Word.Comment}
|
|
83230
|
+
* Contains a collection of {@link Word.Comment} objects.
|
|
83192
83231
|
*
|
|
83193
83232
|
* @remarks
|
|
83194
83233
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -83205,16 +83244,14 @@ declare namespace Word {
|
|
|
83205
83244
|
* @remarks
|
|
83206
83245
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83207
83246
|
* @beta
|
|
83208
|
-
* @returns
|
|
83209
83247
|
*/
|
|
83210
83248
|
getFirst(): Word.Comment;
|
|
83211
83249
|
/**
|
|
83212
|
-
* Gets the first comment
|
|
83250
|
+
* Gets the first comment in the collection. If the collection is empty, returns a null object.
|
|
83213
83251
|
*
|
|
83214
83252
|
* @remarks
|
|
83215
83253
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83216
83254
|
* @beta
|
|
83217
|
-
* @returns
|
|
83218
83255
|
*/
|
|
83219
83256
|
getFirstOrNullObject(): Word.Comment;
|
|
83220
83257
|
/**
|
|
@@ -83224,7 +83261,7 @@ declare namespace Word {
|
|
|
83224
83261
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83225
83262
|
* @beta
|
|
83226
83263
|
*
|
|
83227
|
-
* @param index A number that identifies the index location of a
|
|
83264
|
+
* @param index A number that identifies the index location of a comment object.
|
|
83228
83265
|
*/
|
|
83229
83266
|
getItem(index: number): Word.Comment;
|
|
83230
83267
|
/**
|
|
@@ -83259,6 +83296,135 @@ declare namespace Word {
|
|
|
83259
83296
|
*/
|
|
83260
83297
|
toJSON(): Word.Interfaces.CommentCollectionData;
|
|
83261
83298
|
}
|
|
83299
|
+
/**
|
|
83300
|
+
* @remarks
|
|
83301
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83302
|
+
* @beta
|
|
83303
|
+
*/
|
|
83304
|
+
class CommentContentRange extends OfficeExtension.ClientObject {
|
|
83305
|
+
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
83306
|
+
context: RequestContext;
|
|
83307
|
+
/**
|
|
83308
|
+
* Gets or sets a value that indicates whether the comment text is bold.
|
|
83309
|
+
*
|
|
83310
|
+
* @remarks
|
|
83311
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83312
|
+
* @beta
|
|
83313
|
+
*/
|
|
83314
|
+
bold: boolean;
|
|
83315
|
+
/**
|
|
83316
|
+
* Gets the first hyperlink in the range, or sets a hyperlink on the range. All hyperlinks in the range are deleted when you set a new hyperlink on the range.
|
|
83317
|
+
*
|
|
83318
|
+
* @remarks
|
|
83319
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83320
|
+
* @beta
|
|
83321
|
+
*/
|
|
83322
|
+
hyperlink: string;
|
|
83323
|
+
/**
|
|
83324
|
+
* Checks whether the range length is zero. Read-only.
|
|
83325
|
+
*
|
|
83326
|
+
* @remarks
|
|
83327
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83328
|
+
* @beta
|
|
83329
|
+
*/
|
|
83330
|
+
readonly isEmpty: boolean;
|
|
83331
|
+
/**
|
|
83332
|
+
* Gets or sets a value that indicates whether the comment text is italicized.
|
|
83333
|
+
*
|
|
83334
|
+
* @remarks
|
|
83335
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83336
|
+
* @beta
|
|
83337
|
+
*/
|
|
83338
|
+
italic: boolean;
|
|
83339
|
+
/**
|
|
83340
|
+
* Gets or sets a value that indicates whether the comment text has a strikethrough.
|
|
83341
|
+
*
|
|
83342
|
+
* @remarks
|
|
83343
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83344
|
+
* @beta
|
|
83345
|
+
*/
|
|
83346
|
+
strikeThrough: boolean;
|
|
83347
|
+
/**
|
|
83348
|
+
* Gets the text of the comment range. Read-only.
|
|
83349
|
+
*
|
|
83350
|
+
* @remarks
|
|
83351
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83352
|
+
* @beta
|
|
83353
|
+
*/
|
|
83354
|
+
readonly text: string;
|
|
83355
|
+
/**
|
|
83356
|
+
* Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
|
|
83357
|
+
*
|
|
83358
|
+
* @remarks
|
|
83359
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83360
|
+
* @beta
|
|
83361
|
+
*/
|
|
83362
|
+
underline: Word.UnderlineType | "Mixed" | "None" | "Hidden" | "DotLine" | "Single" | "Word" | "Double" | "Thick" | "Dotted" | "DottedHeavy" | "DashLine" | "DashLineHeavy" | "DashLineLong" | "DashLineLongHeavy" | "DotDashLine" | "DotDashLineHeavy" | "TwoDotDashLine" | "TwoDotDashLineHeavy" | "Wave" | "WaveHeavy" | "WaveDouble";
|
|
83363
|
+
/**
|
|
83364
|
+
* Sets multiple properties of an object at the same time. You can pass either a plain object with the appropriate properties, or another API object of the same type.
|
|
83365
|
+
* @param properties A JavaScript object with properties that are structured isomorphically to the properties of the object on which the method is called.
|
|
83366
|
+
* @param options Provides an option to suppress errors if the properties object tries to set any read-only properties.
|
|
83367
|
+
*/
|
|
83368
|
+
set(properties: Interfaces.CommentContentRangeUpdateData, options?: OfficeExtension.UpdateOptions): void;
|
|
83369
|
+
/** Sets multiple properties on the object at the same time, based on an existing loaded object. */
|
|
83370
|
+
set(properties: Word.CommentContentRange): void;
|
|
83371
|
+
/**
|
|
83372
|
+
* Inserts text into at the specified location.
|
|
83373
|
+
*
|
|
83374
|
+
* @remarks
|
|
83375
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83376
|
+
* @beta
|
|
83377
|
+
*
|
|
83378
|
+
* @param text Required. The text to be inserted in to the CommentContentRange.
|
|
83379
|
+
* @param insertLocation Required. The value can be 'After', 'Before', 'Replace', 'Start', or 'End'.
|
|
83380
|
+
*/
|
|
83381
|
+
insertText(text: string, insertLocation: Word.InsertLocation): Word.CommentContentRange;
|
|
83382
|
+
/**
|
|
83383
|
+
* Inserts text into at the specified location.
|
|
83384
|
+
*
|
|
83385
|
+
* @remarks
|
|
83386
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83387
|
+
* @beta
|
|
83388
|
+
*
|
|
83389
|
+
* @param text Required. The text to be inserted in to the CommentContentRange.
|
|
83390
|
+
* @param insertLocation Required. The value can be 'After', 'Before', 'Replace', 'Start', or 'End'.
|
|
83391
|
+
*/
|
|
83392
|
+
insertText(text: string, insertLocation: "Before" | "After" | "Start" | "End" | "Replace"): Word.CommentContentRange;
|
|
83393
|
+
/**
|
|
83394
|
+
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
83395
|
+
*
|
|
83396
|
+
* @param options Provides options for which properties of the object to load.
|
|
83397
|
+
*/
|
|
83398
|
+
load(options?: Word.Interfaces.CommentContentRangeLoadOptions): Word.CommentContentRange;
|
|
83399
|
+
/**
|
|
83400
|
+
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
83401
|
+
*
|
|
83402
|
+
* @param propertyNames A comma-delimited string or an array of strings that specify the properties to load.
|
|
83403
|
+
*/
|
|
83404
|
+
load(propertyNames?: string | string[]): Word.CommentContentRange;
|
|
83405
|
+
/**
|
|
83406
|
+
* Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
|
|
83407
|
+
*
|
|
83408
|
+
* @param propertyNamesAndPaths `propertyNamesAndPaths.select` is a comma-delimited string that specifies the properties to load, and `propertyNamesAndPaths.expand` is a comma-delimited string that specifies the navigation properties to load.
|
|
83409
|
+
*/
|
|
83410
|
+
load(propertyNamesAndPaths?: {
|
|
83411
|
+
select?: string;
|
|
83412
|
+
expand?: string;
|
|
83413
|
+
}): Word.CommentContentRange;
|
|
83414
|
+
/**
|
|
83415
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for `context.trackedObjects.add(thisObject)`. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you needed to have added the object to the tracked object collection when the object was first created.
|
|
83416
|
+
*/
|
|
83417
|
+
track(): Word.CommentContentRange;
|
|
83418
|
+
/**
|
|
83419
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for `context.trackedObjects.remove(thisObject)`. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
83420
|
+
*/
|
|
83421
|
+
untrack(): Word.CommentContentRange;
|
|
83422
|
+
/**
|
|
83423
|
+
* Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
|
|
83424
|
+
* Whereas the original Word.CommentContentRange object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CommentContentRangeData`) that contains shallow copies of any loaded child properties from the original object.
|
|
83425
|
+
*/
|
|
83426
|
+
toJSON(): Word.Interfaces.CommentContentRangeData;
|
|
83427
|
+
}
|
|
83262
83428
|
/**
|
|
83263
83429
|
* Represents a comment reply in the document.
|
|
83264
83430
|
*
|
|
@@ -83269,6 +83435,14 @@ declare namespace Word {
|
|
|
83269
83435
|
class CommentReply extends OfficeExtension.ClientObject {
|
|
83270
83436
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
83271
83437
|
context: RequestContext;
|
|
83438
|
+
/**
|
|
83439
|
+
* Gets or sets the commentReply's content range.
|
|
83440
|
+
*
|
|
83441
|
+
* @remarks
|
|
83442
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83443
|
+
* @beta
|
|
83444
|
+
*/
|
|
83445
|
+
contentRange: Word.CommentContentRange;
|
|
83272
83446
|
/**
|
|
83273
83447
|
* Gets the parent comment of this reply.
|
|
83274
83448
|
*
|
|
@@ -83313,7 +83487,8 @@ declare namespace Word {
|
|
|
83313
83487
|
* ID
|
|
83314
83488
|
*
|
|
83315
83489
|
* @remarks
|
|
83316
|
-
* [Api set:
|
|
83490
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83491
|
+
* @beta
|
|
83317
83492
|
*/
|
|
83318
83493
|
readonly id: string;
|
|
83319
83494
|
/**
|
|
@@ -83368,7 +83543,7 @@ declare namespace Word {
|
|
|
83368
83543
|
toJSON(): Word.Interfaces.CommentReplyData;
|
|
83369
83544
|
}
|
|
83370
83545
|
/**
|
|
83371
|
-
* Contains a collection of {@link Word.CommentReply}
|
|
83546
|
+
* Contains a collection of {@link Word.CommentReply} objects. Represents all comment replies in one comment thread.
|
|
83372
83547
|
*
|
|
83373
83548
|
* @remarks
|
|
83374
83549
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -83388,12 +83563,11 @@ declare namespace Word {
|
|
|
83388
83563
|
*/
|
|
83389
83564
|
getFirst(): Word.CommentReply;
|
|
83390
83565
|
/**
|
|
83391
|
-
* Gets the first comment reply
|
|
83566
|
+
* Gets the first comment reply in the collection. If the collection is empty, returns a null object.
|
|
83392
83567
|
*
|
|
83393
83568
|
* @remarks
|
|
83394
83569
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83395
83570
|
* @beta
|
|
83396
|
-
* @returns
|
|
83397
83571
|
*/
|
|
83398
83572
|
getFirstOrNullObject(): Word.CommentReply;
|
|
83399
83573
|
/**
|
|
@@ -83403,7 +83577,7 @@ declare namespace Word {
|
|
|
83403
83577
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
83404
83578
|
* @beta
|
|
83405
83579
|
*
|
|
83406
|
-
* @param index A number that identifies the index location of a
|
|
83580
|
+
* @param index A number that identifies the index location of a comment reply object.
|
|
83407
83581
|
*/
|
|
83408
83582
|
getItem(index: number): Word.CommentReply;
|
|
83409
83583
|
/**
|
|
@@ -83492,10 +83666,7 @@ declare namespace Word {
|
|
|
83492
83666
|
*/
|
|
83493
83667
|
readonly lists: Word.ListCollection;
|
|
83494
83668
|
/**
|
|
83495
|
-
*
|
|
83496
|
-
*
|
|
83497
|
-
* **Important**: For requirement sets 1.1 and 1.2, paragraphs in tables wholly contained within this content control are not returned.
|
|
83498
|
-
* From requirement set 1.3, paragraphs in such tables are also returned.
|
|
83669
|
+
* Get the collection of paragraph objects in the content control. Read-only. **Important**: For requirement sets 1.1 and 1.2, paragraphs in tables wholly contained within this content control are not returned. From requirement set 1.3, paragraphs in such tables are also returned.
|
|
83499
83670
|
*
|
|
83500
83671
|
* @remarks
|
|
83501
83672
|
* [Api set: WordApi 1.1]
|
|
@@ -84904,7 +85075,7 @@ declare namespace Word {
|
|
|
84904
85075
|
* Performs a search with the specified search options on the scope of the whole document. The search results are a collection of range objects.
|
|
84905
85076
|
*
|
|
84906
85077
|
* @remarks
|
|
84907
|
-
* [Api set:
|
|
85078
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
84908
85079
|
* @beta
|
|
84909
85080
|
*/
|
|
84910
85081
|
search(searchText: string, searchOptions?: Word.SearchOptions | {
|
|
@@ -84971,14 +85142,14 @@ declare namespace Word {
|
|
|
84971
85142
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
84972
85143
|
context: RequestContext;
|
|
84973
85144
|
/**
|
|
84974
|
-
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc
|
|
85145
|
+
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc. Read-only.
|
|
84975
85146
|
*
|
|
84976
85147
|
* @remarks
|
|
84977
85148
|
* [Api set: WordApiHiddenDocument 1.3]
|
|
84978
85149
|
*/
|
|
84979
85150
|
readonly body: Word.Body;
|
|
84980
85151
|
/**
|
|
84981
|
-
* Gets the collection of content control objects in the document. This includes content controls in the body of the document, headers, footers, textboxes, etc
|
|
85152
|
+
* Gets the collection of content control objects in the document. This includes content controls in the body of the document, headers, footers, textboxes, etc. Read-only.
|
|
84982
85153
|
*
|
|
84983
85154
|
* @remarks
|
|
84984
85155
|
* [Api set: WordApiHiddenDocument 1.3]
|
|
@@ -87176,7 +87347,7 @@ declare namespace Word {
|
|
|
87176
87347
|
*/
|
|
87177
87348
|
readonly lists: Word.ListCollection;
|
|
87178
87349
|
/**
|
|
87179
|
-
* Gets the collection of paragraph objects in the range. Read-only.
|
|
87350
|
+
* Gets the collection of paragraph objects in the range. Read-only. **Important**: For requirement sets 1.1 and 1.2, paragraphs in tables wholly contained within this range are not returned. From requirement set 1.3, paragraphs in such tables are also returned.
|
|
87180
87351
|
*
|
|
87181
87352
|
* @remarks
|
|
87182
87353
|
* [Api set: WordApi 1.1]
|
|
@@ -87185,9 +87356,6 @@ declare namespace Word {
|
|
|
87185
87356
|
/**
|
|
87186
87357
|
* Gets the parent body of the range. Read-only.
|
|
87187
87358
|
*
|
|
87188
|
-
* **Important**: For requirement sets 1.1 and 1.2, paragraphs in tables wholly contained within this range are not returned.
|
|
87189
|
-
* From requirement set 1.3, paragraphs in such tables are also returned.
|
|
87190
|
-
*
|
|
87191
87359
|
* @remarks
|
|
87192
87360
|
* [Api set: WordApi 1.3]
|
|
87193
87361
|
*/
|
|
@@ -87471,7 +87639,7 @@ declare namespace Word {
|
|
|
87471
87639
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
87472
87640
|
* @beta
|
|
87473
87641
|
*
|
|
87474
|
-
* @param commentText Required.
|
|
87642
|
+
* @param commentText Required. The comment text to be inserted.
|
|
87475
87643
|
* @returns comment object
|
|
87476
87644
|
*/
|
|
87477
87645
|
insertComment(commentText: string): Word.Comment;
|
|
@@ -89637,25 +89805,29 @@ declare namespace Word {
|
|
|
89637
89805
|
* ChangeTracking mode.
|
|
89638
89806
|
*
|
|
89639
89807
|
* @remarks
|
|
89640
|
-
* [Api set:
|
|
89808
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89809
|
+
* @beta
|
|
89641
89810
|
*/
|
|
89642
89811
|
enum ChangeTrackingMode {
|
|
89643
89812
|
/**
|
|
89644
89813
|
* ChangeTracking is turned off.
|
|
89645
89814
|
* @remarks
|
|
89646
|
-
* [Api set:
|
|
89815
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89816
|
+
* @beta
|
|
89647
89817
|
*/
|
|
89648
89818
|
off = "Off",
|
|
89649
89819
|
/**
|
|
89650
89820
|
* ChangeTracking is turned on for everyone.
|
|
89651
89821
|
* @remarks
|
|
89652
|
-
* [Api set:
|
|
89822
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89823
|
+
* @beta
|
|
89653
89824
|
*/
|
|
89654
89825
|
trackAll = "TrackAll",
|
|
89655
89826
|
/**
|
|
89656
89827
|
* Tracking is turned on for my changes only.
|
|
89657
89828
|
* @remarks
|
|
89658
|
-
* [Api set:
|
|
89829
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89830
|
+
* @beta
|
|
89659
89831
|
*/
|
|
89660
89832
|
trackMineOnly = "TrackMineOnly",
|
|
89661
89833
|
}
|
|
@@ -89663,17 +89835,18 @@ declare namespace Word {
|
|
|
89663
89835
|
* Specify the current version or the original version of the document.
|
|
89664
89836
|
*
|
|
89665
89837
|
* @remarks
|
|
89666
|
-
* [Api set:
|
|
89838
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89839
|
+
* @beta
|
|
89667
89840
|
*/
|
|
89668
89841
|
enum ChangeTrackingVersion {
|
|
89669
89842
|
/**
|
|
89670
89843
|
* @remarks
|
|
89671
|
-
* [Api set:
|
|
89844
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89672
89845
|
*/
|
|
89673
89846
|
original = "Original",
|
|
89674
89847
|
/**
|
|
89675
89848
|
* @remarks
|
|
89676
|
-
* [Api set:
|
|
89849
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89677
89850
|
*/
|
|
89678
89851
|
current = "Current",
|
|
89679
89852
|
}
|
|
@@ -89681,17 +89854,18 @@ declare namespace Word {
|
|
|
89681
89854
|
* Note item type
|
|
89682
89855
|
*
|
|
89683
89856
|
* @remarks
|
|
89684
|
-
* [Api set:
|
|
89857
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89858
|
+
* @beta
|
|
89685
89859
|
*/
|
|
89686
89860
|
enum NoteItemType {
|
|
89687
89861
|
/**
|
|
89688
89862
|
* @remarks
|
|
89689
|
-
* [Api set:
|
|
89863
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89690
89864
|
*/
|
|
89691
89865
|
footnote = "Footnote",
|
|
89692
89866
|
/**
|
|
89693
89867
|
* @remarks
|
|
89694
|
-
* [Api set:
|
|
89868
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
89695
89869
|
*/
|
|
89696
89870
|
endnote = "Endnote",
|
|
89697
89871
|
}
|
|
@@ -89699,49 +89873,49 @@ declare namespace Word {
|
|
|
89699
89873
|
* Provides information about the type of a raised event. For each object type, please keep the order of: deleted, selection changed, data changed, added.
|
|
89700
89874
|
*
|
|
89701
89875
|
* @remarks
|
|
89702
|
-
* [Api set: WordApi]
|
|
89876
|
+
* [Api set: WordApi 1.3]
|
|
89703
89877
|
*/
|
|
89704
89878
|
enum EventType {
|
|
89705
89879
|
/**
|
|
89706
89880
|
* ContentControlDeleted represent the event that the content control has been deleted.
|
|
89707
89881
|
* @remarks
|
|
89708
|
-
* [Api set: WordApi]
|
|
89882
|
+
* [Api set: WordApi 1.3]
|
|
89709
89883
|
*/
|
|
89710
89884
|
contentControlDeleted = "ContentControlDeleted",
|
|
89711
89885
|
/**
|
|
89712
89886
|
* ContentControlSelectionChanged represents the event that the selection in the content control has been changed.
|
|
89713
89887
|
* @remarks
|
|
89714
|
-
* [Api set: WordApi]
|
|
89888
|
+
* [Api set: WordApi 1.3]
|
|
89715
89889
|
*/
|
|
89716
89890
|
contentControlSelectionChanged = "ContentControlSelectionChanged",
|
|
89717
89891
|
/**
|
|
89718
89892
|
* ContentControlDataChanged represents the event that the data in the content control have been changed.
|
|
89719
89893
|
* @remarks
|
|
89720
|
-
* [Api set: WordApi]
|
|
89894
|
+
* [Api set: WordApi 1.3]
|
|
89721
89895
|
*/
|
|
89722
89896
|
contentControlDataChanged = "ContentControlDataChanged",
|
|
89723
89897
|
/**
|
|
89724
89898
|
* ContentControlAdded represents the event a content control has been added to the document.
|
|
89725
89899
|
* @remarks
|
|
89726
|
-
* [Api set: WordApi]
|
|
89900
|
+
* [Api set: WordApi 1.3]
|
|
89727
89901
|
*/
|
|
89728
89902
|
contentControlAdded = "ContentControlAdded",
|
|
89729
89903
|
/**
|
|
89730
89904
|
* AnnotationAdded represents the event an annotation has been added to the document.
|
|
89731
89905
|
* @remarks
|
|
89732
|
-
* [Api set: WordApi]
|
|
89906
|
+
* [Api set: WordApi 1.3]
|
|
89733
89907
|
*/
|
|
89734
89908
|
annotationAdded = "AnnotationAdded",
|
|
89735
89909
|
/**
|
|
89736
89910
|
* AnnotationAdded represents the event an annotation has been updated in the document.
|
|
89737
89911
|
* @remarks
|
|
89738
|
-
* [Api set: WordApi]
|
|
89912
|
+
* [Api set: WordApi 1.3]
|
|
89739
89913
|
*/
|
|
89740
89914
|
annotationChanged = "AnnotationChanged",
|
|
89741
89915
|
/**
|
|
89742
89916
|
* AnnotationAdded represents the event an annotation has been deleted from the document.
|
|
89743
89917
|
* @remarks
|
|
89744
|
-
* [Api set: WordApi]
|
|
89918
|
+
* [Api set: WordApi 1.3]
|
|
89745
89919
|
*/
|
|
89746
89920
|
annotationDeleted = "AnnotationDeleted",
|
|
89747
89921
|
}
|
|
@@ -89774,96 +89948,96 @@ declare namespace Word {
|
|
|
89774
89948
|
* Specifies supported content control types and subtypes.
|
|
89775
89949
|
*
|
|
89776
89950
|
* @remarks
|
|
89777
|
-
* [Api set: WordApi]
|
|
89951
|
+
* [Api set: WordApi 1.1]
|
|
89778
89952
|
*/
|
|
89779
89953
|
enum ContentControlType {
|
|
89780
89954
|
/**
|
|
89781
89955
|
* @remarks
|
|
89782
|
-
* [Api set: WordApi]
|
|
89956
|
+
* [Api set: WordApi 1.1]
|
|
89783
89957
|
*/
|
|
89784
89958
|
unknown = "Unknown",
|
|
89785
89959
|
/**
|
|
89786
89960
|
* @remarks
|
|
89787
|
-
* [Api set: WordApi]
|
|
89961
|
+
* [Api set: WordApi 1.1]
|
|
89788
89962
|
*/
|
|
89789
89963
|
richTextInline = "RichTextInline",
|
|
89790
89964
|
/**
|
|
89791
89965
|
* @remarks
|
|
89792
|
-
* [Api set: WordApi]
|
|
89966
|
+
* [Api set: WordApi 1.1]
|
|
89793
89967
|
*/
|
|
89794
89968
|
richTextParagraphs = "RichTextParagraphs",
|
|
89795
89969
|
/**
|
|
89796
89970
|
* Contains a whole cell.
|
|
89797
89971
|
* @remarks
|
|
89798
|
-
* [Api set: WordApi]
|
|
89972
|
+
* [Api set: WordApi 1.1]
|
|
89799
89973
|
*/
|
|
89800
89974
|
richTextTableCell = "RichTextTableCell",
|
|
89801
89975
|
/**
|
|
89802
89976
|
* Contains a whole row.
|
|
89803
89977
|
* @remarks
|
|
89804
|
-
* [Api set: WordApi]
|
|
89978
|
+
* [Api set: WordApi 1.1]
|
|
89805
89979
|
*/
|
|
89806
89980
|
richTextTableRow = "RichTextTableRow",
|
|
89807
89981
|
/**
|
|
89808
89982
|
* Contains a whole table.
|
|
89809
89983
|
* @remarks
|
|
89810
|
-
* [Api set: WordApi]
|
|
89984
|
+
* [Api set: WordApi 1.1]
|
|
89811
89985
|
*/
|
|
89812
89986
|
richTextTable = "RichTextTable",
|
|
89813
89987
|
/**
|
|
89814
89988
|
* @remarks
|
|
89815
|
-
* [Api set: WordApi]
|
|
89989
|
+
* [Api set: WordApi 1.1]
|
|
89816
89990
|
*/
|
|
89817
89991
|
plainTextInline = "PlainTextInline",
|
|
89818
89992
|
/**
|
|
89819
89993
|
* @remarks
|
|
89820
|
-
* [Api set: WordApi]
|
|
89994
|
+
* [Api set: WordApi 1.1]
|
|
89821
89995
|
*/
|
|
89822
89996
|
plainTextParagraph = "PlainTextParagraph",
|
|
89823
89997
|
/**
|
|
89824
89998
|
* @remarks
|
|
89825
|
-
* [Api set: WordApi]
|
|
89999
|
+
* [Api set: WordApi 1.1]
|
|
89826
90000
|
*/
|
|
89827
90001
|
picture = "Picture",
|
|
89828
90002
|
/**
|
|
89829
90003
|
* @remarks
|
|
89830
|
-
* [Api set: WordApi]
|
|
90004
|
+
* [Api set: WordApi 1.1]
|
|
89831
90005
|
*/
|
|
89832
90006
|
buildingBlockGallery = "BuildingBlockGallery",
|
|
89833
90007
|
/**
|
|
89834
90008
|
* @remarks
|
|
89835
|
-
* [Api set: WordApi]
|
|
90009
|
+
* [Api set: WordApi 1.1]
|
|
89836
90010
|
*/
|
|
89837
90011
|
checkBox = "CheckBox",
|
|
89838
90012
|
/**
|
|
89839
90013
|
* @remarks
|
|
89840
|
-
* [Api set: WordApi]
|
|
90014
|
+
* [Api set: WordApi 1.1]
|
|
89841
90015
|
*/
|
|
89842
90016
|
comboBox = "ComboBox",
|
|
89843
90017
|
/**
|
|
89844
90018
|
* @remarks
|
|
89845
|
-
* [Api set: WordApi]
|
|
90019
|
+
* [Api set: WordApi 1.1]
|
|
89846
90020
|
*/
|
|
89847
90021
|
dropDownList = "DropDownList",
|
|
89848
90022
|
/**
|
|
89849
90023
|
* @remarks
|
|
89850
|
-
* [Api set: WordApi]
|
|
90024
|
+
* [Api set: WordApi 1.1]
|
|
89851
90025
|
*/
|
|
89852
90026
|
datePicker = "DatePicker",
|
|
89853
90027
|
/**
|
|
89854
90028
|
* @remarks
|
|
89855
|
-
* [Api set: WordApi]
|
|
90029
|
+
* [Api set: WordApi 1.1]
|
|
89856
90030
|
*/
|
|
89857
90031
|
repeatingSection = "RepeatingSection",
|
|
89858
90032
|
/**
|
|
89859
90033
|
* Identifies a rich text content control.
|
|
89860
90034
|
* @remarks
|
|
89861
|
-
* [Api set: WordApi]
|
|
90035
|
+
* [Api set: WordApi 1.1]
|
|
89862
90036
|
*/
|
|
89863
90037
|
richText = "RichText",
|
|
89864
90038
|
/**
|
|
89865
90039
|
* @remarks
|
|
89866
|
-
* [Api set: WordApi]
|
|
90040
|
+
* [Api set: WordApi 1.1]
|
|
89867
90041
|
*/
|
|
89868
90042
|
plainText = "PlainText",
|
|
89869
90043
|
}
|
|
@@ -89871,7 +90045,7 @@ declare namespace Word {
|
|
|
89871
90045
|
* ContentControl appearance
|
|
89872
90046
|
*
|
|
89873
90047
|
* @remarks
|
|
89874
|
-
* [Api set: WordApi]
|
|
90048
|
+
* [Api set: WordApi 1.1]
|
|
89875
90049
|
*
|
|
89876
90050
|
* Content control appearance options are bounding box, tags, or hidden.
|
|
89877
90051
|
*/
|
|
@@ -89879,19 +90053,19 @@ declare namespace Word {
|
|
|
89879
90053
|
/**
|
|
89880
90054
|
* Represents a content control shown as a shaded rectangle or bounding box (with optional title).
|
|
89881
90055
|
* @remarks
|
|
89882
|
-
* [Api set: WordApi]
|
|
90056
|
+
* [Api set: WordApi 1.1]
|
|
89883
90057
|
*/
|
|
89884
90058
|
boundingBox = "BoundingBox",
|
|
89885
90059
|
/**
|
|
89886
90060
|
* Represents a content control shown as start and end markers.
|
|
89887
90061
|
* @remarks
|
|
89888
|
-
* [Api set: WordApi]
|
|
90062
|
+
* [Api set: WordApi 1.1]
|
|
89889
90063
|
*/
|
|
89890
90064
|
tags = "Tags",
|
|
89891
90065
|
/**
|
|
89892
90066
|
* Represents a content control that is not shown.
|
|
89893
90067
|
* @remarks
|
|
89894
|
-
* [Api set: WordApi]
|
|
90068
|
+
* [Api set: WordApi 1.1]
|
|
89895
90069
|
*/
|
|
89896
90070
|
hidden = "Hidden",
|
|
89897
90071
|
}
|
|
@@ -89899,18 +90073,18 @@ declare namespace Word {
|
|
|
89899
90073
|
* The supported styles for underline format.
|
|
89900
90074
|
*
|
|
89901
90075
|
* @remarks
|
|
89902
|
-
* [Api set: WordApi]
|
|
90076
|
+
* [Api set: WordApi 1.1]
|
|
89903
90077
|
*/
|
|
89904
90078
|
enum UnderlineType {
|
|
89905
90079
|
/**
|
|
89906
90080
|
* @remarks
|
|
89907
|
-
* [Api set: WordApi]
|
|
90081
|
+
* [Api set: WordApi 1.1]
|
|
89908
90082
|
*/
|
|
89909
90083
|
mixed = "Mixed",
|
|
89910
90084
|
/**
|
|
89911
90085
|
* No underline.
|
|
89912
90086
|
* @remarks
|
|
89913
|
-
* [Api set: WordApi]
|
|
90087
|
+
* [Api set: WordApi 1.1]
|
|
89914
90088
|
*/
|
|
89915
90089
|
none = "None",
|
|
89916
90090
|
/**
|
|
@@ -89918,7 +90092,7 @@ declare namespace Word {
|
|
|
89918
90092
|
*
|
|
89919
90093
|
* @deprecated `hidden` is no longer supported.
|
|
89920
90094
|
* @remarks
|
|
89921
|
-
* [Api set: WordApi]
|
|
90095
|
+
* [Api set: WordApi 1.1]
|
|
89922
90096
|
*/
|
|
89923
90097
|
hidden = "Hidden",
|
|
89924
90098
|
/**
|
|
@@ -89926,101 +90100,101 @@ declare namespace Word {
|
|
|
89926
90100
|
*
|
|
89927
90101
|
* @deprecated `dotLine` is no longer supported.
|
|
89928
90102
|
* @remarks
|
|
89929
|
-
* [Api set: WordApi]
|
|
90103
|
+
* [Api set: WordApi 1.1]
|
|
89930
90104
|
*/
|
|
89931
90105
|
dotLine = "DotLine",
|
|
89932
90106
|
/**
|
|
89933
90107
|
* A single underline. This is the default value.
|
|
89934
90108
|
* @remarks
|
|
89935
|
-
* [Api set: WordApi]
|
|
90109
|
+
* [Api set: WordApi 1.1]
|
|
89936
90110
|
*/
|
|
89937
90111
|
single = "Single",
|
|
89938
90112
|
/**
|
|
89939
90113
|
* Only underline individual words.
|
|
89940
90114
|
* @remarks
|
|
89941
|
-
* [Api set: WordApi]
|
|
90115
|
+
* [Api set: WordApi 1.1]
|
|
89942
90116
|
*/
|
|
89943
90117
|
word = "Word",
|
|
89944
90118
|
/**
|
|
89945
90119
|
* A double underline.
|
|
89946
90120
|
* @remarks
|
|
89947
|
-
* [Api set: WordApi]
|
|
90121
|
+
* [Api set: WordApi 1.1]
|
|
89948
90122
|
*/
|
|
89949
90123
|
double = "Double",
|
|
89950
90124
|
/**
|
|
89951
90125
|
* A single thick underline.
|
|
89952
90126
|
* @remarks
|
|
89953
|
-
* [Api set: WordApi]
|
|
90127
|
+
* [Api set: WordApi 1.1]
|
|
89954
90128
|
*/
|
|
89955
90129
|
thick = "Thick",
|
|
89956
90130
|
/**
|
|
89957
90131
|
* A dotted underline.
|
|
89958
90132
|
* @remarks
|
|
89959
|
-
* [Api set: WordApi]
|
|
90133
|
+
* [Api set: WordApi 1.1]
|
|
89960
90134
|
*/
|
|
89961
90135
|
dotted = "Dotted",
|
|
89962
90136
|
/**
|
|
89963
90137
|
* @remarks
|
|
89964
|
-
* [Api set: WordApi]
|
|
90138
|
+
* [Api set: WordApi 1.1]
|
|
89965
90139
|
*/
|
|
89966
90140
|
dottedHeavy = "DottedHeavy",
|
|
89967
90141
|
/**
|
|
89968
90142
|
* A single dash underline.
|
|
89969
90143
|
* @remarks
|
|
89970
|
-
* [Api set: WordApi]
|
|
90144
|
+
* [Api set: WordApi 1.1]
|
|
89971
90145
|
*/
|
|
89972
90146
|
dashLine = "DashLine",
|
|
89973
90147
|
/**
|
|
89974
90148
|
* @remarks
|
|
89975
|
-
* [Api set: WordApi]
|
|
90149
|
+
* [Api set: WordApi 1.1]
|
|
89976
90150
|
*/
|
|
89977
90151
|
dashLineHeavy = "DashLineHeavy",
|
|
89978
90152
|
/**
|
|
89979
90153
|
* @remarks
|
|
89980
|
-
* [Api set: WordApi]
|
|
90154
|
+
* [Api set: WordApi 1.1]
|
|
89981
90155
|
*/
|
|
89982
90156
|
dashLineLong = "DashLineLong",
|
|
89983
90157
|
/**
|
|
89984
90158
|
* @remarks
|
|
89985
|
-
* [Api set: WordApi]
|
|
90159
|
+
* [Api set: WordApi 1.1]
|
|
89986
90160
|
*/
|
|
89987
90161
|
dashLineLongHeavy = "DashLineLongHeavy",
|
|
89988
90162
|
/**
|
|
89989
90163
|
* An alternating dot-dash underline.
|
|
89990
90164
|
* @remarks
|
|
89991
|
-
* [Api set: WordApi]
|
|
90165
|
+
* [Api set: WordApi 1.1]
|
|
89992
90166
|
*/
|
|
89993
90167
|
dotDashLine = "DotDashLine",
|
|
89994
90168
|
/**
|
|
89995
90169
|
* @remarks
|
|
89996
|
-
* [Api set: WordApi]
|
|
90170
|
+
* [Api set: WordApi 1.1]
|
|
89997
90171
|
*/
|
|
89998
90172
|
dotDashLineHeavy = "DotDashLineHeavy",
|
|
89999
90173
|
/**
|
|
90000
90174
|
* An alternating dot-dot-dash underline.
|
|
90001
90175
|
* @remarks
|
|
90002
|
-
* [Api set: WordApi]
|
|
90176
|
+
* [Api set: WordApi 1.1]
|
|
90003
90177
|
*/
|
|
90004
90178
|
twoDotDashLine = "TwoDotDashLine",
|
|
90005
90179
|
/**
|
|
90006
90180
|
* @remarks
|
|
90007
|
-
* [Api set: WordApi]
|
|
90181
|
+
* [Api set: WordApi 1.1]
|
|
90008
90182
|
*/
|
|
90009
90183
|
twoDotDashLineHeavy = "TwoDotDashLineHeavy",
|
|
90010
90184
|
/**
|
|
90011
90185
|
* A single wavy underline.
|
|
90012
90186
|
* @remarks
|
|
90013
|
-
* [Api set: WordApi]
|
|
90187
|
+
* [Api set: WordApi 1.1]
|
|
90014
90188
|
*/
|
|
90015
90189
|
wave = "Wave",
|
|
90016
90190
|
/**
|
|
90017
90191
|
* @remarks
|
|
90018
|
-
* [Api set: WordApi]
|
|
90192
|
+
* [Api set: WordApi 1.1]
|
|
90019
90193
|
*/
|
|
90020
90194
|
waveHeavy = "WaveHeavy",
|
|
90021
90195
|
/**
|
|
90022
90196
|
* @remarks
|
|
90023
|
-
* [Api set: WordApi]
|
|
90197
|
+
* [Api set: WordApi 1.1]
|
|
90024
90198
|
*/
|
|
90025
90199
|
waveDouble = "WaveDouble",
|
|
90026
90200
|
}
|
|
@@ -90028,13 +90202,13 @@ declare namespace Word {
|
|
|
90028
90202
|
* Specifies the form of a break.
|
|
90029
90203
|
*
|
|
90030
90204
|
* @remarks
|
|
90031
|
-
* [Api set: WordApi]
|
|
90205
|
+
* [Api set: WordApi 1.1]
|
|
90032
90206
|
*/
|
|
90033
90207
|
enum BreakType {
|
|
90034
90208
|
/**
|
|
90035
90209
|
* Page break at the insertion point.
|
|
90036
90210
|
* @remarks
|
|
90037
|
-
* [Api set: WordApi]
|
|
90211
|
+
* [Api set: WordApi 1.1]
|
|
90038
90212
|
*/
|
|
90039
90213
|
page = "Page",
|
|
90040
90214
|
/**
|
|
@@ -90042,37 +90216,37 @@ declare namespace Word {
|
|
|
90042
90216
|
*
|
|
90043
90217
|
* @deprecated Use `sectionNext` instead.
|
|
90044
90218
|
* @remarks
|
|
90045
|
-
* [Api set: WordApi]
|
|
90219
|
+
* [Api set: WordApi 1.1]
|
|
90046
90220
|
*/
|
|
90047
90221
|
next = "Next",
|
|
90048
90222
|
/**
|
|
90049
90223
|
* Section break on next page.
|
|
90050
90224
|
* @remarks
|
|
90051
|
-
* [Api set: WordApi]
|
|
90225
|
+
* [Api set: WordApi 1.1]
|
|
90052
90226
|
*/
|
|
90053
90227
|
sectionNext = "SectionNext",
|
|
90054
90228
|
/**
|
|
90055
90229
|
* New section without a corresponding page break.
|
|
90056
90230
|
* @remarks
|
|
90057
|
-
* [Api set: WordApi]
|
|
90231
|
+
* [Api set: WordApi 1.1]
|
|
90058
90232
|
*/
|
|
90059
90233
|
sectionContinuous = "SectionContinuous",
|
|
90060
90234
|
/**
|
|
90061
90235
|
* Section break with the next section beginning on the next even-numbered page. If the section break falls on an even-numbered page, Word leaves the next odd-numbered page blank.
|
|
90062
90236
|
* @remarks
|
|
90063
|
-
* [Api set: WordApi]
|
|
90237
|
+
* [Api set: WordApi 1.1]
|
|
90064
90238
|
*/
|
|
90065
90239
|
sectionEven = "SectionEven",
|
|
90066
90240
|
/**
|
|
90067
90241
|
* Section break with the next section beginning on the next odd-numbered page. If the section break falls on an odd-numbered page, Word leaves the next even-numbered page blank.
|
|
90068
90242
|
* @remarks
|
|
90069
|
-
* [Api set: WordApi]
|
|
90243
|
+
* [Api set: WordApi 1.1]
|
|
90070
90244
|
*/
|
|
90071
90245
|
sectionOdd = "SectionOdd",
|
|
90072
90246
|
/**
|
|
90073
90247
|
* Line break.
|
|
90074
90248
|
* @remarks
|
|
90075
|
-
* [Api set: WordApi]
|
|
90249
|
+
* [Api set: WordApi 1.1]
|
|
90076
90250
|
*/
|
|
90077
90251
|
line = "Line",
|
|
90078
90252
|
}
|
|
@@ -90080,7 +90254,7 @@ declare namespace Word {
|
|
|
90080
90254
|
* The insertion location types
|
|
90081
90255
|
*
|
|
90082
90256
|
* @remarks
|
|
90083
|
-
* [Api set: WordApi]
|
|
90257
|
+
* [Api set: WordApi 1.1]
|
|
90084
90258
|
*
|
|
90085
90259
|
* To be used with an API call, such as `obj.insertSomething(newStuff, location);`
|
|
90086
90260
|
* If the location is "Before" or "After", the new content will be outside of the modified object.
|
|
@@ -90090,147 +90264,147 @@ declare namespace Word {
|
|
|
90090
90264
|
/**
|
|
90091
90265
|
* Add content before the contents of the calling object.
|
|
90092
90266
|
* @remarks
|
|
90093
|
-
* [Api set: WordApi]
|
|
90267
|
+
* [Api set: WordApi 1.1]
|
|
90094
90268
|
*/
|
|
90095
90269
|
before = "Before",
|
|
90096
90270
|
/**
|
|
90097
90271
|
* Add content after the contents of the calling object.
|
|
90098
90272
|
* @remarks
|
|
90099
|
-
* [Api set: WordApi]
|
|
90273
|
+
* [Api set: WordApi 1.1]
|
|
90100
90274
|
*/
|
|
90101
90275
|
after = "After",
|
|
90102
90276
|
/**
|
|
90103
90277
|
* Prepend content to the contents of the calling object.
|
|
90104
90278
|
* @remarks
|
|
90105
|
-
* [Api set: WordApi]
|
|
90279
|
+
* [Api set: WordApi 1.1]
|
|
90106
90280
|
*/
|
|
90107
90281
|
start = "Start",
|
|
90108
90282
|
/**
|
|
90109
90283
|
* Append content to the contents of the calling object.
|
|
90110
90284
|
* @remarks
|
|
90111
|
-
* [Api set: WordApi]
|
|
90285
|
+
* [Api set: WordApi 1.1]
|
|
90112
90286
|
*/
|
|
90113
90287
|
end = "End",
|
|
90114
90288
|
/**
|
|
90115
90289
|
* Replace the contents of the current object.
|
|
90116
90290
|
* @remarks
|
|
90117
|
-
* [Api set: WordApi]
|
|
90291
|
+
* [Api set: WordApi 1.1]
|
|
90118
90292
|
*/
|
|
90119
90293
|
replace = "Replace",
|
|
90120
90294
|
}
|
|
90121
90295
|
/**
|
|
90122
90296
|
* @remarks
|
|
90123
|
-
* [Api set: WordApi]
|
|
90297
|
+
* [Api set: WordApi 1.1]
|
|
90124
90298
|
*/
|
|
90125
90299
|
enum Alignment {
|
|
90126
90300
|
/**
|
|
90127
90301
|
* @remarks
|
|
90128
|
-
* [Api set: WordApi]
|
|
90302
|
+
* [Api set: WordApi 1.1]
|
|
90129
90303
|
*/
|
|
90130
90304
|
mixed = "Mixed",
|
|
90131
90305
|
/**
|
|
90132
90306
|
* Unknown alignment.
|
|
90133
90307
|
* @remarks
|
|
90134
|
-
* [Api set: WordApi]
|
|
90308
|
+
* [Api set: WordApi 1.1]
|
|
90135
90309
|
*/
|
|
90136
90310
|
unknown = "Unknown",
|
|
90137
90311
|
/**
|
|
90138
90312
|
* Alignment to the left.
|
|
90139
90313
|
* @remarks
|
|
90140
|
-
* [Api set: WordApi]
|
|
90314
|
+
* [Api set: WordApi 1.1]
|
|
90141
90315
|
*/
|
|
90142
90316
|
left = "Left",
|
|
90143
90317
|
/**
|
|
90144
90318
|
* Alignment to the center.
|
|
90145
90319
|
* @remarks
|
|
90146
|
-
* [Api set: WordApi]
|
|
90320
|
+
* [Api set: WordApi 1.1]
|
|
90147
90321
|
*/
|
|
90148
90322
|
centered = "Centered",
|
|
90149
90323
|
/**
|
|
90150
90324
|
* Alignment to the right.
|
|
90151
90325
|
* @remarks
|
|
90152
|
-
* [Api set: WordApi]
|
|
90326
|
+
* [Api set: WordApi 1.1]
|
|
90153
90327
|
*/
|
|
90154
90328
|
right = "Right",
|
|
90155
90329
|
/**
|
|
90156
90330
|
* Fully justified alignment.
|
|
90157
90331
|
* @remarks
|
|
90158
|
-
* [Api set: WordApi]
|
|
90332
|
+
* [Api set: WordApi 1.1]
|
|
90159
90333
|
*/
|
|
90160
90334
|
justified = "Justified",
|
|
90161
90335
|
}
|
|
90162
90336
|
/**
|
|
90163
90337
|
* @remarks
|
|
90164
|
-
* [Api set: WordApi]
|
|
90338
|
+
* [Api set: WordApi 1.1]
|
|
90165
90339
|
*/
|
|
90166
90340
|
enum HeaderFooterType {
|
|
90167
90341
|
/**
|
|
90168
90342
|
* Returns the header or footer on all pages of a section, but excludes the first page or odd pages if they are different.
|
|
90169
90343
|
* @remarks
|
|
90170
|
-
* [Api set: WordApi]
|
|
90344
|
+
* [Api set: WordApi 1.1]
|
|
90171
90345
|
*/
|
|
90172
90346
|
primary = "Primary",
|
|
90173
90347
|
/**
|
|
90174
90348
|
* Returns the header or footer on the first page of a section.
|
|
90175
90349
|
* @remarks
|
|
90176
|
-
* [Api set: WordApi]
|
|
90350
|
+
* [Api set: WordApi 1.1]
|
|
90177
90351
|
*/
|
|
90178
90352
|
firstPage = "FirstPage",
|
|
90179
90353
|
/**
|
|
90180
90354
|
* Returns all headers or footers on even-numbered pages of a section.
|
|
90181
90355
|
* @remarks
|
|
90182
|
-
* [Api set: WordApi]
|
|
90356
|
+
* [Api set: WordApi 1.1]
|
|
90183
90357
|
*/
|
|
90184
90358
|
evenPages = "EvenPages",
|
|
90185
90359
|
}
|
|
90186
90360
|
/**
|
|
90187
90361
|
* @remarks
|
|
90188
|
-
* [Api set: WordApi]
|
|
90362
|
+
* [Api set: WordApi 1.3]
|
|
90189
90363
|
*/
|
|
90190
90364
|
enum BodyType {
|
|
90191
90365
|
/**
|
|
90192
90366
|
* @remarks
|
|
90193
|
-
* [Api set: WordApi]
|
|
90367
|
+
* [Api set: WordApi 1.3]
|
|
90194
90368
|
*/
|
|
90195
90369
|
unknown = "Unknown",
|
|
90196
90370
|
/**
|
|
90197
90371
|
* @remarks
|
|
90198
|
-
* [Api set: WordApi]
|
|
90372
|
+
* [Api set: WordApi 1.3]
|
|
90199
90373
|
*/
|
|
90200
90374
|
mainDoc = "MainDoc",
|
|
90201
90375
|
/**
|
|
90202
90376
|
* @remarks
|
|
90203
|
-
* [Api set: WordApi]
|
|
90377
|
+
* [Api set: WordApi 1.3]
|
|
90204
90378
|
*/
|
|
90205
90379
|
section = "Section",
|
|
90206
90380
|
/**
|
|
90207
90381
|
* @remarks
|
|
90208
|
-
* [Api set: WordApi]
|
|
90382
|
+
* [Api set: WordApi 1.3]
|
|
90209
90383
|
*/
|
|
90210
90384
|
header = "Header",
|
|
90211
90385
|
/**
|
|
90212
90386
|
* @remarks
|
|
90213
|
-
* [Api set: WordApi]
|
|
90387
|
+
* [Api set: WordApi 1.3]
|
|
90214
90388
|
*/
|
|
90215
90389
|
footer = "Footer",
|
|
90216
90390
|
/**
|
|
90217
90391
|
* @remarks
|
|
90218
|
-
* [Api set: WordApi]
|
|
90392
|
+
* [Api set: WordApi 1.3]
|
|
90219
90393
|
*/
|
|
90220
90394
|
tableCell = "TableCell",
|
|
90221
90395
|
/**
|
|
90222
90396
|
* @remarks
|
|
90223
|
-
* [Api set: WordApi]
|
|
90397
|
+
* [Api set: WordApi 1.3]
|
|
90224
90398
|
*/
|
|
90225
90399
|
footnote = "Footnote",
|
|
90226
90400
|
/**
|
|
90227
90401
|
* @remarks
|
|
90228
|
-
* [Api set: WordApi]
|
|
90402
|
+
* [Api set: WordApi 1.3]
|
|
90229
90403
|
*/
|
|
90230
90404
|
endnote = "Endnote",
|
|
90231
90405
|
/**
|
|
90232
90406
|
* @remarks
|
|
90233
|
-
* [Api set: WordApi]
|
|
90407
|
+
* [Api set: WordApi 1.3]
|
|
90234
90408
|
*/
|
|
90235
90409
|
noteItem = "NoteItem",
|
|
90236
90410
|
}
|
|
@@ -90238,1409 +90412,1348 @@ declare namespace Word {
|
|
|
90238
90412
|
* This enum sets where the cursor (insertion point) in the document is after a selection.
|
|
90239
90413
|
*
|
|
90240
90414
|
* @remarks
|
|
90241
|
-
* [Api set: WordApi]
|
|
90415
|
+
* [Api set: WordApi 1.1]
|
|
90242
90416
|
*/
|
|
90243
90417
|
enum SelectionMode {
|
|
90244
90418
|
/**
|
|
90245
90419
|
* The entire range is selected.
|
|
90246
90420
|
* @remarks
|
|
90247
|
-
* [Api set: WordApi]
|
|
90421
|
+
* [Api set: WordApi 1.1]
|
|
90248
90422
|
*/
|
|
90249
90423
|
select = "Select",
|
|
90250
90424
|
/**
|
|
90251
90425
|
* The cursor is at the beginning of the selection (just before the start of the selected range).
|
|
90252
90426
|
* @remarks
|
|
90253
|
-
* [Api set: WordApi]
|
|
90427
|
+
* [Api set: WordApi 1.1]
|
|
90254
90428
|
*/
|
|
90255
90429
|
start = "Start",
|
|
90256
90430
|
/**
|
|
90257
90431
|
* The cursor is at the end of the selection (just after the end of the selected range).
|
|
90258
90432
|
* @remarks
|
|
90259
|
-
* [Api set: WordApi]
|
|
90433
|
+
* [Api set: WordApi 1.1]
|
|
90260
90434
|
*/
|
|
90261
90435
|
end = "End",
|
|
90262
90436
|
}
|
|
90263
90437
|
/**
|
|
90264
90438
|
* @remarks
|
|
90265
|
-
* [Api set: WordApi]
|
|
90439
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90440
|
+
* @beta
|
|
90266
90441
|
*/
|
|
90267
90442
|
enum ImageFormat {
|
|
90268
90443
|
/**
|
|
90269
90444
|
* @remarks
|
|
90270
|
-
* [Api set: WordApi]
|
|
90445
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90271
90446
|
*/
|
|
90272
90447
|
unsupported = "Unsupported",
|
|
90273
90448
|
/**
|
|
90274
90449
|
* @remarks
|
|
90275
|
-
* [Api set: WordApi]
|
|
90450
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90276
90451
|
*/
|
|
90277
90452
|
undefined = "Undefined",
|
|
90278
90453
|
/**
|
|
90279
90454
|
* @remarks
|
|
90280
|
-
* [Api set: WordApi]
|
|
90455
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90281
90456
|
*/
|
|
90282
90457
|
bmp = "Bmp",
|
|
90283
90458
|
/**
|
|
90284
90459
|
* @remarks
|
|
90285
|
-
* [Api set: WordApi]
|
|
90460
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90286
90461
|
*/
|
|
90287
90462
|
jpeg = "Jpeg",
|
|
90288
90463
|
/**
|
|
90289
90464
|
* @remarks
|
|
90290
|
-
* [Api set: WordApi]
|
|
90465
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90291
90466
|
*/
|
|
90292
90467
|
gif = "Gif",
|
|
90293
90468
|
/**
|
|
90294
90469
|
* @remarks
|
|
90295
|
-
* [Api set: WordApi]
|
|
90470
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90296
90471
|
*/
|
|
90297
90472
|
tiff = "Tiff",
|
|
90298
90473
|
/**
|
|
90299
90474
|
* @remarks
|
|
90300
|
-
* [Api set: WordApi]
|
|
90475
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90301
90476
|
*/
|
|
90302
90477
|
png = "Png",
|
|
90303
90478
|
/**
|
|
90304
90479
|
* @remarks
|
|
90305
|
-
* [Api set: WordApi]
|
|
90480
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90306
90481
|
*/
|
|
90307
90482
|
icon = "Icon",
|
|
90308
90483
|
/**
|
|
90309
90484
|
* @remarks
|
|
90310
|
-
* [Api set: WordApi]
|
|
90485
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90311
90486
|
*/
|
|
90312
90487
|
exif = "Exif",
|
|
90313
90488
|
/**
|
|
90314
90489
|
* @remarks
|
|
90315
|
-
* [Api set: WordApi]
|
|
90490
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90316
90491
|
*/
|
|
90317
90492
|
wmf = "Wmf",
|
|
90318
90493
|
/**
|
|
90319
90494
|
* @remarks
|
|
90320
|
-
* [Api set: WordApi]
|
|
90495
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90321
90496
|
*/
|
|
90322
90497
|
emf = "Emf",
|
|
90323
90498
|
/**
|
|
90324
90499
|
* @remarks
|
|
90325
|
-
* [Api set: WordApi]
|
|
90500
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90326
90501
|
*/
|
|
90327
90502
|
pict = "Pict",
|
|
90328
90503
|
/**
|
|
90329
90504
|
* @remarks
|
|
90330
|
-
* [Api set: WordApi]
|
|
90505
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90331
90506
|
*/
|
|
90332
90507
|
pdf = "Pdf",
|
|
90333
90508
|
/**
|
|
90334
90509
|
* @remarks
|
|
90335
|
-
* [Api set: WordApi]
|
|
90510
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90336
90511
|
*/
|
|
90337
90512
|
svg = "Svg",
|
|
90338
90513
|
}
|
|
90339
90514
|
/**
|
|
90340
90515
|
* @remarks
|
|
90341
|
-
* [Api set: WordApi]
|
|
90516
|
+
* [Api set: WordApi 1.3]
|
|
90342
90517
|
*/
|
|
90343
90518
|
enum RangeLocation {
|
|
90344
90519
|
/**
|
|
90345
90520
|
* The object's whole range. If the object is a paragraph content control or table content control, the EOP or Table characters after the content control are also included.
|
|
90346
90521
|
* @remarks
|
|
90347
|
-
* [Api set: WordApi]
|
|
90522
|
+
* [Api set: WordApi 1.3]
|
|
90348
90523
|
*/
|
|
90349
90524
|
whole = "Whole",
|
|
90350
90525
|
/**
|
|
90351
90526
|
* The starting point of the object. For content control, it is the point after the opening tag.
|
|
90352
90527
|
* @remarks
|
|
90353
|
-
* [Api set: WordApi]
|
|
90528
|
+
* [Api set: WordApi 1.3]
|
|
90354
90529
|
*/
|
|
90355
90530
|
start = "Start",
|
|
90356
90531
|
/**
|
|
90357
90532
|
* The ending point of the object. For paragraph, it is the point before the EOP. For content control, it is the point before the closing tag.
|
|
90358
90533
|
* @remarks
|
|
90359
|
-
* [Api set: WordApi]
|
|
90534
|
+
* [Api set: WordApi 1.3]
|
|
90360
90535
|
*/
|
|
90361
90536
|
end = "End",
|
|
90362
90537
|
/**
|
|
90363
90538
|
* For content control only. It is the point before the opening tag.
|
|
90364
90539
|
* @remarks
|
|
90365
|
-
* [Api set: WordApi]
|
|
90540
|
+
* [Api set: WordApi 1.3]
|
|
90366
90541
|
*/
|
|
90367
90542
|
before = "Before",
|
|
90368
90543
|
/**
|
|
90369
90544
|
* The point after the object. If the object is a paragraph content control or table content control, it is the point after the EOP or Table characters.
|
|
90370
90545
|
* @remarks
|
|
90371
|
-
* [Api set: WordApi]
|
|
90546
|
+
* [Api set: WordApi 1.3]
|
|
90372
90547
|
*/
|
|
90373
90548
|
after = "After",
|
|
90374
90549
|
/**
|
|
90375
90550
|
* The range between 'Start' and 'End'.
|
|
90376
90551
|
* @remarks
|
|
90377
|
-
* [Api set: WordApi]
|
|
90552
|
+
* [Api set: WordApi 1.3]
|
|
90378
90553
|
*/
|
|
90379
90554
|
content = "Content",
|
|
90380
90555
|
}
|
|
90381
90556
|
/**
|
|
90382
90557
|
* @remarks
|
|
90383
|
-
* [Api set: WordApi]
|
|
90558
|
+
* [Api set: WordApi 1.3]
|
|
90384
90559
|
*/
|
|
90385
90560
|
enum LocationRelation {
|
|
90386
90561
|
/**
|
|
90387
90562
|
* Indicates that this instance and the range are in different sub-documents.
|
|
90388
90563
|
* @remarks
|
|
90389
|
-
* [Api set: WordApi]
|
|
90564
|
+
* [Api set: WordApi 1.3]
|
|
90390
90565
|
*/
|
|
90391
90566
|
unrelated = "Unrelated",
|
|
90392
90567
|
/**
|
|
90393
90568
|
* Indicates that this instance and the range represent the same range.
|
|
90394
90569
|
* @remarks
|
|
90395
|
-
* [Api set: WordApi]
|
|
90570
|
+
* [Api set: WordApi 1.3]
|
|
90396
90571
|
*/
|
|
90397
90572
|
equal = "Equal",
|
|
90398
90573
|
/**
|
|
90399
90574
|
* Indicates that this instance contains the range and that it shares the same start character. The range does not share the same end character as this instance.
|
|
90400
90575
|
* @remarks
|
|
90401
|
-
* [Api set: WordApi]
|
|
90576
|
+
* [Api set: WordApi 1.3]
|
|
90402
90577
|
*/
|
|
90403
90578
|
containsStart = "ContainsStart",
|
|
90404
90579
|
/**
|
|
90405
90580
|
* Indicates that this instance contains the range and that it shares the same end character. The range does not share the same start character as this instance.
|
|
90406
90581
|
* @remarks
|
|
90407
|
-
* [Api set: WordApi]
|
|
90582
|
+
* [Api set: WordApi 1.3]
|
|
90408
90583
|
*/
|
|
90409
90584
|
containsEnd = "ContainsEnd",
|
|
90410
90585
|
/**
|
|
90411
90586
|
* Indicates that this instance contains the range, with the exception of the start and end character of this instance.
|
|
90412
90587
|
* @remarks
|
|
90413
|
-
* [Api set: WordApi]
|
|
90588
|
+
* [Api set: WordApi 1.3]
|
|
90414
90589
|
*/
|
|
90415
90590
|
contains = "Contains",
|
|
90416
90591
|
/**
|
|
90417
90592
|
* Indicates that this instance is inside the range and that it shares the same start character. The range does not share the same end character as this instance.
|
|
90418
90593
|
* @remarks
|
|
90419
|
-
* [Api set: WordApi]
|
|
90594
|
+
* [Api set: WordApi 1.3]
|
|
90420
90595
|
*/
|
|
90421
90596
|
insideStart = "InsideStart",
|
|
90422
90597
|
/**
|
|
90423
90598
|
* Indicates that this instance is inside the range and that it shares the same end character. The range does not share the same start character as this instance.
|
|
90424
90599
|
* @remarks
|
|
90425
|
-
* [Api set: WordApi]
|
|
90600
|
+
* [Api set: WordApi 1.3]
|
|
90426
90601
|
*/
|
|
90427
90602
|
insideEnd = "InsideEnd",
|
|
90428
90603
|
/**
|
|
90429
90604
|
* Indicates that this instance is inside the range. The range does not share the same start and end characters as this instance.
|
|
90430
90605
|
* @remarks
|
|
90431
|
-
* [Api set: WordApi]
|
|
90606
|
+
* [Api set: WordApi 1.3]
|
|
90432
90607
|
*/
|
|
90433
90608
|
inside = "Inside",
|
|
90434
90609
|
/**
|
|
90435
90610
|
* Indicates that this instance occurs before, and is adjacent to, the range.
|
|
90436
90611
|
* @remarks
|
|
90437
|
-
* [Api set: WordApi]
|
|
90612
|
+
* [Api set: WordApi 1.3]
|
|
90438
90613
|
*/
|
|
90439
90614
|
adjacentBefore = "AdjacentBefore",
|
|
90440
90615
|
/**
|
|
90441
90616
|
* Indicates that this instance starts before the range and overlaps the range’s first character.
|
|
90442
90617
|
* @remarks
|
|
90443
|
-
* [Api set: WordApi]
|
|
90618
|
+
* [Api set: WordApi 1.3]
|
|
90444
90619
|
*/
|
|
90445
90620
|
overlapsBefore = "OverlapsBefore",
|
|
90446
90621
|
/**
|
|
90447
90622
|
* Indicates that this instance occurs before the range.
|
|
90448
90623
|
* @remarks
|
|
90449
|
-
* [Api set: WordApi]
|
|
90624
|
+
* [Api set: WordApi 1.3]
|
|
90450
90625
|
*/
|
|
90451
90626
|
before = "Before",
|
|
90452
90627
|
/**
|
|
90453
90628
|
* Indicates that this instance occurs after, and is adjacent to, the range.
|
|
90454
90629
|
* @remarks
|
|
90455
|
-
* [Api set: WordApi]
|
|
90630
|
+
* [Api set: WordApi 1.3]
|
|
90456
90631
|
*/
|
|
90457
90632
|
adjacentAfter = "AdjacentAfter",
|
|
90458
90633
|
/**
|
|
90459
90634
|
* Indicates that this instance starts inside the range and overlaps the range’s last character.
|
|
90460
90635
|
* @remarks
|
|
90461
|
-
* [Api set: WordApi]
|
|
90636
|
+
* [Api set: WordApi 1.3]
|
|
90462
90637
|
*/
|
|
90463
90638
|
overlapsAfter = "OverlapsAfter",
|
|
90464
90639
|
/**
|
|
90465
90640
|
* Indicates that this instance occurs after the range.
|
|
90466
90641
|
* @remarks
|
|
90467
|
-
* [Api set: WordApi]
|
|
90642
|
+
* [Api set: WordApi 1.3]
|
|
90468
90643
|
*/
|
|
90469
90644
|
after = "After",
|
|
90470
90645
|
}
|
|
90471
90646
|
/**
|
|
90472
90647
|
* @remarks
|
|
90473
|
-
* [Api set: WordApi]
|
|
90648
|
+
* [Api set: WordApi 1.3]
|
|
90474
90649
|
*/
|
|
90475
90650
|
enum BorderLocation {
|
|
90476
90651
|
/**
|
|
90477
90652
|
* @remarks
|
|
90478
|
-
* [Api set: WordApi]
|
|
90653
|
+
* [Api set: WordApi 1.3]
|
|
90479
90654
|
*/
|
|
90480
90655
|
top = "Top",
|
|
90481
90656
|
/**
|
|
90482
90657
|
* @remarks
|
|
90483
|
-
* [Api set: WordApi]
|
|
90658
|
+
* [Api set: WordApi 1.3]
|
|
90484
90659
|
*/
|
|
90485
90660
|
left = "Left",
|
|
90486
90661
|
/**
|
|
90487
90662
|
* @remarks
|
|
90488
|
-
* [Api set: WordApi]
|
|
90663
|
+
* [Api set: WordApi 1.3]
|
|
90489
90664
|
*/
|
|
90490
90665
|
bottom = "Bottom",
|
|
90491
90666
|
/**
|
|
90492
90667
|
* @remarks
|
|
90493
|
-
* [Api set: WordApi]
|
|
90668
|
+
* [Api set: WordApi 1.3]
|
|
90494
90669
|
*/
|
|
90495
90670
|
right = "Right",
|
|
90496
90671
|
/**
|
|
90497
90672
|
* @remarks
|
|
90498
|
-
* [Api set: WordApi]
|
|
90673
|
+
* [Api set: WordApi 1.3]
|
|
90499
90674
|
*/
|
|
90500
90675
|
insideHorizontal = "InsideHorizontal",
|
|
90501
90676
|
/**
|
|
90502
90677
|
* @remarks
|
|
90503
|
-
* [Api set: WordApi]
|
|
90678
|
+
* [Api set: WordApi 1.3]
|
|
90504
90679
|
*/
|
|
90505
90680
|
insideVertical = "InsideVertical",
|
|
90506
90681
|
/**
|
|
90507
90682
|
* @remarks
|
|
90508
|
-
* [Api set: WordApi]
|
|
90683
|
+
* [Api set: WordApi 1.3]
|
|
90509
90684
|
*/
|
|
90510
90685
|
inside = "Inside",
|
|
90511
90686
|
/**
|
|
90512
90687
|
* @remarks
|
|
90513
|
-
* [Api set: WordApi]
|
|
90688
|
+
* [Api set: WordApi 1.3]
|
|
90514
90689
|
*/
|
|
90515
90690
|
outside = "Outside",
|
|
90516
90691
|
/**
|
|
90517
90692
|
* @remarks
|
|
90518
|
-
* [Api set: WordApi]
|
|
90693
|
+
* [Api set: WordApi 1.3]
|
|
90519
90694
|
*/
|
|
90520
90695
|
all = "All",
|
|
90521
90696
|
}
|
|
90522
90697
|
/**
|
|
90523
90698
|
* @remarks
|
|
90524
|
-
* [Api set: WordApi]
|
|
90699
|
+
* [Api set: WordApi 1.3]
|
|
90525
90700
|
*/
|
|
90526
90701
|
enum CellPaddingLocation {
|
|
90527
90702
|
/**
|
|
90528
90703
|
* @remarks
|
|
90529
|
-
* [Api set: WordApi]
|
|
90704
|
+
* [Api set: WordApi 1.3]
|
|
90530
90705
|
*/
|
|
90531
90706
|
top = "Top",
|
|
90532
90707
|
/**
|
|
90533
90708
|
* @remarks
|
|
90534
|
-
* [Api set: WordApi]
|
|
90709
|
+
* [Api set: WordApi 1.3]
|
|
90535
90710
|
*/
|
|
90536
90711
|
left = "Left",
|
|
90537
90712
|
/**
|
|
90538
90713
|
* @remarks
|
|
90539
|
-
* [Api set: WordApi]
|
|
90714
|
+
* [Api set: WordApi 1.3]
|
|
90540
90715
|
*/
|
|
90541
90716
|
bottom = "Bottom",
|
|
90542
90717
|
/**
|
|
90543
90718
|
* @remarks
|
|
90544
|
-
* [Api set: WordApi]
|
|
90719
|
+
* [Api set: WordApi 1.3]
|
|
90545
90720
|
*/
|
|
90546
90721
|
right = "Right",
|
|
90547
90722
|
}
|
|
90548
90723
|
/**
|
|
90549
90724
|
* @remarks
|
|
90550
|
-
* [Api set: WordApi]
|
|
90725
|
+
* [Api set: WordApi 1.3]
|
|
90551
90726
|
*/
|
|
90552
90727
|
enum BorderType {
|
|
90553
90728
|
/**
|
|
90554
90729
|
* @remarks
|
|
90555
|
-
* [Api set: WordApi]
|
|
90730
|
+
* [Api set: WordApi 1.3]
|
|
90556
90731
|
*/
|
|
90557
90732
|
mixed = "Mixed",
|
|
90558
90733
|
/**
|
|
90559
90734
|
* @remarks
|
|
90560
|
-
* [Api set: WordApi]
|
|
90735
|
+
* [Api set: WordApi 1.3]
|
|
90561
90736
|
*/
|
|
90562
90737
|
none = "None",
|
|
90563
90738
|
/**
|
|
90564
90739
|
* @remarks
|
|
90565
|
-
* [Api set: WordApi]
|
|
90740
|
+
* [Api set: WordApi 1.3]
|
|
90566
90741
|
*/
|
|
90567
90742
|
single = "Single",
|
|
90568
90743
|
/**
|
|
90569
90744
|
* @remarks
|
|
90570
|
-
* [Api set: WordApi]
|
|
90745
|
+
* [Api set: WordApi 1.3]
|
|
90571
90746
|
*/
|
|
90572
90747
|
double = "Double",
|
|
90573
90748
|
/**
|
|
90574
90749
|
* @remarks
|
|
90575
|
-
* [Api set: WordApi]
|
|
90750
|
+
* [Api set: WordApi 1.3]
|
|
90576
90751
|
*/
|
|
90577
90752
|
dotted = "Dotted",
|
|
90578
90753
|
/**
|
|
90579
90754
|
* @remarks
|
|
90580
|
-
* [Api set: WordApi]
|
|
90755
|
+
* [Api set: WordApi 1.3]
|
|
90581
90756
|
*/
|
|
90582
90757
|
dashed = "Dashed",
|
|
90583
90758
|
/**
|
|
90584
90759
|
* @remarks
|
|
90585
|
-
* [Api set: WordApi]
|
|
90760
|
+
* [Api set: WordApi 1.3]
|
|
90586
90761
|
*/
|
|
90587
90762
|
dotDashed = "DotDashed",
|
|
90588
90763
|
/**
|
|
90589
90764
|
* @remarks
|
|
90590
|
-
* [Api set: WordApi]
|
|
90765
|
+
* [Api set: WordApi 1.3]
|
|
90591
90766
|
*/
|
|
90592
90767
|
dot2Dashed = "Dot2Dashed",
|
|
90593
90768
|
/**
|
|
90594
90769
|
* @remarks
|
|
90595
|
-
* [Api set: WordApi]
|
|
90770
|
+
* [Api set: WordApi 1.3]
|
|
90596
90771
|
*/
|
|
90597
90772
|
triple = "Triple",
|
|
90598
90773
|
/**
|
|
90599
90774
|
* @remarks
|
|
90600
|
-
* [Api set: WordApi]
|
|
90775
|
+
* [Api set: WordApi 1.3]
|
|
90601
90776
|
*/
|
|
90602
90777
|
thinThickSmall = "ThinThickSmall",
|
|
90603
90778
|
/**
|
|
90604
90779
|
* @remarks
|
|
90605
|
-
* [Api set: WordApi]
|
|
90780
|
+
* [Api set: WordApi 1.3]
|
|
90606
90781
|
*/
|
|
90607
90782
|
thickThinSmall = "ThickThinSmall",
|
|
90608
90783
|
/**
|
|
90609
90784
|
* @remarks
|
|
90610
|
-
* [Api set: WordApi]
|
|
90785
|
+
* [Api set: WordApi 1.3]
|
|
90611
90786
|
*/
|
|
90612
90787
|
thinThickThinSmall = "ThinThickThinSmall",
|
|
90613
90788
|
/**
|
|
90614
90789
|
* @remarks
|
|
90615
|
-
* [Api set: WordApi]
|
|
90790
|
+
* [Api set: WordApi 1.3]
|
|
90616
90791
|
*/
|
|
90617
90792
|
thinThickMed = "ThinThickMed",
|
|
90618
90793
|
/**
|
|
90619
90794
|
* @remarks
|
|
90620
|
-
* [Api set: WordApi]
|
|
90795
|
+
* [Api set: WordApi 1.3]
|
|
90621
90796
|
*/
|
|
90622
90797
|
thickThinMed = "ThickThinMed",
|
|
90623
90798
|
/**
|
|
90624
90799
|
* @remarks
|
|
90625
|
-
* [Api set: WordApi]
|
|
90800
|
+
* [Api set: WordApi 1.3]
|
|
90626
90801
|
*/
|
|
90627
90802
|
thinThickThinMed = "ThinThickThinMed",
|
|
90628
90803
|
/**
|
|
90629
90804
|
* @remarks
|
|
90630
|
-
* [Api set: WordApi]
|
|
90805
|
+
* [Api set: WordApi 1.3]
|
|
90631
90806
|
*/
|
|
90632
90807
|
thinThickLarge = "ThinThickLarge",
|
|
90633
90808
|
/**
|
|
90634
90809
|
* @remarks
|
|
90635
|
-
* [Api set: WordApi]
|
|
90810
|
+
* [Api set: WordApi 1.3]
|
|
90636
90811
|
*/
|
|
90637
90812
|
thickThinLarge = "ThickThinLarge",
|
|
90638
90813
|
/**
|
|
90639
90814
|
* @remarks
|
|
90640
|
-
* [Api set: WordApi]
|
|
90815
|
+
* [Api set: WordApi 1.3]
|
|
90641
90816
|
*/
|
|
90642
90817
|
thinThickThinLarge = "ThinThickThinLarge",
|
|
90643
90818
|
/**
|
|
90644
90819
|
* @remarks
|
|
90645
|
-
* [Api set: WordApi]
|
|
90820
|
+
* [Api set: WordApi 1.3]
|
|
90646
90821
|
*/
|
|
90647
90822
|
wave = "Wave",
|
|
90648
90823
|
/**
|
|
90649
90824
|
* @remarks
|
|
90650
|
-
* [Api set: WordApi]
|
|
90825
|
+
* [Api set: WordApi 1.3]
|
|
90651
90826
|
*/
|
|
90652
90827
|
doubleWave = "DoubleWave",
|
|
90653
90828
|
/**
|
|
90654
90829
|
* @remarks
|
|
90655
|
-
* [Api set: WordApi]
|
|
90830
|
+
* [Api set: WordApi 1.3]
|
|
90656
90831
|
*/
|
|
90657
90832
|
dashedSmall = "DashedSmall",
|
|
90658
90833
|
/**
|
|
90659
90834
|
* @remarks
|
|
90660
|
-
* [Api set: WordApi]
|
|
90835
|
+
* [Api set: WordApi 1.3]
|
|
90661
90836
|
*/
|
|
90662
90837
|
dashDotStroked = "DashDotStroked",
|
|
90663
90838
|
/**
|
|
90664
90839
|
* @remarks
|
|
90665
|
-
* [Api set: WordApi]
|
|
90840
|
+
* [Api set: WordApi 1.3]
|
|
90666
90841
|
*/
|
|
90667
90842
|
threeDEmboss = "ThreeDEmboss",
|
|
90668
90843
|
/**
|
|
90669
90844
|
* @remarks
|
|
90670
|
-
* [Api set: WordApi]
|
|
90845
|
+
* [Api set: WordApi 1.3]
|
|
90671
90846
|
*/
|
|
90672
90847
|
threeDEngrave = "ThreeDEngrave",
|
|
90673
90848
|
}
|
|
90674
90849
|
/**
|
|
90675
90850
|
* @remarks
|
|
90676
|
-
* [Api set: WordApi]
|
|
90851
|
+
* [Api set: WordApi 1.3]
|
|
90677
90852
|
*/
|
|
90678
90853
|
enum VerticalAlignment {
|
|
90679
90854
|
/**
|
|
90680
90855
|
* @remarks
|
|
90681
|
-
* [Api set: WordApi]
|
|
90856
|
+
* [Api set: WordApi 1.3]
|
|
90682
90857
|
*/
|
|
90683
90858
|
mixed = "Mixed",
|
|
90684
90859
|
/**
|
|
90685
90860
|
* @remarks
|
|
90686
|
-
* [Api set: WordApi]
|
|
90861
|
+
* [Api set: WordApi 1.3]
|
|
90687
90862
|
*/
|
|
90688
90863
|
top = "Top",
|
|
90689
90864
|
/**
|
|
90690
90865
|
* @remarks
|
|
90691
|
-
* [Api set: WordApi]
|
|
90866
|
+
* [Api set: WordApi 1.3]
|
|
90692
90867
|
*/
|
|
90693
90868
|
center = "Center",
|
|
90694
90869
|
/**
|
|
90695
90870
|
* @remarks
|
|
90696
|
-
* [Api set: WordApi]
|
|
90871
|
+
* [Api set: WordApi 1.3]
|
|
90697
90872
|
*/
|
|
90698
90873
|
bottom = "Bottom",
|
|
90699
90874
|
}
|
|
90700
90875
|
/**
|
|
90701
90876
|
* @remarks
|
|
90702
|
-
* [Api set: WordApi]
|
|
90877
|
+
* [Api set: WordApi 1.3]
|
|
90703
90878
|
*/
|
|
90704
90879
|
enum ListLevelType {
|
|
90705
90880
|
/**
|
|
90706
90881
|
* @remarks
|
|
90707
|
-
* [Api set: WordApi]
|
|
90882
|
+
* [Api set: WordApi 1.3]
|
|
90708
90883
|
*/
|
|
90709
90884
|
bullet = "Bullet",
|
|
90710
90885
|
/**
|
|
90711
90886
|
* @remarks
|
|
90712
|
-
* [Api set: WordApi]
|
|
90887
|
+
* [Api set: WordApi 1.3]
|
|
90713
90888
|
*/
|
|
90714
90889
|
number = "Number",
|
|
90715
90890
|
/**
|
|
90716
90891
|
* @remarks
|
|
90717
|
-
* [Api set: WordApi]
|
|
90892
|
+
* [Api set: WordApi 1.3]
|
|
90718
90893
|
*/
|
|
90719
90894
|
picture = "Picture",
|
|
90720
90895
|
}
|
|
90721
90896
|
/**
|
|
90722
90897
|
* @remarks
|
|
90723
|
-
* [Api set: WordApi]
|
|
90898
|
+
* [Api set: WordApi 1.3]
|
|
90724
90899
|
*/
|
|
90725
90900
|
enum ListBullet {
|
|
90726
90901
|
/**
|
|
90727
90902
|
* @remarks
|
|
90728
|
-
* [Api set: WordApi]
|
|
90903
|
+
* [Api set: WordApi 1.3]
|
|
90729
90904
|
*/
|
|
90730
90905
|
custom = "Custom",
|
|
90731
90906
|
/**
|
|
90732
90907
|
* @remarks
|
|
90733
|
-
* [Api set: WordApi]
|
|
90908
|
+
* [Api set: WordApi 1.3]
|
|
90734
90909
|
*/
|
|
90735
90910
|
solid = "Solid",
|
|
90736
90911
|
/**
|
|
90737
90912
|
* @remarks
|
|
90738
|
-
* [Api set: WordApi]
|
|
90913
|
+
* [Api set: WordApi 1.3]
|
|
90739
90914
|
*/
|
|
90740
90915
|
hollow = "Hollow",
|
|
90741
90916
|
/**
|
|
90742
90917
|
* @remarks
|
|
90743
|
-
* [Api set: WordApi]
|
|
90918
|
+
* [Api set: WordApi 1.3]
|
|
90744
90919
|
*/
|
|
90745
90920
|
square = "Square",
|
|
90746
90921
|
/**
|
|
90747
90922
|
* @remarks
|
|
90748
|
-
* [Api set: WordApi]
|
|
90923
|
+
* [Api set: WordApi 1.3]
|
|
90749
90924
|
*/
|
|
90750
90925
|
diamonds = "Diamonds",
|
|
90751
90926
|
/**
|
|
90752
90927
|
* @remarks
|
|
90753
|
-
* [Api set: WordApi]
|
|
90928
|
+
* [Api set: WordApi 1.3]
|
|
90754
90929
|
*/
|
|
90755
90930
|
arrow = "Arrow",
|
|
90756
90931
|
/**
|
|
90757
90932
|
* @remarks
|
|
90758
|
-
* [Api set: WordApi]
|
|
90933
|
+
* [Api set: WordApi 1.3]
|
|
90759
90934
|
*/
|
|
90760
90935
|
checkmark = "Checkmark",
|
|
90761
90936
|
}
|
|
90762
90937
|
/**
|
|
90763
90938
|
* @remarks
|
|
90764
|
-
* [Api set: WordApi]
|
|
90939
|
+
* [Api set: WordApi 1.3]
|
|
90765
90940
|
*/
|
|
90766
90941
|
enum ListNumbering {
|
|
90767
90942
|
/**
|
|
90768
90943
|
* @remarks
|
|
90769
|
-
* [Api set: WordApi]
|
|
90944
|
+
* [Api set: WordApi 1.3]
|
|
90770
90945
|
*/
|
|
90771
90946
|
none = "None",
|
|
90772
90947
|
/**
|
|
90773
90948
|
* @remarks
|
|
90774
|
-
* [Api set: WordApi]
|
|
90949
|
+
* [Api set: WordApi 1.3]
|
|
90775
90950
|
*/
|
|
90776
90951
|
arabic = "Arabic",
|
|
90777
90952
|
/**
|
|
90778
90953
|
* @remarks
|
|
90779
|
-
* [Api set: WordApi]
|
|
90954
|
+
* [Api set: WordApi 1.3]
|
|
90780
90955
|
*/
|
|
90781
90956
|
upperRoman = "UpperRoman",
|
|
90782
90957
|
/**
|
|
90783
90958
|
* @remarks
|
|
90784
|
-
* [Api set: WordApi]
|
|
90959
|
+
* [Api set: WordApi 1.3]
|
|
90785
90960
|
*/
|
|
90786
90961
|
lowerRoman = "LowerRoman",
|
|
90787
90962
|
/**
|
|
90788
90963
|
* @remarks
|
|
90789
|
-
* [Api set: WordApi]
|
|
90964
|
+
* [Api set: WordApi 1.3]
|
|
90790
90965
|
*/
|
|
90791
90966
|
upperLetter = "UpperLetter",
|
|
90792
90967
|
/**
|
|
90793
90968
|
* @remarks
|
|
90794
|
-
* [Api set: WordApi]
|
|
90969
|
+
* [Api set: WordApi 1.3]
|
|
90795
90970
|
*/
|
|
90796
90971
|
lowerLetter = "LowerLetter",
|
|
90797
90972
|
}
|
|
90798
90973
|
/**
|
|
90799
90974
|
* @remarks
|
|
90800
|
-
* [Api set: WordApi]
|
|
90975
|
+
* [Api set: WordApi 1.3]
|
|
90801
90976
|
*/
|
|
90802
90977
|
enum Style {
|
|
90803
90978
|
/**
|
|
90804
90979
|
* Mixed styles or other style not in this list.
|
|
90805
90980
|
* @remarks
|
|
90806
|
-
* [Api set: WordApi]
|
|
90981
|
+
* [Api set: WordApi 1.3]
|
|
90807
90982
|
*/
|
|
90808
90983
|
other = "Other",
|
|
90809
90984
|
/**
|
|
90810
90985
|
* Reset character and paragraph style to default.
|
|
90811
90986
|
* @remarks
|
|
90812
|
-
* [Api set: WordApi]
|
|
90987
|
+
* [Api set: WordApi 1.3]
|
|
90813
90988
|
*/
|
|
90814
90989
|
normal = "Normal",
|
|
90815
90990
|
/**
|
|
90816
90991
|
* @remarks
|
|
90817
|
-
* [Api set: WordApi]
|
|
90992
|
+
* [Api set: WordApi 1.3]
|
|
90818
90993
|
*/
|
|
90819
90994
|
heading1 = "Heading1",
|
|
90820
90995
|
/**
|
|
90821
90996
|
* @remarks
|
|
90822
|
-
* [Api set: WordApi]
|
|
90997
|
+
* [Api set: WordApi 1.3]
|
|
90823
90998
|
*/
|
|
90824
90999
|
heading2 = "Heading2",
|
|
90825
91000
|
/**
|
|
90826
91001
|
* @remarks
|
|
90827
|
-
* [Api set: WordApi]
|
|
91002
|
+
* [Api set: WordApi 1.3]
|
|
90828
91003
|
*/
|
|
90829
91004
|
heading3 = "Heading3",
|
|
90830
91005
|
/**
|
|
90831
91006
|
* @remarks
|
|
90832
|
-
* [Api set: WordApi]
|
|
91007
|
+
* [Api set: WordApi 1.3]
|
|
90833
91008
|
*/
|
|
90834
91009
|
heading4 = "Heading4",
|
|
90835
91010
|
/**
|
|
90836
91011
|
* @remarks
|
|
90837
|
-
* [Api set: WordApi]
|
|
91012
|
+
* [Api set: WordApi 1.3]
|
|
90838
91013
|
*/
|
|
90839
91014
|
heading5 = "Heading5",
|
|
90840
91015
|
/**
|
|
90841
91016
|
* @remarks
|
|
90842
|
-
* [Api set: WordApi]
|
|
91017
|
+
* [Api set: WordApi 1.3]
|
|
90843
91018
|
*/
|
|
90844
91019
|
heading6 = "Heading6",
|
|
90845
91020
|
/**
|
|
90846
91021
|
* @remarks
|
|
90847
|
-
* [Api set: WordApi]
|
|
91022
|
+
* [Api set: WordApi 1.3]
|
|
90848
91023
|
*/
|
|
90849
91024
|
heading7 = "Heading7",
|
|
90850
91025
|
/**
|
|
90851
91026
|
* @remarks
|
|
90852
|
-
* [Api set: WordApi]
|
|
91027
|
+
* [Api set: WordApi 1.3]
|
|
90853
91028
|
*/
|
|
90854
91029
|
heading8 = "Heading8",
|
|
90855
91030
|
/**
|
|
90856
91031
|
* @remarks
|
|
90857
|
-
* [Api set: WordApi]
|
|
91032
|
+
* [Api set: WordApi 1.3]
|
|
90858
91033
|
*/
|
|
90859
91034
|
heading9 = "Heading9",
|
|
90860
91035
|
/**
|
|
90861
91036
|
* Table-of-content level 1.
|
|
90862
91037
|
* @remarks
|
|
90863
|
-
* [Api set: WordApi]
|
|
91038
|
+
* [Api set: WordApi 1.3]
|
|
90864
91039
|
*/
|
|
90865
91040
|
toc1 = "Toc1",
|
|
90866
91041
|
/**
|
|
90867
91042
|
* Table-of-content level 2.
|
|
90868
91043
|
* @remarks
|
|
90869
|
-
* [Api set: WordApi]
|
|
91044
|
+
* [Api set: WordApi 1.3]
|
|
90870
91045
|
*/
|
|
90871
91046
|
toc2 = "Toc2",
|
|
90872
91047
|
/**
|
|
90873
91048
|
* Table-of-content level 3.
|
|
90874
91049
|
* @remarks
|
|
90875
|
-
* [Api set: WordApi]
|
|
91050
|
+
* [Api set: WordApi 1.3]
|
|
90876
91051
|
*/
|
|
90877
91052
|
toc3 = "Toc3",
|
|
90878
91053
|
/**
|
|
90879
91054
|
* Table-of-content level 4.
|
|
90880
91055
|
* @remarks
|
|
90881
|
-
* [Api set: WordApi]
|
|
91056
|
+
* [Api set: WordApi 1.3]
|
|
90882
91057
|
*/
|
|
90883
91058
|
toc4 = "Toc4",
|
|
90884
91059
|
/**
|
|
90885
91060
|
* Table-of-content level 5.
|
|
90886
91061
|
* @remarks
|
|
90887
|
-
* [Api set: WordApi]
|
|
91062
|
+
* [Api set: WordApi 1.3]
|
|
90888
91063
|
*/
|
|
90889
91064
|
toc5 = "Toc5",
|
|
90890
91065
|
/**
|
|
90891
91066
|
* Table-of-content level 6.
|
|
90892
91067
|
* @remarks
|
|
90893
|
-
* [Api set: WordApi]
|
|
91068
|
+
* [Api set: WordApi 1.3]
|
|
90894
91069
|
*/
|
|
90895
91070
|
toc6 = "Toc6",
|
|
90896
91071
|
/**
|
|
90897
91072
|
* Table-of-content level 7.
|
|
90898
91073
|
* @remarks
|
|
90899
|
-
* [Api set: WordApi]
|
|
91074
|
+
* [Api set: WordApi 1.3]
|
|
90900
91075
|
*/
|
|
90901
91076
|
toc7 = "Toc7",
|
|
90902
91077
|
/**
|
|
90903
91078
|
* Table-of-content level 8.
|
|
90904
91079
|
* @remarks
|
|
90905
|
-
* [Api set: WordApi]
|
|
91080
|
+
* [Api set: WordApi 1.3]
|
|
90906
91081
|
*/
|
|
90907
91082
|
toc8 = "Toc8",
|
|
90908
91083
|
/**
|
|
90909
91084
|
* Table-of-content level 9.
|
|
90910
91085
|
* @remarks
|
|
90911
|
-
* [Api set: WordApi]
|
|
91086
|
+
* [Api set: WordApi 1.3]
|
|
90912
91087
|
*/
|
|
90913
91088
|
toc9 = "Toc9",
|
|
90914
91089
|
/**
|
|
90915
91090
|
* @remarks
|
|
90916
|
-
* [Api set: WordApi]
|
|
91091
|
+
* [Api set: WordApi 1.3]
|
|
90917
91092
|
*/
|
|
90918
91093
|
footnoteText = "FootnoteText",
|
|
90919
91094
|
/**
|
|
90920
91095
|
* @remarks
|
|
90921
|
-
* [Api set: WordApi]
|
|
91096
|
+
* [Api set: WordApi 1.3]
|
|
90922
91097
|
*/
|
|
90923
91098
|
header = "Header",
|
|
90924
91099
|
/**
|
|
90925
91100
|
* @remarks
|
|
90926
|
-
* [Api set: WordApi]
|
|
91101
|
+
* [Api set: WordApi 1.3]
|
|
90927
91102
|
*/
|
|
90928
91103
|
footer = "Footer",
|
|
90929
91104
|
/**
|
|
90930
91105
|
* @remarks
|
|
90931
|
-
* [Api set: WordApi]
|
|
91106
|
+
* [Api set: WordApi 1.3]
|
|
90932
91107
|
*/
|
|
90933
91108
|
caption = "Caption",
|
|
90934
91109
|
/**
|
|
90935
91110
|
* @remarks
|
|
90936
|
-
* [Api set: WordApi]
|
|
91111
|
+
* [Api set: WordApi 1.3]
|
|
90937
91112
|
*/
|
|
90938
91113
|
footnoteReference = "FootnoteReference",
|
|
90939
91114
|
/**
|
|
90940
91115
|
* @remarks
|
|
90941
|
-
* [Api set: WordApi]
|
|
91116
|
+
* [Api set: WordApi 1.3]
|
|
90942
91117
|
*/
|
|
90943
91118
|
endnoteReference = "EndnoteReference",
|
|
90944
91119
|
/**
|
|
90945
91120
|
* @remarks
|
|
90946
|
-
* [Api set: WordApi]
|
|
91121
|
+
* [Api set: WordApi 1.3]
|
|
90947
91122
|
*/
|
|
90948
91123
|
endnoteText = "EndnoteText",
|
|
90949
91124
|
/**
|
|
90950
91125
|
* @remarks
|
|
90951
|
-
* [Api set: WordApi]
|
|
91126
|
+
* [Api set: WordApi 1.3]
|
|
90952
91127
|
*/
|
|
90953
91128
|
title = "Title",
|
|
90954
91129
|
/**
|
|
90955
91130
|
* @remarks
|
|
90956
|
-
* [Api set: WordApi]
|
|
91131
|
+
* [Api set: WordApi 1.3]
|
|
90957
91132
|
*/
|
|
90958
91133
|
subtitle = "Subtitle",
|
|
90959
91134
|
/**
|
|
90960
91135
|
* @remarks
|
|
90961
|
-
* [Api set: WordApi]
|
|
91136
|
+
* [Api set: WordApi 1.3]
|
|
90962
91137
|
*/
|
|
90963
91138
|
hyperlink = "Hyperlink",
|
|
90964
91139
|
/**
|
|
90965
91140
|
* @remarks
|
|
90966
|
-
* [Api set: WordApi]
|
|
91141
|
+
* [Api set: WordApi 1.3]
|
|
90967
91142
|
*/
|
|
90968
91143
|
strong = "Strong",
|
|
90969
91144
|
/**
|
|
90970
91145
|
* @remarks
|
|
90971
|
-
* [Api set: WordApi]
|
|
91146
|
+
* [Api set: WordApi 1.3]
|
|
90972
91147
|
*/
|
|
90973
91148
|
emphasis = "Emphasis",
|
|
90974
91149
|
/**
|
|
90975
91150
|
* @remarks
|
|
90976
|
-
* [Api set: WordApi]
|
|
91151
|
+
* [Api set: WordApi 1.3]
|
|
90977
91152
|
*/
|
|
90978
91153
|
noSpacing = "NoSpacing",
|
|
90979
91154
|
/**
|
|
90980
91155
|
* @remarks
|
|
90981
|
-
* [Api set: WordApi]
|
|
91156
|
+
* [Api set: WordApi 1.3]
|
|
90982
91157
|
*/
|
|
90983
91158
|
listParagraph = "ListParagraph",
|
|
90984
91159
|
/**
|
|
90985
91160
|
* @remarks
|
|
90986
|
-
* [Api set: WordApi]
|
|
91161
|
+
* [Api set: WordApi 1.3]
|
|
90987
91162
|
*/
|
|
90988
91163
|
quote = "Quote",
|
|
90989
91164
|
/**
|
|
90990
91165
|
* @remarks
|
|
90991
|
-
* [Api set: WordApi]
|
|
91166
|
+
* [Api set: WordApi 1.3]
|
|
90992
91167
|
*/
|
|
90993
91168
|
intenseQuote = "IntenseQuote",
|
|
90994
91169
|
/**
|
|
90995
91170
|
* @remarks
|
|
90996
|
-
* [Api set: WordApi]
|
|
91171
|
+
* [Api set: WordApi 1.3]
|
|
90997
91172
|
*/
|
|
90998
91173
|
subtleEmphasis = "SubtleEmphasis",
|
|
90999
91174
|
/**
|
|
91000
91175
|
* @remarks
|
|
91001
|
-
* [Api set: WordApi]
|
|
91176
|
+
* [Api set: WordApi 1.3]
|
|
91002
91177
|
*/
|
|
91003
91178
|
intenseEmphasis = "IntenseEmphasis",
|
|
91004
91179
|
/**
|
|
91005
91180
|
* @remarks
|
|
91006
|
-
* [Api set: WordApi]
|
|
91181
|
+
* [Api set: WordApi 1.3]
|
|
91007
91182
|
*/
|
|
91008
91183
|
subtleReference = "SubtleReference",
|
|
91009
91184
|
/**
|
|
91010
91185
|
* @remarks
|
|
91011
|
-
* [Api set: WordApi]
|
|
91186
|
+
* [Api set: WordApi 1.3]
|
|
91012
91187
|
*/
|
|
91013
91188
|
intenseReference = "IntenseReference",
|
|
91014
91189
|
/**
|
|
91015
91190
|
* @remarks
|
|
91016
|
-
* [Api set: WordApi]
|
|
91191
|
+
* [Api set: WordApi 1.3]
|
|
91017
91192
|
*/
|
|
91018
91193
|
bookTitle = "BookTitle",
|
|
91019
91194
|
/**
|
|
91020
91195
|
* @remarks
|
|
91021
|
-
* [Api set: WordApi]
|
|
91196
|
+
* [Api set: WordApi 1.3]
|
|
91022
91197
|
*/
|
|
91023
91198
|
bibliography = "Bibliography",
|
|
91024
91199
|
/**
|
|
91025
91200
|
* Table-of-content heading.
|
|
91026
91201
|
* @remarks
|
|
91027
|
-
* [Api set: WordApi]
|
|
91202
|
+
* [Api set: WordApi 1.3]
|
|
91028
91203
|
*/
|
|
91029
91204
|
tocHeading = "TocHeading",
|
|
91030
91205
|
/**
|
|
91031
91206
|
* @remarks
|
|
91032
|
-
* [Api set: WordApi]
|
|
91207
|
+
* [Api set: WordApi 1.3]
|
|
91033
91208
|
*/
|
|
91034
91209
|
tableGrid = "TableGrid",
|
|
91035
91210
|
/**
|
|
91036
91211
|
* @remarks
|
|
91037
|
-
* [Api set: WordApi]
|
|
91212
|
+
* [Api set: WordApi 1.3]
|
|
91038
91213
|
*/
|
|
91039
91214
|
plainTable1 = "PlainTable1",
|
|
91040
91215
|
/**
|
|
91041
91216
|
* @remarks
|
|
91042
|
-
* [Api set: WordApi]
|
|
91217
|
+
* [Api set: WordApi 1.3]
|
|
91043
91218
|
*/
|
|
91044
91219
|
plainTable2 = "PlainTable2",
|
|
91045
91220
|
/**
|
|
91046
91221
|
* @remarks
|
|
91047
|
-
* [Api set: WordApi]
|
|
91222
|
+
* [Api set: WordApi 1.3]
|
|
91048
91223
|
*/
|
|
91049
91224
|
plainTable3 = "PlainTable3",
|
|
91050
91225
|
/**
|
|
91051
91226
|
* @remarks
|
|
91052
|
-
* [Api set: WordApi]
|
|
91227
|
+
* [Api set: WordApi 1.3]
|
|
91053
91228
|
*/
|
|
91054
91229
|
plainTable4 = "PlainTable4",
|
|
91055
91230
|
/**
|
|
91056
91231
|
* @remarks
|
|
91057
|
-
* [Api set: WordApi]
|
|
91232
|
+
* [Api set: WordApi 1.3]
|
|
91058
91233
|
*/
|
|
91059
91234
|
plainTable5 = "PlainTable5",
|
|
91060
91235
|
/**
|
|
91061
91236
|
* @remarks
|
|
91062
|
-
* [Api set: WordApi]
|
|
91237
|
+
* [Api set: WordApi 1.3]
|
|
91063
91238
|
*/
|
|
91064
91239
|
tableGridLight = "TableGridLight",
|
|
91065
91240
|
/**
|
|
91066
91241
|
* @remarks
|
|
91067
|
-
* [Api set: WordApi]
|
|
91242
|
+
* [Api set: WordApi 1.3]
|
|
91068
91243
|
*/
|
|
91069
91244
|
gridTable1Light = "GridTable1Light",
|
|
91070
91245
|
/**
|
|
91071
91246
|
* @remarks
|
|
91072
|
-
* [Api set: WordApi]
|
|
91247
|
+
* [Api set: WordApi 1.3]
|
|
91073
91248
|
*/
|
|
91074
91249
|
gridTable1Light_Accent1 = "GridTable1Light_Accent1",
|
|
91075
91250
|
/**
|
|
91076
91251
|
* @remarks
|
|
91077
|
-
* [Api set: WordApi]
|
|
91252
|
+
* [Api set: WordApi 1.3]
|
|
91078
91253
|
*/
|
|
91079
91254
|
gridTable1Light_Accent2 = "GridTable1Light_Accent2",
|
|
91080
91255
|
/**
|
|
91081
91256
|
* @remarks
|
|
91082
|
-
* [Api set: WordApi]
|
|
91257
|
+
* [Api set: WordApi 1.3]
|
|
91083
91258
|
*/
|
|
91084
91259
|
gridTable1Light_Accent3 = "GridTable1Light_Accent3",
|
|
91085
91260
|
/**
|
|
91086
91261
|
* @remarks
|
|
91087
|
-
* [Api set: WordApi]
|
|
91262
|
+
* [Api set: WordApi 1.3]
|
|
91088
91263
|
*/
|
|
91089
91264
|
gridTable1Light_Accent4 = "GridTable1Light_Accent4",
|
|
91090
91265
|
/**
|
|
91091
91266
|
* @remarks
|
|
91092
|
-
* [Api set: WordApi]
|
|
91267
|
+
* [Api set: WordApi 1.3]
|
|
91093
91268
|
*/
|
|
91094
91269
|
gridTable1Light_Accent5 = "GridTable1Light_Accent5",
|
|
91095
91270
|
/**
|
|
91096
91271
|
* @remarks
|
|
91097
|
-
* [Api set: WordApi]
|
|
91272
|
+
* [Api set: WordApi 1.3]
|
|
91098
91273
|
*/
|
|
91099
91274
|
gridTable1Light_Accent6 = "GridTable1Light_Accent6",
|
|
91100
91275
|
/**
|
|
91101
91276
|
* @remarks
|
|
91102
|
-
* [Api set: WordApi]
|
|
91277
|
+
* [Api set: WordApi 1.3]
|
|
91103
91278
|
*/
|
|
91104
91279
|
gridTable2 = "GridTable2",
|
|
91105
91280
|
/**
|
|
91106
91281
|
* @remarks
|
|
91107
|
-
* [Api set: WordApi]
|
|
91282
|
+
* [Api set: WordApi 1.3]
|
|
91108
91283
|
*/
|
|
91109
91284
|
gridTable2_Accent1 = "GridTable2_Accent1",
|
|
91110
91285
|
/**
|
|
91111
91286
|
* @remarks
|
|
91112
|
-
* [Api set: WordApi]
|
|
91287
|
+
* [Api set: WordApi 1.3]
|
|
91113
91288
|
*/
|
|
91114
91289
|
gridTable2_Accent2 = "GridTable2_Accent2",
|
|
91115
91290
|
/**
|
|
91116
91291
|
* @remarks
|
|
91117
|
-
* [Api set: WordApi]
|
|
91292
|
+
* [Api set: WordApi 1.3]
|
|
91118
91293
|
*/
|
|
91119
91294
|
gridTable2_Accent3 = "GridTable2_Accent3",
|
|
91120
91295
|
/**
|
|
91121
91296
|
* @remarks
|
|
91122
|
-
* [Api set: WordApi]
|
|
91297
|
+
* [Api set: WordApi 1.3]
|
|
91123
91298
|
*/
|
|
91124
91299
|
gridTable2_Accent4 = "GridTable2_Accent4",
|
|
91125
91300
|
/**
|
|
91126
91301
|
* @remarks
|
|
91127
|
-
* [Api set: WordApi]
|
|
91302
|
+
* [Api set: WordApi 1.3]
|
|
91128
91303
|
*/
|
|
91129
91304
|
gridTable2_Accent5 = "GridTable2_Accent5",
|
|
91130
91305
|
/**
|
|
91131
91306
|
* @remarks
|
|
91132
|
-
* [Api set: WordApi]
|
|
91307
|
+
* [Api set: WordApi 1.3]
|
|
91133
91308
|
*/
|
|
91134
91309
|
gridTable2_Accent6 = "GridTable2_Accent6",
|
|
91135
91310
|
/**
|
|
91136
91311
|
* @remarks
|
|
91137
|
-
* [Api set: WordApi]
|
|
91312
|
+
* [Api set: WordApi 1.3]
|
|
91138
91313
|
*/
|
|
91139
91314
|
gridTable3 = "GridTable3",
|
|
91140
91315
|
/**
|
|
91141
91316
|
* @remarks
|
|
91142
|
-
* [Api set: WordApi]
|
|
91317
|
+
* [Api set: WordApi 1.3]
|
|
91143
91318
|
*/
|
|
91144
91319
|
gridTable3_Accent1 = "GridTable3_Accent1",
|
|
91145
91320
|
/**
|
|
91146
91321
|
* @remarks
|
|
91147
|
-
* [Api set: WordApi]
|
|
91322
|
+
* [Api set: WordApi 1.3]
|
|
91148
91323
|
*/
|
|
91149
91324
|
gridTable3_Accent2 = "GridTable3_Accent2",
|
|
91150
91325
|
/**
|
|
91151
91326
|
* @remarks
|
|
91152
|
-
* [Api set: WordApi]
|
|
91327
|
+
* [Api set: WordApi 1.3]
|
|
91153
91328
|
*/
|
|
91154
91329
|
gridTable3_Accent3 = "GridTable3_Accent3",
|
|
91155
91330
|
/**
|
|
91156
91331
|
* @remarks
|
|
91157
|
-
* [Api set: WordApi]
|
|
91332
|
+
* [Api set: WordApi 1.3]
|
|
91158
91333
|
*/
|
|
91159
91334
|
gridTable3_Accent4 = "GridTable3_Accent4",
|
|
91160
91335
|
/**
|
|
91161
91336
|
* @remarks
|
|
91162
|
-
* [Api set: WordApi]
|
|
91337
|
+
* [Api set: WordApi 1.3]
|
|
91163
91338
|
*/
|
|
91164
91339
|
gridTable3_Accent5 = "GridTable3_Accent5",
|
|
91165
91340
|
/**
|
|
91166
91341
|
* @remarks
|
|
91167
|
-
* [Api set: WordApi]
|
|
91342
|
+
* [Api set: WordApi 1.3]
|
|
91168
91343
|
*/
|
|
91169
91344
|
gridTable3_Accent6 = "GridTable3_Accent6",
|
|
91170
91345
|
/**
|
|
91171
91346
|
* @remarks
|
|
91172
|
-
* [Api set: WordApi]
|
|
91347
|
+
* [Api set: WordApi 1.3]
|
|
91173
91348
|
*/
|
|
91174
91349
|
gridTable4 = "GridTable4",
|
|
91175
91350
|
/**
|
|
91176
91351
|
* @remarks
|
|
91177
|
-
* [Api set: WordApi]
|
|
91352
|
+
* [Api set: WordApi 1.3]
|
|
91178
91353
|
*/
|
|
91179
91354
|
gridTable4_Accent1 = "GridTable4_Accent1",
|
|
91180
91355
|
/**
|
|
91181
91356
|
* @remarks
|
|
91182
|
-
* [Api set: WordApi]
|
|
91357
|
+
* [Api set: WordApi 1.3]
|
|
91183
91358
|
*/
|
|
91184
91359
|
gridTable4_Accent2 = "GridTable4_Accent2",
|
|
91185
91360
|
/**
|
|
91186
91361
|
* @remarks
|
|
91187
|
-
* [Api set: WordApi]
|
|
91362
|
+
* [Api set: WordApi 1.3]
|
|
91188
91363
|
*/
|
|
91189
91364
|
gridTable4_Accent3 = "GridTable4_Accent3",
|
|
91190
91365
|
/**
|
|
91191
91366
|
* @remarks
|
|
91192
|
-
* [Api set: WordApi]
|
|
91367
|
+
* [Api set: WordApi 1.3]
|
|
91193
91368
|
*/
|
|
91194
91369
|
gridTable4_Accent4 = "GridTable4_Accent4",
|
|
91195
91370
|
/**
|
|
91196
91371
|
* @remarks
|
|
91197
|
-
* [Api set: WordApi]
|
|
91372
|
+
* [Api set: WordApi 1.3]
|
|
91198
91373
|
*/
|
|
91199
91374
|
gridTable4_Accent5 = "GridTable4_Accent5",
|
|
91200
91375
|
/**
|
|
91201
91376
|
* @remarks
|
|
91202
|
-
* [Api set: WordApi]
|
|
91377
|
+
* [Api set: WordApi 1.3]
|
|
91203
91378
|
*/
|
|
91204
91379
|
gridTable4_Accent6 = "GridTable4_Accent6",
|
|
91205
91380
|
/**
|
|
91206
91381
|
* @remarks
|
|
91207
|
-
* [Api set: WordApi]
|
|
91382
|
+
* [Api set: WordApi 1.3]
|
|
91208
91383
|
*/
|
|
91209
91384
|
gridTable5Dark = "GridTable5Dark",
|
|
91210
91385
|
/**
|
|
91211
91386
|
* @remarks
|
|
91212
|
-
* [Api set: WordApi]
|
|
91387
|
+
* [Api set: WordApi 1.3]
|
|
91213
91388
|
*/
|
|
91214
91389
|
gridTable5Dark_Accent1 = "GridTable5Dark_Accent1",
|
|
91215
91390
|
/**
|
|
91216
91391
|
* @remarks
|
|
91217
|
-
* [Api set: WordApi]
|
|
91392
|
+
* [Api set: WordApi 1.3]
|
|
91218
91393
|
*/
|
|
91219
91394
|
gridTable5Dark_Accent2 = "GridTable5Dark_Accent2",
|
|
91220
91395
|
/**
|
|
91221
91396
|
* @remarks
|
|
91222
|
-
* [Api set: WordApi]
|
|
91397
|
+
* [Api set: WordApi 1.3]
|
|
91223
91398
|
*/
|
|
91224
91399
|
gridTable5Dark_Accent3 = "GridTable5Dark_Accent3",
|
|
91225
91400
|
/**
|
|
91226
91401
|
* @remarks
|
|
91227
|
-
* [Api set: WordApi]
|
|
91402
|
+
* [Api set: WordApi 1.3]
|
|
91228
91403
|
*/
|
|
91229
91404
|
gridTable5Dark_Accent4 = "GridTable5Dark_Accent4",
|
|
91230
91405
|
/**
|
|
91231
91406
|
* @remarks
|
|
91232
|
-
* [Api set: WordApi]
|
|
91407
|
+
* [Api set: WordApi 1.3]
|
|
91233
91408
|
*/
|
|
91234
91409
|
gridTable5Dark_Accent5 = "GridTable5Dark_Accent5",
|
|
91235
91410
|
/**
|
|
91236
91411
|
* @remarks
|
|
91237
|
-
* [Api set: WordApi]
|
|
91412
|
+
* [Api set: WordApi 1.3]
|
|
91238
91413
|
*/
|
|
91239
91414
|
gridTable5Dark_Accent6 = "GridTable5Dark_Accent6",
|
|
91240
91415
|
/**
|
|
91241
91416
|
* @remarks
|
|
91242
|
-
* [Api set: WordApi]
|
|
91417
|
+
* [Api set: WordApi 1.3]
|
|
91243
91418
|
*/
|
|
91244
91419
|
gridTable6Colorful = "GridTable6Colorful",
|
|
91245
91420
|
/**
|
|
91246
91421
|
* @remarks
|
|
91247
|
-
* [Api set: WordApi]
|
|
91422
|
+
* [Api set: WordApi 1.3]
|
|
91248
91423
|
*/
|
|
91249
91424
|
gridTable6Colorful_Accent1 = "GridTable6Colorful_Accent1",
|
|
91250
91425
|
/**
|
|
91251
91426
|
* @remarks
|
|
91252
|
-
* [Api set: WordApi]
|
|
91427
|
+
* [Api set: WordApi 1.3]
|
|
91253
91428
|
*/
|
|
91254
91429
|
gridTable6Colorful_Accent2 = "GridTable6Colorful_Accent2",
|
|
91255
91430
|
/**
|
|
91256
91431
|
* @remarks
|
|
91257
|
-
* [Api set: WordApi]
|
|
91432
|
+
* [Api set: WordApi 1.3]
|
|
91258
91433
|
*/
|
|
91259
91434
|
gridTable6Colorful_Accent3 = "GridTable6Colorful_Accent3",
|
|
91260
91435
|
/**
|
|
91261
91436
|
* @remarks
|
|
91262
|
-
* [Api set: WordApi]
|
|
91437
|
+
* [Api set: WordApi 1.3]
|
|
91263
91438
|
*/
|
|
91264
91439
|
gridTable6Colorful_Accent4 = "GridTable6Colorful_Accent4",
|
|
91265
91440
|
/**
|
|
91266
91441
|
* @remarks
|
|
91267
|
-
* [Api set: WordApi]
|
|
91442
|
+
* [Api set: WordApi 1.3]
|
|
91268
91443
|
*/
|
|
91269
91444
|
gridTable6Colorful_Accent5 = "GridTable6Colorful_Accent5",
|
|
91270
91445
|
/**
|
|
91271
91446
|
* @remarks
|
|
91272
|
-
* [Api set: WordApi]
|
|
91447
|
+
* [Api set: WordApi 1.3]
|
|
91273
91448
|
*/
|
|
91274
91449
|
gridTable6Colorful_Accent6 = "GridTable6Colorful_Accent6",
|
|
91275
91450
|
/**
|
|
91276
91451
|
* @remarks
|
|
91277
|
-
* [Api set: WordApi]
|
|
91452
|
+
* [Api set: WordApi 1.3]
|
|
91278
91453
|
*/
|
|
91279
91454
|
gridTable7Colorful = "GridTable7Colorful",
|
|
91280
91455
|
/**
|
|
91281
91456
|
* @remarks
|
|
91282
|
-
* [Api set: WordApi]
|
|
91457
|
+
* [Api set: WordApi 1.3]
|
|
91283
91458
|
*/
|
|
91284
91459
|
gridTable7Colorful_Accent1 = "GridTable7Colorful_Accent1",
|
|
91285
91460
|
/**
|
|
91286
91461
|
* @remarks
|
|
91287
|
-
* [Api set: WordApi]
|
|
91462
|
+
* [Api set: WordApi 1.3]
|
|
91288
91463
|
*/
|
|
91289
91464
|
gridTable7Colorful_Accent2 = "GridTable7Colorful_Accent2",
|
|
91290
91465
|
/**
|
|
91291
91466
|
* @remarks
|
|
91292
|
-
* [Api set: WordApi]
|
|
91467
|
+
* [Api set: WordApi 1.3]
|
|
91293
91468
|
*/
|
|
91294
91469
|
gridTable7Colorful_Accent3 = "GridTable7Colorful_Accent3",
|
|
91295
91470
|
/**
|
|
91296
91471
|
* @remarks
|
|
91297
|
-
* [Api set: WordApi]
|
|
91472
|
+
* [Api set: WordApi 1.3]
|
|
91298
91473
|
*/
|
|
91299
91474
|
gridTable7Colorful_Accent4 = "GridTable7Colorful_Accent4",
|
|
91300
91475
|
/**
|
|
91301
91476
|
* @remarks
|
|
91302
|
-
* [Api set: WordApi]
|
|
91477
|
+
* [Api set: WordApi 1.3]
|
|
91303
91478
|
*/
|
|
91304
91479
|
gridTable7Colorful_Accent5 = "GridTable7Colorful_Accent5",
|
|
91305
91480
|
/**
|
|
91306
91481
|
* @remarks
|
|
91307
|
-
* [Api set: WordApi]
|
|
91482
|
+
* [Api set: WordApi 1.3]
|
|
91308
91483
|
*/
|
|
91309
91484
|
gridTable7Colorful_Accent6 = "GridTable7Colorful_Accent6",
|
|
91310
91485
|
/**
|
|
91311
91486
|
* @remarks
|
|
91312
|
-
* [Api set: WordApi]
|
|
91487
|
+
* [Api set: WordApi 1.3]
|
|
91313
91488
|
*/
|
|
91314
91489
|
listTable1Light = "ListTable1Light",
|
|
91315
91490
|
/**
|
|
91316
91491
|
* @remarks
|
|
91317
|
-
* [Api set: WordApi]
|
|
91492
|
+
* [Api set: WordApi 1.3]
|
|
91318
91493
|
*/
|
|
91319
91494
|
listTable1Light_Accent1 = "ListTable1Light_Accent1",
|
|
91320
91495
|
/**
|
|
91321
91496
|
* @remarks
|
|
91322
|
-
* [Api set: WordApi]
|
|
91497
|
+
* [Api set: WordApi 1.3]
|
|
91323
91498
|
*/
|
|
91324
91499
|
listTable1Light_Accent2 = "ListTable1Light_Accent2",
|
|
91325
91500
|
/**
|
|
91326
91501
|
* @remarks
|
|
91327
|
-
* [Api set: WordApi]
|
|
91502
|
+
* [Api set: WordApi 1.3]
|
|
91328
91503
|
*/
|
|
91329
91504
|
listTable1Light_Accent3 = "ListTable1Light_Accent3",
|
|
91330
91505
|
/**
|
|
91331
91506
|
* @remarks
|
|
91332
|
-
* [Api set: WordApi]
|
|
91507
|
+
* [Api set: WordApi 1.3]
|
|
91333
91508
|
*/
|
|
91334
91509
|
listTable1Light_Accent4 = "ListTable1Light_Accent4",
|
|
91335
91510
|
/**
|
|
91336
91511
|
* @remarks
|
|
91337
|
-
* [Api set: WordApi]
|
|
91512
|
+
* [Api set: WordApi 1.3]
|
|
91338
91513
|
*/
|
|
91339
91514
|
listTable1Light_Accent5 = "ListTable1Light_Accent5",
|
|
91340
91515
|
/**
|
|
91341
91516
|
* @remarks
|
|
91342
|
-
* [Api set: WordApi]
|
|
91517
|
+
* [Api set: WordApi 1.3]
|
|
91343
91518
|
*/
|
|
91344
91519
|
listTable1Light_Accent6 = "ListTable1Light_Accent6",
|
|
91345
91520
|
/**
|
|
91346
91521
|
* @remarks
|
|
91347
|
-
* [Api set: WordApi]
|
|
91522
|
+
* [Api set: WordApi 1.3]
|
|
91348
91523
|
*/
|
|
91349
91524
|
listTable2 = "ListTable2",
|
|
91350
91525
|
/**
|
|
91351
91526
|
* @remarks
|
|
91352
|
-
* [Api set: WordApi]
|
|
91527
|
+
* [Api set: WordApi 1.3]
|
|
91353
91528
|
*/
|
|
91354
91529
|
listTable2_Accent1 = "ListTable2_Accent1",
|
|
91355
91530
|
/**
|
|
91356
91531
|
* @remarks
|
|
91357
|
-
* [Api set: WordApi]
|
|
91532
|
+
* [Api set: WordApi 1.3]
|
|
91358
91533
|
*/
|
|
91359
91534
|
listTable2_Accent2 = "ListTable2_Accent2",
|
|
91360
91535
|
/**
|
|
91361
91536
|
* @remarks
|
|
91362
|
-
* [Api set: WordApi]
|
|
91537
|
+
* [Api set: WordApi 1.3]
|
|
91363
91538
|
*/
|
|
91364
91539
|
listTable2_Accent3 = "ListTable2_Accent3",
|
|
91365
91540
|
/**
|
|
91366
91541
|
* @remarks
|
|
91367
|
-
* [Api set: WordApi]
|
|
91542
|
+
* [Api set: WordApi 1.3]
|
|
91368
91543
|
*/
|
|
91369
91544
|
listTable2_Accent4 = "ListTable2_Accent4",
|
|
91370
91545
|
/**
|
|
91371
91546
|
* @remarks
|
|
91372
|
-
* [Api set: WordApi]
|
|
91547
|
+
* [Api set: WordApi 1.3]
|
|
91373
91548
|
*/
|
|
91374
91549
|
listTable2_Accent5 = "ListTable2_Accent5",
|
|
91375
91550
|
/**
|
|
91376
91551
|
* @remarks
|
|
91377
|
-
* [Api set: WordApi]
|
|
91552
|
+
* [Api set: WordApi 1.3]
|
|
91378
91553
|
*/
|
|
91379
91554
|
listTable2_Accent6 = "ListTable2_Accent6",
|
|
91380
91555
|
/**
|
|
91381
91556
|
* @remarks
|
|
91382
|
-
* [Api set: WordApi]
|
|
91557
|
+
* [Api set: WordApi 1.3]
|
|
91383
91558
|
*/
|
|
91384
91559
|
listTable3 = "ListTable3",
|
|
91385
91560
|
/**
|
|
91386
91561
|
* @remarks
|
|
91387
|
-
* [Api set: WordApi]
|
|
91562
|
+
* [Api set: WordApi 1.3]
|
|
91388
91563
|
*/
|
|
91389
91564
|
listTable3_Accent1 = "ListTable3_Accent1",
|
|
91390
91565
|
/**
|
|
91391
91566
|
* @remarks
|
|
91392
|
-
* [Api set: WordApi]
|
|
91567
|
+
* [Api set: WordApi 1.3]
|
|
91393
91568
|
*/
|
|
91394
91569
|
listTable3_Accent2 = "ListTable3_Accent2",
|
|
91395
91570
|
/**
|
|
91396
91571
|
* @remarks
|
|
91397
|
-
* [Api set: WordApi]
|
|
91572
|
+
* [Api set: WordApi 1.3]
|
|
91398
91573
|
*/
|
|
91399
91574
|
listTable3_Accent3 = "ListTable3_Accent3",
|
|
91400
91575
|
/**
|
|
91401
91576
|
* @remarks
|
|
91402
|
-
* [Api set: WordApi]
|
|
91577
|
+
* [Api set: WordApi 1.3]
|
|
91403
91578
|
*/
|
|
91404
91579
|
listTable3_Accent4 = "ListTable3_Accent4",
|
|
91405
91580
|
/**
|
|
91406
91581
|
* @remarks
|
|
91407
|
-
* [Api set: WordApi]
|
|
91582
|
+
* [Api set: WordApi 1.3]
|
|
91408
91583
|
*/
|
|
91409
91584
|
listTable3_Accent5 = "ListTable3_Accent5",
|
|
91410
91585
|
/**
|
|
91411
91586
|
* @remarks
|
|
91412
|
-
* [Api set: WordApi]
|
|
91587
|
+
* [Api set: WordApi 1.3]
|
|
91413
91588
|
*/
|
|
91414
91589
|
listTable3_Accent6 = "ListTable3_Accent6",
|
|
91415
91590
|
/**
|
|
91416
91591
|
* @remarks
|
|
91417
|
-
* [Api set: WordApi]
|
|
91592
|
+
* [Api set: WordApi 1.3]
|
|
91418
91593
|
*/
|
|
91419
91594
|
listTable4 = "ListTable4",
|
|
91420
91595
|
/**
|
|
91421
91596
|
* @remarks
|
|
91422
|
-
* [Api set: WordApi]
|
|
91597
|
+
* [Api set: WordApi 1.3]
|
|
91423
91598
|
*/
|
|
91424
91599
|
listTable4_Accent1 = "ListTable4_Accent1",
|
|
91425
91600
|
/**
|
|
91426
91601
|
* @remarks
|
|
91427
|
-
* [Api set: WordApi]
|
|
91602
|
+
* [Api set: WordApi 1.3]
|
|
91428
91603
|
*/
|
|
91429
91604
|
listTable4_Accent2 = "ListTable4_Accent2",
|
|
91430
91605
|
/**
|
|
91431
91606
|
* @remarks
|
|
91432
|
-
* [Api set: WordApi]
|
|
91607
|
+
* [Api set: WordApi 1.3]
|
|
91433
91608
|
*/
|
|
91434
91609
|
listTable4_Accent3 = "ListTable4_Accent3",
|
|
91435
91610
|
/**
|
|
91436
91611
|
* @remarks
|
|
91437
|
-
* [Api set: WordApi]
|
|
91612
|
+
* [Api set: WordApi 1.3]
|
|
91438
91613
|
*/
|
|
91439
91614
|
listTable4_Accent4 = "ListTable4_Accent4",
|
|
91440
91615
|
/**
|
|
91441
91616
|
* @remarks
|
|
91442
|
-
* [Api set: WordApi]
|
|
91617
|
+
* [Api set: WordApi 1.3]
|
|
91443
91618
|
*/
|
|
91444
91619
|
listTable4_Accent5 = "ListTable4_Accent5",
|
|
91445
91620
|
/**
|
|
91446
91621
|
* @remarks
|
|
91447
|
-
* [Api set: WordApi]
|
|
91622
|
+
* [Api set: WordApi 1.3]
|
|
91448
91623
|
*/
|
|
91449
91624
|
listTable4_Accent6 = "ListTable4_Accent6",
|
|
91450
91625
|
/**
|
|
91451
91626
|
* @remarks
|
|
91452
|
-
* [Api set: WordApi]
|
|
91627
|
+
* [Api set: WordApi 1.3]
|
|
91453
91628
|
*/
|
|
91454
91629
|
listTable5Dark = "ListTable5Dark",
|
|
91455
91630
|
/**
|
|
91456
91631
|
* @remarks
|
|
91457
|
-
* [Api set: WordApi]
|
|
91632
|
+
* [Api set: WordApi 1.3]
|
|
91458
91633
|
*/
|
|
91459
91634
|
listTable5Dark_Accent1 = "ListTable5Dark_Accent1",
|
|
91460
91635
|
/**
|
|
91461
91636
|
* @remarks
|
|
91462
|
-
* [Api set: WordApi]
|
|
91637
|
+
* [Api set: WordApi 1.3]
|
|
91463
91638
|
*/
|
|
91464
91639
|
listTable5Dark_Accent2 = "ListTable5Dark_Accent2",
|
|
91465
91640
|
/**
|
|
91466
91641
|
* @remarks
|
|
91467
|
-
* [Api set: WordApi]
|
|
91642
|
+
* [Api set: WordApi 1.3]
|
|
91468
91643
|
*/
|
|
91469
91644
|
listTable5Dark_Accent3 = "ListTable5Dark_Accent3",
|
|
91470
91645
|
/**
|
|
91471
91646
|
* @remarks
|
|
91472
|
-
* [Api set: WordApi]
|
|
91647
|
+
* [Api set: WordApi 1.3]
|
|
91473
91648
|
*/
|
|
91474
91649
|
listTable5Dark_Accent4 = "ListTable5Dark_Accent4",
|
|
91475
91650
|
/**
|
|
91476
91651
|
* @remarks
|
|
91477
|
-
* [Api set: WordApi]
|
|
91652
|
+
* [Api set: WordApi 1.3]
|
|
91478
91653
|
*/
|
|
91479
91654
|
listTable5Dark_Accent5 = "ListTable5Dark_Accent5",
|
|
91480
91655
|
/**
|
|
91481
91656
|
* @remarks
|
|
91482
|
-
* [Api set: WordApi]
|
|
91657
|
+
* [Api set: WordApi 1.3]
|
|
91483
91658
|
*/
|
|
91484
91659
|
listTable5Dark_Accent6 = "ListTable5Dark_Accent6",
|
|
91485
91660
|
/**
|
|
91486
91661
|
* @remarks
|
|
91487
|
-
* [Api set: WordApi]
|
|
91662
|
+
* [Api set: WordApi 1.3]
|
|
91488
91663
|
*/
|
|
91489
91664
|
listTable6Colorful = "ListTable6Colorful",
|
|
91490
91665
|
/**
|
|
91491
91666
|
* @remarks
|
|
91492
|
-
* [Api set: WordApi]
|
|
91667
|
+
* [Api set: WordApi 1.3]
|
|
91493
91668
|
*/
|
|
91494
91669
|
listTable6Colorful_Accent1 = "ListTable6Colorful_Accent1",
|
|
91495
91670
|
/**
|
|
91496
91671
|
* @remarks
|
|
91497
|
-
* [Api set: WordApi]
|
|
91672
|
+
* [Api set: WordApi 1.3]
|
|
91498
91673
|
*/
|
|
91499
91674
|
listTable6Colorful_Accent2 = "ListTable6Colorful_Accent2",
|
|
91500
91675
|
/**
|
|
91501
91676
|
* @remarks
|
|
91502
|
-
* [Api set: WordApi]
|
|
91677
|
+
* [Api set: WordApi 1.3]
|
|
91503
91678
|
*/
|
|
91504
91679
|
listTable6Colorful_Accent3 = "ListTable6Colorful_Accent3",
|
|
91505
91680
|
/**
|
|
91506
91681
|
* @remarks
|
|
91507
|
-
* [Api set: WordApi]
|
|
91682
|
+
* [Api set: WordApi 1.3]
|
|
91508
91683
|
*/
|
|
91509
91684
|
listTable6Colorful_Accent4 = "ListTable6Colorful_Accent4",
|
|
91510
91685
|
/**
|
|
91511
91686
|
* @remarks
|
|
91512
|
-
* [Api set: WordApi]
|
|
91687
|
+
* [Api set: WordApi 1.3]
|
|
91513
91688
|
*/
|
|
91514
91689
|
listTable6Colorful_Accent5 = "ListTable6Colorful_Accent5",
|
|
91515
91690
|
/**
|
|
91516
91691
|
* @remarks
|
|
91517
|
-
* [Api set: WordApi]
|
|
91692
|
+
* [Api set: WordApi 1.3]
|
|
91518
91693
|
*/
|
|
91519
91694
|
listTable6Colorful_Accent6 = "ListTable6Colorful_Accent6",
|
|
91520
91695
|
/**
|
|
91521
91696
|
* @remarks
|
|
91522
|
-
* [Api set: WordApi]
|
|
91697
|
+
* [Api set: WordApi 1.3]
|
|
91523
91698
|
*/
|
|
91524
91699
|
listTable7Colorful = "ListTable7Colorful",
|
|
91525
91700
|
/**
|
|
91526
91701
|
* @remarks
|
|
91527
|
-
* [Api set: WordApi]
|
|
91702
|
+
* [Api set: WordApi 1.3]
|
|
91528
91703
|
*/
|
|
91529
91704
|
listTable7Colorful_Accent1 = "ListTable7Colorful_Accent1",
|
|
91530
91705
|
/**
|
|
91531
91706
|
* @remarks
|
|
91532
|
-
* [Api set: WordApi]
|
|
91707
|
+
* [Api set: WordApi 1.3]
|
|
91533
91708
|
*/
|
|
91534
91709
|
listTable7Colorful_Accent2 = "ListTable7Colorful_Accent2",
|
|
91535
91710
|
/**
|
|
91536
91711
|
* @remarks
|
|
91537
|
-
* [Api set: WordApi]
|
|
91712
|
+
* [Api set: WordApi 1.3]
|
|
91538
91713
|
*/
|
|
91539
91714
|
listTable7Colorful_Accent3 = "ListTable7Colorful_Accent3",
|
|
91540
91715
|
/**
|
|
91541
91716
|
* @remarks
|
|
91542
|
-
* [Api set: WordApi]
|
|
91717
|
+
* [Api set: WordApi 1.3]
|
|
91543
91718
|
*/
|
|
91544
91719
|
listTable7Colorful_Accent4 = "ListTable7Colorful_Accent4",
|
|
91545
91720
|
/**
|
|
91546
91721
|
* @remarks
|
|
91547
|
-
* [Api set: WordApi]
|
|
91722
|
+
* [Api set: WordApi 1.3]
|
|
91548
91723
|
*/
|
|
91549
91724
|
listTable7Colorful_Accent5 = "ListTable7Colorful_Accent5",
|
|
91550
91725
|
/**
|
|
91551
91726
|
* @remarks
|
|
91552
|
-
* [Api set: WordApi]
|
|
91727
|
+
* [Api set: WordApi 1.3]
|
|
91553
91728
|
*/
|
|
91554
91729
|
listTable7Colorful_Accent6 = "ListTable7Colorful_Accent6",
|
|
91555
91730
|
}
|
|
91556
91731
|
/**
|
|
91557
91732
|
* @remarks
|
|
91558
|
-
* [Api set: WordApi]
|
|
91733
|
+
* [Api set: WordApi 1.3]
|
|
91559
91734
|
*/
|
|
91560
91735
|
enum DocumentPropertyType {
|
|
91561
91736
|
/**
|
|
91562
91737
|
* @remarks
|
|
91563
|
-
* [Api set: WordApi]
|
|
91738
|
+
* [Api set: WordApi 1.3]
|
|
91564
91739
|
*/
|
|
91565
91740
|
string = "String",
|
|
91566
91741
|
/**
|
|
91567
91742
|
* @remarks
|
|
91568
|
-
* [Api set: WordApi]
|
|
91743
|
+
* [Api set: WordApi 1.3]
|
|
91569
91744
|
*/
|
|
91570
91745
|
number = "Number",
|
|
91571
91746
|
/**
|
|
91572
91747
|
* @remarks
|
|
91573
|
-
* [Api set: WordApi]
|
|
91748
|
+
* [Api set: WordApi 1.3]
|
|
91574
91749
|
*/
|
|
91575
91750
|
date = "Date",
|
|
91576
91751
|
/**
|
|
91577
91752
|
* @remarks
|
|
91578
|
-
* [Api set: WordApi]
|
|
91753
|
+
* [Api set: WordApi 1.3]
|
|
91579
91754
|
*/
|
|
91580
91755
|
boolean = "Boolean",
|
|
91581
91756
|
}
|
|
91582
|
-
/**
|
|
91583
|
-
* @remarks
|
|
91584
|
-
* [Api set: WordApi]
|
|
91585
|
-
*/
|
|
91586
|
-
enum TapObjectType {
|
|
91587
|
-
/**
|
|
91588
|
-
* @remarks
|
|
91589
|
-
* [Api set: WordApi]
|
|
91590
|
-
*/
|
|
91591
|
-
chart = "Chart",
|
|
91592
|
-
/**
|
|
91593
|
-
* @remarks
|
|
91594
|
-
* [Api set: WordApi]
|
|
91595
|
-
*/
|
|
91596
|
-
smartArt = "SmartArt",
|
|
91597
|
-
/**
|
|
91598
|
-
* @remarks
|
|
91599
|
-
* [Api set: WordApi]
|
|
91600
|
-
*/
|
|
91601
|
-
table = "Table",
|
|
91602
|
-
/**
|
|
91603
|
-
* @remarks
|
|
91604
|
-
* [Api set: WordApi]
|
|
91605
|
-
*/
|
|
91606
|
-
image = "Image",
|
|
91607
|
-
/**
|
|
91608
|
-
* @remarks
|
|
91609
|
-
* [Api set: WordApi]
|
|
91610
|
-
*/
|
|
91611
|
-
slide = "Slide",
|
|
91612
|
-
/**
|
|
91613
|
-
* @remarks
|
|
91614
|
-
* [Api set: WordApi]
|
|
91615
|
-
*/
|
|
91616
|
-
ole = "OLE",
|
|
91617
|
-
/**
|
|
91618
|
-
* @remarks
|
|
91619
|
-
* [Api set: WordApi]
|
|
91620
|
-
*/
|
|
91621
|
-
text = "Text",
|
|
91622
|
-
}
|
|
91623
|
-
/**
|
|
91624
|
-
* @remarks
|
|
91625
|
-
* [Api set: WordApi]
|
|
91626
|
-
*/
|
|
91627
|
-
enum FileContentFormat {
|
|
91628
|
-
/**
|
|
91629
|
-
* @remarks
|
|
91630
|
-
* [Api set: WordApi]
|
|
91631
|
-
*/
|
|
91632
|
-
base64 = "Base64",
|
|
91633
|
-
/**
|
|
91634
|
-
* @remarks
|
|
91635
|
-
* [Api set: WordApi]
|
|
91636
|
-
*/
|
|
91637
|
-
html = "Html",
|
|
91638
|
-
/**
|
|
91639
|
-
* @remarks
|
|
91640
|
-
* [Api set: WordApi]
|
|
91641
|
-
*/
|
|
91642
|
-
ooxml = "Ooxml",
|
|
91643
|
-
}
|
|
91644
91757
|
enum ErrorCodes {
|
|
91645
91758
|
accessDenied = "AccessDenied",
|
|
91646
91759
|
generalException = "GeneralException",
|
|
@@ -91690,6 +91803,14 @@ declare namespace Word {
|
|
|
91690
91803
|
}
|
|
91691
91804
|
/** An interface for updating data on the Comment object, for use in `comment.set({ ... })`. */
|
|
91692
91805
|
interface CommentUpdateData {
|
|
91806
|
+
/**
|
|
91807
|
+
* Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
|
|
91808
|
+
*
|
|
91809
|
+
* @remarks
|
|
91810
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
91811
|
+
* @beta
|
|
91812
|
+
*/
|
|
91813
|
+
contentRange?: Word.Interfaces.CommentContentRangeUpdateData;
|
|
91693
91814
|
/**
|
|
91694
91815
|
* Gets or sets the comment's content as plain text.
|
|
91695
91816
|
*
|
|
@@ -91699,7 +91820,7 @@ declare namespace Word {
|
|
|
91699
91820
|
*/
|
|
91700
91821
|
content?: string;
|
|
91701
91822
|
/**
|
|
91702
|
-
* Gets or sets the comment thread status.
|
|
91823
|
+
* Gets or sets the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
|
|
91703
91824
|
*
|
|
91704
91825
|
* @remarks
|
|
91705
91826
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -91711,8 +91832,59 @@ declare namespace Word {
|
|
|
91711
91832
|
interface CommentCollectionUpdateData {
|
|
91712
91833
|
items?: Word.Interfaces.CommentData[];
|
|
91713
91834
|
}
|
|
91835
|
+
/** An interface for updating data on the CommentContentRange object, for use in `commentContentRange.set({ ... })`. */
|
|
91836
|
+
interface CommentContentRangeUpdateData {
|
|
91837
|
+
/**
|
|
91838
|
+
* Gets or sets a value that indicates whether the comment text is bold.
|
|
91839
|
+
*
|
|
91840
|
+
* @remarks
|
|
91841
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
91842
|
+
* @beta
|
|
91843
|
+
*/
|
|
91844
|
+
bold?: boolean;
|
|
91845
|
+
/**
|
|
91846
|
+
* Gets the first hyperlink in the range, or sets a hyperlink on the range. All hyperlinks in the range are deleted when you set a new hyperlink on the range.
|
|
91847
|
+
*
|
|
91848
|
+
* @remarks
|
|
91849
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
91850
|
+
* @beta
|
|
91851
|
+
*/
|
|
91852
|
+
hyperlink?: string;
|
|
91853
|
+
/**
|
|
91854
|
+
* Gets or sets a value that indicates whether the comment text is italicized.
|
|
91855
|
+
*
|
|
91856
|
+
* @remarks
|
|
91857
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
91858
|
+
* @beta
|
|
91859
|
+
*/
|
|
91860
|
+
italic?: boolean;
|
|
91861
|
+
/**
|
|
91862
|
+
* Gets or sets a value that indicates whether the comment text has a strikethrough.
|
|
91863
|
+
*
|
|
91864
|
+
* @remarks
|
|
91865
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
91866
|
+
* @beta
|
|
91867
|
+
*/
|
|
91868
|
+
strikeThrough?: boolean;
|
|
91869
|
+
/**
|
|
91870
|
+
* Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
|
|
91871
|
+
*
|
|
91872
|
+
* @remarks
|
|
91873
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
91874
|
+
* @beta
|
|
91875
|
+
*/
|
|
91876
|
+
underline?: Word.UnderlineType | "Mixed" | "None" | "Hidden" | "DotLine" | "Single" | "Word" | "Double" | "Thick" | "Dotted" | "DottedHeavy" | "DashLine" | "DashLineHeavy" | "DashLineLong" | "DashLineLongHeavy" | "DotDashLine" | "DotDashLineHeavy" | "TwoDotDashLine" | "TwoDotDashLineHeavy" | "Wave" | "WaveHeavy" | "WaveDouble";
|
|
91877
|
+
}
|
|
91714
91878
|
/** An interface for updating data on the CommentReply object, for use in `commentReply.set({ ... })`. */
|
|
91715
91879
|
interface CommentReplyUpdateData {
|
|
91880
|
+
/**
|
|
91881
|
+
* Gets or sets the commentReply's content range.
|
|
91882
|
+
*
|
|
91883
|
+
* @remarks
|
|
91884
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
91885
|
+
* @beta
|
|
91886
|
+
*/
|
|
91887
|
+
contentRange?: Word.Interfaces.CommentContentRangeUpdateData;
|
|
91716
91888
|
/**
|
|
91717
91889
|
* Gets the parent comment of this reply.
|
|
91718
91890
|
*
|
|
@@ -91870,7 +92042,7 @@ declare namespace Word {
|
|
|
91870
92042
|
/** An interface for updating data on the DocumentCreated object, for use in `documentCreated.set({ ... })`. */
|
|
91871
92043
|
interface DocumentCreatedUpdateData {
|
|
91872
92044
|
/**
|
|
91873
|
-
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc
|
|
92045
|
+
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.
|
|
91874
92046
|
*
|
|
91875
92047
|
* @remarks
|
|
91876
92048
|
* [Api set: WordApiHiddenDocument 1.3]
|
|
@@ -92610,7 +92782,7 @@ declare namespace Word {
|
|
|
92610
92782
|
*/
|
|
92611
92783
|
lists?: Word.Interfaces.ListData[];
|
|
92612
92784
|
/**
|
|
92613
|
-
* Gets the collection of paragraph objects in the body. Read-only.
|
|
92785
|
+
* Gets the collection of paragraph objects in the body. Read-only. **Important**: Paragraphs in tables are not returned for requirement sets 1.1 and 1.2. From requirement set 1.3, paragraphs in tables are also returned.
|
|
92614
92786
|
*
|
|
92615
92787
|
* @remarks
|
|
92616
92788
|
* [Api set: WordApi 1.1]
|
|
@@ -92654,6 +92826,14 @@ declare namespace Word {
|
|
|
92654
92826
|
}
|
|
92655
92827
|
/** An interface describing the data returned by calling `comment.toJSON()`. */
|
|
92656
92828
|
interface CommentData {
|
|
92829
|
+
/**
|
|
92830
|
+
* Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
|
|
92831
|
+
*
|
|
92832
|
+
* @remarks
|
|
92833
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92834
|
+
* @beta
|
|
92835
|
+
*/
|
|
92836
|
+
contentRange?: Word.Interfaces.CommentContentRangeData;
|
|
92657
92837
|
/**
|
|
92658
92838
|
* Gets the collection of reply objects associated with the comment.
|
|
92659
92839
|
*
|
|
@@ -92698,11 +92878,12 @@ declare namespace Word {
|
|
|
92698
92878
|
* ID
|
|
92699
92879
|
*
|
|
92700
92880
|
* @remarks
|
|
92701
|
-
* [Api set:
|
|
92881
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92882
|
+
* @beta
|
|
92702
92883
|
*/
|
|
92703
92884
|
id?: string;
|
|
92704
92885
|
/**
|
|
92705
|
-
* Gets or sets the comment thread status.
|
|
92886
|
+
* Gets or sets the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
|
|
92706
92887
|
*
|
|
92707
92888
|
* @remarks
|
|
92708
92889
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -92714,8 +92895,75 @@ declare namespace Word {
|
|
|
92714
92895
|
interface CommentCollectionData {
|
|
92715
92896
|
items?: Word.Interfaces.CommentData[];
|
|
92716
92897
|
}
|
|
92898
|
+
/** An interface describing the data returned by calling `commentContentRange.toJSON()`. */
|
|
92899
|
+
interface CommentContentRangeData {
|
|
92900
|
+
/**
|
|
92901
|
+
* Gets or sets a value that indicates whether the comment text is bold.
|
|
92902
|
+
*
|
|
92903
|
+
* @remarks
|
|
92904
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92905
|
+
* @beta
|
|
92906
|
+
*/
|
|
92907
|
+
bold?: boolean;
|
|
92908
|
+
/**
|
|
92909
|
+
* Gets the first hyperlink in the range, or sets a hyperlink on the range. All hyperlinks in the range are deleted when you set a new hyperlink on the range.
|
|
92910
|
+
*
|
|
92911
|
+
* @remarks
|
|
92912
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92913
|
+
* @beta
|
|
92914
|
+
*/
|
|
92915
|
+
hyperlink?: string;
|
|
92916
|
+
/**
|
|
92917
|
+
* Checks whether the range length is zero. Read-only.
|
|
92918
|
+
*
|
|
92919
|
+
* @remarks
|
|
92920
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92921
|
+
* @beta
|
|
92922
|
+
*/
|
|
92923
|
+
isEmpty?: boolean;
|
|
92924
|
+
/**
|
|
92925
|
+
* Gets or sets a value that indicates whether the comment text is italicized.
|
|
92926
|
+
*
|
|
92927
|
+
* @remarks
|
|
92928
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92929
|
+
* @beta
|
|
92930
|
+
*/
|
|
92931
|
+
italic?: boolean;
|
|
92932
|
+
/**
|
|
92933
|
+
* Gets or sets a value that indicates whether the comment text has a strikethrough.
|
|
92934
|
+
*
|
|
92935
|
+
* @remarks
|
|
92936
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92937
|
+
* @beta
|
|
92938
|
+
*/
|
|
92939
|
+
strikeThrough?: boolean;
|
|
92940
|
+
/**
|
|
92941
|
+
* Gets the text of the comment range. Read-only.
|
|
92942
|
+
*
|
|
92943
|
+
* @remarks
|
|
92944
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92945
|
+
* @beta
|
|
92946
|
+
*/
|
|
92947
|
+
text?: string;
|
|
92948
|
+
/**
|
|
92949
|
+
* Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
|
|
92950
|
+
*
|
|
92951
|
+
* @remarks
|
|
92952
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92953
|
+
* @beta
|
|
92954
|
+
*/
|
|
92955
|
+
underline?: Word.UnderlineType | "Mixed" | "None" | "Hidden" | "DotLine" | "Single" | "Word" | "Double" | "Thick" | "Dotted" | "DottedHeavy" | "DashLine" | "DashLineHeavy" | "DashLineLong" | "DashLineLongHeavy" | "DotDashLine" | "DotDashLineHeavy" | "TwoDotDashLine" | "TwoDotDashLineHeavy" | "Wave" | "WaveHeavy" | "WaveDouble";
|
|
92956
|
+
}
|
|
92717
92957
|
/** An interface describing the data returned by calling `commentReply.toJSON()`. */
|
|
92718
92958
|
interface CommentReplyData {
|
|
92959
|
+
/**
|
|
92960
|
+
* Gets or sets the commentReply's content range.
|
|
92961
|
+
*
|
|
92962
|
+
* @remarks
|
|
92963
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
92964
|
+
* @beta
|
|
92965
|
+
*/
|
|
92966
|
+
contentRange?: Word.Interfaces.CommentContentRangeData;
|
|
92719
92967
|
/**
|
|
92720
92968
|
* Gets the parent comment of this reply.
|
|
92721
92969
|
*
|
|
@@ -92760,7 +93008,8 @@ declare namespace Word {
|
|
|
92760
93008
|
* ID
|
|
92761
93009
|
*
|
|
92762
93010
|
* @remarks
|
|
92763
|
-
* [Api set:
|
|
93011
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
93012
|
+
* @beta
|
|
92764
93013
|
*/
|
|
92765
93014
|
id?: string;
|
|
92766
93015
|
}
|
|
@@ -92799,7 +93048,7 @@ declare namespace Word {
|
|
|
92799
93048
|
*/
|
|
92800
93049
|
lists?: Word.Interfaces.ListData[];
|
|
92801
93050
|
/**
|
|
92802
|
-
* Get the collection of paragraph objects in the content control. Read-only.
|
|
93051
|
+
* Get the collection of paragraph objects in the content control. Read-only. **Important**: For requirement sets 1.1 and 1.2, paragraphs in tables wholly contained within this content control are not returned. From requirement set 1.3, paragraphs in such tables are also returned.
|
|
92803
93052
|
*
|
|
92804
93053
|
* @remarks
|
|
92805
93054
|
* [Api set: WordApi 1.1]
|
|
@@ -93037,14 +93286,14 @@ declare namespace Word {
|
|
|
93037
93286
|
/** An interface describing the data returned by calling `documentCreated.toJSON()`. */
|
|
93038
93287
|
interface DocumentCreatedData {
|
|
93039
93288
|
/**
|
|
93040
|
-
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc
|
|
93289
|
+
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc. Read-only.
|
|
93041
93290
|
*
|
|
93042
93291
|
* @remarks
|
|
93043
93292
|
* [Api set: WordApiHiddenDocument 1.3]
|
|
93044
93293
|
*/
|
|
93045
93294
|
body?: Word.Interfaces.BodyData;
|
|
93046
93295
|
/**
|
|
93047
|
-
* Gets the collection of content control objects in the document. This includes content controls in the body of the document, headers, footers, textboxes, etc
|
|
93296
|
+
* Gets the collection of content control objects in the document. This includes content controls in the body of the document, headers, footers, textboxes, etc. Read-only.
|
|
93048
93297
|
*
|
|
93049
93298
|
* @remarks
|
|
93050
93299
|
* [Api set: WordApiHiddenDocument 1.3]
|
|
@@ -94156,6 +94405,14 @@ declare namespace Word {
|
|
|
94156
94405
|
Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
|
|
94157
94406
|
*/
|
|
94158
94407
|
$all?: boolean;
|
|
94408
|
+
/**
|
|
94409
|
+
* Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
|
|
94410
|
+
*
|
|
94411
|
+
* @remarks
|
|
94412
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94413
|
+
* @beta
|
|
94414
|
+
*/
|
|
94415
|
+
contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
|
|
94159
94416
|
/**
|
|
94160
94417
|
* Gets the email of the comment's author.
|
|
94161
94418
|
*
|
|
@@ -94192,11 +94449,12 @@ declare namespace Word {
|
|
|
94192
94449
|
* ID
|
|
94193
94450
|
*
|
|
94194
94451
|
* @remarks
|
|
94195
|
-
* [Api set:
|
|
94452
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94453
|
+
* @beta
|
|
94196
94454
|
*/
|
|
94197
94455
|
id?: boolean;
|
|
94198
94456
|
/**
|
|
94199
|
-
* Gets or sets the comment thread status.
|
|
94457
|
+
* Gets or sets the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
|
|
94200
94458
|
*
|
|
94201
94459
|
* @remarks
|
|
94202
94460
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -94205,7 +94463,7 @@ declare namespace Word {
|
|
|
94205
94463
|
resolved?: boolean;
|
|
94206
94464
|
}
|
|
94207
94465
|
/**
|
|
94208
|
-
* Contains a collection of {@link Word.Comment}
|
|
94466
|
+
* Contains a collection of {@link Word.Comment} objects.
|
|
94209
94467
|
*
|
|
94210
94468
|
* @remarks
|
|
94211
94469
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -94216,6 +94474,14 @@ declare namespace Word {
|
|
|
94216
94474
|
Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
|
|
94217
94475
|
*/
|
|
94218
94476
|
$all?: boolean;
|
|
94477
|
+
/**
|
|
94478
|
+
* For EACH ITEM in the collection: Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
|
|
94479
|
+
*
|
|
94480
|
+
* @remarks
|
|
94481
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94482
|
+
* @beta
|
|
94483
|
+
*/
|
|
94484
|
+
contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
|
|
94219
94485
|
/**
|
|
94220
94486
|
* For EACH ITEM in the collection: Gets the email of the comment's author.
|
|
94221
94487
|
*
|
|
@@ -94252,11 +94518,12 @@ declare namespace Word {
|
|
|
94252
94518
|
* For EACH ITEM in the collection: ID
|
|
94253
94519
|
*
|
|
94254
94520
|
* @remarks
|
|
94255
|
-
* [Api set:
|
|
94521
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94522
|
+
* @beta
|
|
94256
94523
|
*/
|
|
94257
94524
|
id?: boolean;
|
|
94258
94525
|
/**
|
|
94259
|
-
* For EACH ITEM in the collection: Gets or sets the comment thread status.
|
|
94526
|
+
* For EACH ITEM in the collection: Gets or sets the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
|
|
94260
94527
|
*
|
|
94261
94528
|
* @remarks
|
|
94262
94529
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -94264,6 +94531,73 @@ declare namespace Word {
|
|
|
94264
94531
|
*/
|
|
94265
94532
|
resolved?: boolean;
|
|
94266
94533
|
}
|
|
94534
|
+
/**
|
|
94535
|
+
* @remarks
|
|
94536
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94537
|
+
* @beta
|
|
94538
|
+
*/
|
|
94539
|
+
interface CommentContentRangeLoadOptions {
|
|
94540
|
+
/**
|
|
94541
|
+
Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
|
|
94542
|
+
*/
|
|
94543
|
+
$all?: boolean;
|
|
94544
|
+
/**
|
|
94545
|
+
* Gets or sets a value that indicates whether the comment text is bold.
|
|
94546
|
+
*
|
|
94547
|
+
* @remarks
|
|
94548
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94549
|
+
* @beta
|
|
94550
|
+
*/
|
|
94551
|
+
bold?: boolean;
|
|
94552
|
+
/**
|
|
94553
|
+
* Gets the first hyperlink in the range, or sets a hyperlink on the range. All hyperlinks in the range are deleted when you set a new hyperlink on the range.
|
|
94554
|
+
*
|
|
94555
|
+
* @remarks
|
|
94556
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94557
|
+
* @beta
|
|
94558
|
+
*/
|
|
94559
|
+
hyperlink?: boolean;
|
|
94560
|
+
/**
|
|
94561
|
+
* Checks whether the range length is zero. Read-only.
|
|
94562
|
+
*
|
|
94563
|
+
* @remarks
|
|
94564
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94565
|
+
* @beta
|
|
94566
|
+
*/
|
|
94567
|
+
isEmpty?: boolean;
|
|
94568
|
+
/**
|
|
94569
|
+
* Gets or sets a value that indicates whether the comment text is italicized.
|
|
94570
|
+
*
|
|
94571
|
+
* @remarks
|
|
94572
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94573
|
+
* @beta
|
|
94574
|
+
*/
|
|
94575
|
+
italic?: boolean;
|
|
94576
|
+
/**
|
|
94577
|
+
* Gets or sets a value that indicates whether the comment text has a strikethrough.
|
|
94578
|
+
*
|
|
94579
|
+
* @remarks
|
|
94580
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
94581
|
+
* @beta
|
|
94582
|
+
*/
|
|
94583
|
+
strikeThrough?: boolean;
|
|
94584
|
+
/**
|
|
94585
|
+
* Gets the text of the comment range. Read-only.
|
|
94586
|
+
*
|
|
94587
|
+
* @remarks
|
|
94588
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94589
|
+
* @beta
|
|
94590
|
+
*/
|
|
94591
|
+
text?: boolean;
|
|
94592
|
+
/**
|
|
94593
|
+
* Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
|
|
94594
|
+
*
|
|
94595
|
+
* @remarks
|
|
94596
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94597
|
+
* @beta
|
|
94598
|
+
*/
|
|
94599
|
+
underline?: boolean;
|
|
94600
|
+
}
|
|
94267
94601
|
/**
|
|
94268
94602
|
* Represents a comment reply in the document.
|
|
94269
94603
|
*
|
|
@@ -94277,6 +94611,14 @@ declare namespace Word {
|
|
|
94277
94611
|
*/
|
|
94278
94612
|
$all?: boolean;
|
|
94279
94613
|
/**
|
|
94614
|
+
* Gets or sets the commentReply's content range.
|
|
94615
|
+
*
|
|
94616
|
+
* @remarks
|
|
94617
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94618
|
+
* @beta
|
|
94619
|
+
*/
|
|
94620
|
+
contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
|
|
94621
|
+
/**
|
|
94280
94622
|
* Gets the parent comment of this reply.
|
|
94281
94623
|
*
|
|
94282
94624
|
* @remarks
|
|
@@ -94320,12 +94662,13 @@ declare namespace Word {
|
|
|
94320
94662
|
* ID
|
|
94321
94663
|
*
|
|
94322
94664
|
* @remarks
|
|
94323
|
-
* [Api set:
|
|
94665
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94666
|
+
* @beta
|
|
94324
94667
|
*/
|
|
94325
94668
|
id?: boolean;
|
|
94326
94669
|
}
|
|
94327
94670
|
/**
|
|
94328
|
-
* Contains a collection of {@link Word.CommentReply}
|
|
94671
|
+
* Contains a collection of {@link Word.CommentReply} objects. Represents all comment replies in one comment thread.
|
|
94329
94672
|
*
|
|
94330
94673
|
* @remarks
|
|
94331
94674
|
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
@@ -94337,6 +94680,14 @@ declare namespace Word {
|
|
|
94337
94680
|
*/
|
|
94338
94681
|
$all?: boolean;
|
|
94339
94682
|
/**
|
|
94683
|
+
* For EACH ITEM in the collection: Gets or sets the commentReply's content range.
|
|
94684
|
+
*
|
|
94685
|
+
* @remarks
|
|
94686
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94687
|
+
* @beta
|
|
94688
|
+
*/
|
|
94689
|
+
contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
|
|
94690
|
+
/**
|
|
94340
94691
|
* For EACH ITEM in the collection: Gets the parent comment of this reply.
|
|
94341
94692
|
*
|
|
94342
94693
|
* @remarks
|
|
@@ -94380,7 +94731,8 @@ declare namespace Word {
|
|
|
94380
94731
|
* For EACH ITEM in the collection: ID
|
|
94381
94732
|
*
|
|
94382
94733
|
* @remarks
|
|
94383
|
-
* [Api set:
|
|
94734
|
+
* [Api set: WordApiOnline BETA (PREVIEW ONLY)]
|
|
94735
|
+
* @beta
|
|
94384
94736
|
*/
|
|
94385
94737
|
id?: boolean;
|
|
94386
94738
|
}
|
|
@@ -94926,7 +95278,7 @@ declare namespace Word {
|
|
|
94926
95278
|
*/
|
|
94927
95279
|
$all?: boolean;
|
|
94928
95280
|
/**
|
|
94929
|
-
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc
|
|
95281
|
+
* Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.
|
|
94930
95282
|
*
|
|
94931
95283
|
* @remarks
|
|
94932
95284
|
* [Api set: WordApiHiddenDocument 1.3]
|