@types/office-js-preview 1.0.280 → 1.0.284

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.
@@ -4,7 +4,8 @@
4
4
  // Ricky Kirkham <https://github.com/Rick-Kirkham>,
5
5
  // Alex Jerabek <https://github.com/AlexJerabek>,
6
6
  // Elizabeth Samuel <https://github.com/ElizabethSamuel-MSFT>,
7
- // Alison McKay <https://github.com/alison-mk>
7
+ // Alison McKay <https://github.com/alison-mk>,
8
+ // Sam Ramon <https://github.com/samantharamon>
8
9
  // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
9
10
  // TypeScript Version: 2.4
10
11
 
@@ -11905,7 +11906,8 @@ declare namespace Office {
11905
11906
  * Gets the MIME content type of the attachment.
11906
11907
  *
11907
11908
  * **Warning**: While the `contentType` value is a direct lookup of the attachment's extension, the internal mapping isn't actively maintained
11908
- * so this property has been deprecated. If you require specific types, grab the attachment's extension and process accordingly.
11909
+ * so this property has been deprecated. If you require specific types, grab the attachment's extension and process accordingly. For details,
11910
+ * refer to the {@link https://devblogs.microsoft.com/microsoft365dev/outlook-javascript-api-deprecation-for-attachmentdetails-contenttype-property/ | related blog post }.
11909
11911
  *
11910
11912
  * @deprecated If you require specific content types, grab the attachment's extension and process accordingly.
11911
11913
  */
@@ -14124,7 +14126,9 @@ declare namespace Office {
14124
14126
  *
14125
14127
  * `attachments.name`: A string that contains the name of the attachment, up to 255 characters in length.
14126
14128
  *
14127
- * `attachments.url`: Only used if type is set to file. The URI of the location for the file.
14129
+ * `attachments.url`: Only used if type is set to file. The URI of the location for the file. **Important**: This link must be
14130
+ * publicly accessible, without need for authentication by Exchange Online servers. However, with on-premises Exchange, the link can
14131
+ * be accessible on a private network as long as it doesn't need further authentication.
14128
14132
  *
14129
14133
  * `attachments.isInline`: Only used if type is set to file. If true, indicates that the attachment will be shown inline in the
14130
14134
  * message body, and should not be displayed in the attachment list.
@@ -14169,7 +14173,9 @@ declare namespace Office {
14169
14173
  *
14170
14174
  * `attachments.name`: A string that contains the name of the attachment, up to 255 characters in length.
14171
14175
  *
14172
- * `attachments.url`: Only used if type is set to file. The URI of the location for the file.
14176
+ * `attachments.url`: Only used if type is set to file. The URI of the location for the file. **Important**: This link must be
14177
+ * publicly accessible, without need for authentication by Exchange Online servers. However, with on-premises Exchange, the link can
14178
+ * be accessible on a private network as long as it doesn't need further authentication.
14173
14179
  *
14174
14180
  * `attachments.isInline`: Only used if type is set to file. If true, indicates that the attachment will be shown inline in the
14175
14181
  * message body, and should not be displayed in the attachment list.
@@ -14218,7 +14224,9 @@ declare namespace Office {
14218
14224
  *
14219
14225
  * `attachments.name`: A string that contains the name of the attachment, up to 255 characters in length.
14220
14226
  *
14221
- * `attachments.url`: Only used if type is set to file. The URI of the location for the file.
14227
+ * `attachments.url`: Only used if type is set to file. The URI of the location for the file. **Important**: This link must be
14228
+ * publicly accessible, without need for authentication by Exchange Online servers. However, with on-premises Exchange, the link can
14229
+ * be accessible on a private network as long as it doesn't need further authentication.
14222
14230
  *
14223
14231
  * `attachments.isInline`: Only used if type is set to file. If true, indicates that the attachment will be shown inline in the
14224
14232
  * message body, and should not be displayed in the attachment list.
@@ -17863,6 +17871,9 @@ declare namespace Office {
17863
17871
  name: string;
17864
17872
  /**
17865
17873
  * Only used if type is set to file. The URI of the location for the file.
17874
+ *
17875
+ * **Important**: This link must be publicly accessible, without need for authentication by Exchange Online servers. However, with
17876
+ * on-premises Exchange, the link can be accessible on a private network as long as it doesn't need further authentication.
17866
17877
  */
17867
17878
  url?: string;
17868
17879
  /**
@@ -82647,10 +82658,7 @@ declare namespace Word {
82647
82658
  */
82648
82659
  readonly lists: Word.ListCollection;
82649
82660
  /**
82650
- * Gets the collection of paragraph objects in the body. Read-only.
82651
- *
82652
- * **Important**: Paragraphs in tables are not returned for requirement sets 1.1 and 1.2.
82653
- * From requirement set 1.3, paragraphs in tables are also returned.
82661
+ * 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.
82654
82662
  *
82655
82663
  * @remarks
82656
82664
  * [Api set: WordApi 1.1]
@@ -83060,6 +83068,14 @@ declare namespace Word {
83060
83068
  class Comment extends OfficeExtension.ClientObject {
83061
83069
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
83062
83070
  context: RequestContext;
83071
+ /**
83072
+ * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
83073
+ *
83074
+ * @remarks
83075
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83076
+ * @beta
83077
+ */
83078
+ contentRange: Word.CommentContentRange;
83063
83079
  /**
83064
83080
  * Gets the collection of reply objects associated with the comment.
83065
83081
  *
@@ -83104,11 +83120,12 @@ declare namespace Word {
83104
83120
  * ID
83105
83121
  *
83106
83122
  * @remarks
83107
- * [Api set: WordApi]
83123
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83124
+ * @beta
83108
83125
  */
83109
83126
  readonly id: string;
83110
83127
  /**
83111
- * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
83128
+ * 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.
83112
83129
  *
83113
83130
  * @remarks
83114
83131
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -83137,7 +83154,6 @@ declare namespace Word {
83137
83154
  * @remarks
83138
83155
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83139
83156
  * @beta
83140
- * @returns
83141
83157
  */
83142
83158
  getRange(): Word.Range;
83143
83159
  /**
@@ -83186,7 +83202,7 @@ declare namespace Word {
83186
83202
  toJSON(): Word.Interfaces.CommentData;
83187
83203
  }
83188
83204
  /**
83189
- * Contains a collection of {@link Word.Comment} object.
83205
+ * Contains a collection of {@link Word.Comment} objects.
83190
83206
  *
83191
83207
  * @remarks
83192
83208
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -83203,16 +83219,14 @@ declare namespace Word {
83203
83219
  * @remarks
83204
83220
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83205
83221
  * @beta
83206
- * @returns
83207
83222
  */
83208
83223
  getFirst(): Word.Comment;
83209
83224
  /**
83210
- * Gets the first comment or null object in the collection.
83225
+ * Gets the first comment in the collection. If the collection is empty, returns a null object.
83211
83226
  *
83212
83227
  * @remarks
83213
83228
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83214
83229
  * @beta
83215
- * @returns
83216
83230
  */
83217
83231
  getFirstOrNullObject(): Word.Comment;
83218
83232
  /**
@@ -83222,7 +83236,7 @@ declare namespace Word {
83222
83236
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83223
83237
  * @beta
83224
83238
  *
83225
- * @param index A number that identifies the index location of a comments object.
83239
+ * @param index A number that identifies the index location of a comment object.
83226
83240
  */
83227
83241
  getItem(index: number): Word.Comment;
83228
83242
  /**
@@ -83257,6 +83271,135 @@ declare namespace Word {
83257
83271
  */
83258
83272
  toJSON(): Word.Interfaces.CommentCollectionData;
83259
83273
  }
83274
+ /**
83275
+ * @remarks
83276
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83277
+ * @beta
83278
+ */
83279
+ class CommentContentRange extends OfficeExtension.ClientObject {
83280
+ /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
83281
+ context: RequestContext;
83282
+ /**
83283
+ * Gets or sets a value that indicates whether the comment text is bold.
83284
+ *
83285
+ * @remarks
83286
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83287
+ * @beta
83288
+ */
83289
+ bold: boolean;
83290
+ /**
83291
+ * 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.
83292
+ *
83293
+ * @remarks
83294
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83295
+ * @beta
83296
+ */
83297
+ hyperlink: string;
83298
+ /**
83299
+ * Checks whether the range length is zero. Read-only.
83300
+ *
83301
+ * @remarks
83302
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83303
+ * @beta
83304
+ */
83305
+ readonly isEmpty: boolean;
83306
+ /**
83307
+ * Gets or sets a value that indicates whether the comment text is italicized.
83308
+ *
83309
+ * @remarks
83310
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83311
+ * @beta
83312
+ */
83313
+ italic: boolean;
83314
+ /**
83315
+ * Gets or sets a value that indicates whether the comment text has a strikethrough.
83316
+ *
83317
+ * @remarks
83318
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83319
+ * @beta
83320
+ */
83321
+ strikeThrough: boolean;
83322
+ /**
83323
+ * Gets the text of the comment range. Read-only.
83324
+ *
83325
+ * @remarks
83326
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83327
+ * @beta
83328
+ */
83329
+ readonly text: string;
83330
+ /**
83331
+ * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
83332
+ *
83333
+ * @remarks
83334
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83335
+ * @beta
83336
+ */
83337
+ underline: Word.UnderlineType | "Mixed" | "None" | "Hidden" | "DotLine" | "Single" | "Word" | "Double" | "Thick" | "Dotted" | "DottedHeavy" | "DashLine" | "DashLineHeavy" | "DashLineLong" | "DashLineLongHeavy" | "DotDashLine" | "DotDashLineHeavy" | "TwoDotDashLine" | "TwoDotDashLineHeavy" | "Wave" | "WaveHeavy" | "WaveDouble";
83338
+ /**
83339
+ * 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.
83340
+ * @param properties A JavaScript object with properties that are structured isomorphically to the properties of the object on which the method is called.
83341
+ * @param options Provides an option to suppress errors if the properties object tries to set any read-only properties.
83342
+ */
83343
+ set(properties: Interfaces.CommentContentRangeUpdateData, options?: OfficeExtension.UpdateOptions): void;
83344
+ /** Sets multiple properties on the object at the same time, based on an existing loaded object. */
83345
+ set(properties: Word.CommentContentRange): void;
83346
+ /**
83347
+ * Inserts text into at the specified location.
83348
+ *
83349
+ * @remarks
83350
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83351
+ * @beta
83352
+ *
83353
+ * @param text Required. The text to be inserted in to the CommentContentRange.
83354
+ * @param insertLocation Required. The value can be 'After', 'Before', 'Replace', 'Start', or 'End'.
83355
+ */
83356
+ insertText(text: string, insertLocation: Word.InsertLocation): Word.CommentContentRange;
83357
+ /**
83358
+ * Inserts text into at the specified location.
83359
+ *
83360
+ * @remarks
83361
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83362
+ * @beta
83363
+ *
83364
+ * @param text Required. The text to be inserted in to the CommentContentRange.
83365
+ * @param insertLocation Required. The value can be 'After', 'Before', 'Replace', 'Start', or 'End'.
83366
+ */
83367
+ insertText(text: string, insertLocation: "Before" | "After" | "Start" | "End" | "Replace"): Word.CommentContentRange;
83368
+ /**
83369
+ * Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
83370
+ *
83371
+ * @param options Provides options for which properties of the object to load.
83372
+ */
83373
+ load(options?: Word.Interfaces.CommentContentRangeLoadOptions): Word.CommentContentRange;
83374
+ /**
83375
+ * Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
83376
+ *
83377
+ * @param propertyNames A comma-delimited string or an array of strings that specify the properties to load.
83378
+ */
83379
+ load(propertyNames?: string | string[]): Word.CommentContentRange;
83380
+ /**
83381
+ * Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading the properties.
83382
+ *
83383
+ * @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.
83384
+ */
83385
+ load(propertyNamesAndPaths?: {
83386
+ select?: string;
83387
+ expand?: string;
83388
+ }): Word.CommentContentRange;
83389
+ /**
83390
+ * 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.
83391
+ */
83392
+ track(): Word.CommentContentRange;
83393
+ /**
83394
+ * 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.
83395
+ */
83396
+ untrack(): Word.CommentContentRange;
83397
+ /**
83398
+ * 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.)
83399
+ * 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.
83400
+ */
83401
+ toJSON(): Word.Interfaces.CommentContentRangeData;
83402
+ }
83260
83403
  /**
83261
83404
  * Represents a comment reply in the document.
83262
83405
  *
@@ -83267,6 +83410,14 @@ declare namespace Word {
83267
83410
  class CommentReply extends OfficeExtension.ClientObject {
83268
83411
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
83269
83412
  context: RequestContext;
83413
+ /**
83414
+ * Gets or sets the commentReply's content range.
83415
+ *
83416
+ * @remarks
83417
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83418
+ * @beta
83419
+ */
83420
+ contentRange: Word.CommentContentRange;
83270
83421
  /**
83271
83422
  * Gets the parent comment of this reply.
83272
83423
  *
@@ -83311,7 +83462,8 @@ declare namespace Word {
83311
83462
  * ID
83312
83463
  *
83313
83464
  * @remarks
83314
- * [Api set: WordApi]
83465
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83466
+ * @beta
83315
83467
  */
83316
83468
  readonly id: string;
83317
83469
  /**
@@ -83366,7 +83518,7 @@ declare namespace Word {
83366
83518
  toJSON(): Word.Interfaces.CommentReplyData;
83367
83519
  }
83368
83520
  /**
83369
- * Contains a collection of {@link Word.CommentReply} object. Represents all comment replies in one comment thread.
83521
+ * Contains a collection of {@link Word.CommentReply} objects. Represents all comment replies in one comment thread.
83370
83522
  *
83371
83523
  * @remarks
83372
83524
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -83386,12 +83538,11 @@ declare namespace Word {
83386
83538
  */
83387
83539
  getFirst(): Word.CommentReply;
83388
83540
  /**
83389
- * Gets the first comment reply or null object in the collection.
83541
+ * Gets the first comment reply in the collection. If the collection is empty, returns a null object.
83390
83542
  *
83391
83543
  * @remarks
83392
83544
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83393
83545
  * @beta
83394
- * @returns
83395
83546
  */
83396
83547
  getFirstOrNullObject(): Word.CommentReply;
83397
83548
  /**
@@ -83401,7 +83552,7 @@ declare namespace Word {
83401
83552
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
83402
83553
  * @beta
83403
83554
  *
83404
- * @param index A number that identifies the index location of a comments object.
83555
+ * @param index A number that identifies the index location of a comment reply object.
83405
83556
  */
83406
83557
  getItem(index: number): Word.CommentReply;
83407
83558
  /**
@@ -83490,10 +83641,7 @@ declare namespace Word {
83490
83641
  */
83491
83642
  readonly lists: Word.ListCollection;
83492
83643
  /**
83493
- * Gets the collection of paragraph objects in the content control. Read-only.
83494
- *
83495
- * **Important**: For requirement sets 1.1 and 1.2, paragraphs in tables wholly contained within this content control are not returned.
83496
- * From requirement set 1.3, paragraphs in such tables are also returned.
83644
+ * 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.
83497
83645
  *
83498
83646
  * @remarks
83499
83647
  * [Api set: WordApi 1.1]
@@ -84902,7 +85050,7 @@ declare namespace Word {
84902
85050
  * Performs a search with the specified search options on the scope of the whole document. The search results are a collection of range objects.
84903
85051
  *
84904
85052
  * @remarks
84905
- * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
85053
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
84906
85054
  * @beta
84907
85055
  */
84908
85056
  search(searchText: string, searchOptions?: Word.SearchOptions | {
@@ -84969,14 +85117,14 @@ declare namespace Word {
84969
85117
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
84970
85118
  context: RequestContext;
84971
85119
  /**
84972
- * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.. Read-only.
85120
+ * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc. Read-only.
84973
85121
  *
84974
85122
  * @remarks
84975
85123
  * [Api set: WordApiHiddenDocument 1.3]
84976
85124
  */
84977
85125
  readonly body: Word.Body;
84978
85126
  /**
84979
- * 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.
85127
+ * 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.
84980
85128
  *
84981
85129
  * @remarks
84982
85130
  * [Api set: WordApiHiddenDocument 1.3]
@@ -87174,7 +87322,7 @@ declare namespace Word {
87174
87322
  */
87175
87323
  readonly lists: Word.ListCollection;
87176
87324
  /**
87177
- * Gets the collection of paragraph objects in the range. Read-only.
87325
+ * 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.
87178
87326
  *
87179
87327
  * @remarks
87180
87328
  * [Api set: WordApi 1.1]
@@ -87183,9 +87331,6 @@ declare namespace Word {
87183
87331
  /**
87184
87332
  * Gets the parent body of the range. Read-only.
87185
87333
  *
87186
- * **Important**: For requirement sets 1.1 and 1.2, paragraphs in tables wholly contained within this range are not returned.
87187
- * From requirement set 1.3, paragraphs in such tables are also returned.
87188
- *
87189
87334
  * @remarks
87190
87335
  * [Api set: WordApi 1.3]
87191
87336
  */
@@ -87469,7 +87614,7 @@ declare namespace Word {
87469
87614
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
87470
87615
  * @beta
87471
87616
  *
87472
- * @param commentText Required. Comment text.
87617
+ * @param commentText Required. The comment text to be inserted.
87473
87618
  * @returns comment object
87474
87619
  */
87475
87620
  insertComment(commentText: string): Word.Comment;
@@ -89635,25 +89780,29 @@ declare namespace Word {
89635
89780
  * ChangeTracking mode.
89636
89781
  *
89637
89782
  * @remarks
89638
- * [Api set: WordApi]
89783
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89784
+ * @beta
89639
89785
  */
89640
89786
  enum ChangeTrackingMode {
89641
89787
  /**
89642
89788
  * ChangeTracking is turned off.
89643
89789
  * @remarks
89644
- * [Api set: WordApi]
89790
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89791
+ * @beta
89645
89792
  */
89646
89793
  off = "Off",
89647
89794
  /**
89648
89795
  * ChangeTracking is turned on for everyone.
89649
89796
  * @remarks
89650
- * [Api set: WordApi]
89797
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89798
+ * @beta
89651
89799
  */
89652
89800
  trackAll = "TrackAll",
89653
89801
  /**
89654
89802
  * Tracking is turned on for my changes only.
89655
89803
  * @remarks
89656
- * [Api set: WordApi]
89804
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89805
+ * @beta
89657
89806
  */
89658
89807
  trackMineOnly = "TrackMineOnly",
89659
89808
  }
@@ -89661,17 +89810,18 @@ declare namespace Word {
89661
89810
  * Specify the current version or the original version of the document.
89662
89811
  *
89663
89812
  * @remarks
89664
- * [Api set: WordApi]
89813
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89814
+ * @beta
89665
89815
  */
89666
89816
  enum ChangeTrackingVersion {
89667
89817
  /**
89668
89818
  * @remarks
89669
- * [Api set: WordApi]
89819
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89670
89820
  */
89671
89821
  original = "Original",
89672
89822
  /**
89673
89823
  * @remarks
89674
- * [Api set: WordApi]
89824
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89675
89825
  */
89676
89826
  current = "Current",
89677
89827
  }
@@ -89679,17 +89829,18 @@ declare namespace Word {
89679
89829
  * Note item type
89680
89830
  *
89681
89831
  * @remarks
89682
- * [Api set: WordApi]
89832
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89833
+ * @beta
89683
89834
  */
89684
89835
  enum NoteItemType {
89685
89836
  /**
89686
89837
  * @remarks
89687
- * [Api set: WordApi]
89838
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89688
89839
  */
89689
89840
  footnote = "Footnote",
89690
89841
  /**
89691
89842
  * @remarks
89692
- * [Api set: WordApi]
89843
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
89693
89844
  */
89694
89845
  endnote = "Endnote",
89695
89846
  }
@@ -89697,49 +89848,49 @@ declare namespace Word {
89697
89848
  * Provides information about the type of a raised event. For each object type, please keep the order of: deleted, selection changed, data changed, added.
89698
89849
  *
89699
89850
  * @remarks
89700
- * [Api set: WordApi]
89851
+ * [Api set: WordApi 1.3]
89701
89852
  */
89702
89853
  enum EventType {
89703
89854
  /**
89704
89855
  * ContentControlDeleted represent the event that the content control has been deleted.
89705
89856
  * @remarks
89706
- * [Api set: WordApi]
89857
+ * [Api set: WordApi 1.3]
89707
89858
  */
89708
89859
  contentControlDeleted = "ContentControlDeleted",
89709
89860
  /**
89710
89861
  * ContentControlSelectionChanged represents the event that the selection in the content control has been changed.
89711
89862
  * @remarks
89712
- * [Api set: WordApi]
89863
+ * [Api set: WordApi 1.3]
89713
89864
  */
89714
89865
  contentControlSelectionChanged = "ContentControlSelectionChanged",
89715
89866
  /**
89716
89867
  * ContentControlDataChanged represents the event that the data in the content control have been changed.
89717
89868
  * @remarks
89718
- * [Api set: WordApi]
89869
+ * [Api set: WordApi 1.3]
89719
89870
  */
89720
89871
  contentControlDataChanged = "ContentControlDataChanged",
89721
89872
  /**
89722
89873
  * ContentControlAdded represents the event a content control has been added to the document.
89723
89874
  * @remarks
89724
- * [Api set: WordApi]
89875
+ * [Api set: WordApi 1.3]
89725
89876
  */
89726
89877
  contentControlAdded = "ContentControlAdded",
89727
89878
  /**
89728
89879
  * AnnotationAdded represents the event an annotation has been added to the document.
89729
89880
  * @remarks
89730
- * [Api set: WordApi]
89881
+ * [Api set: WordApi 1.3]
89731
89882
  */
89732
89883
  annotationAdded = "AnnotationAdded",
89733
89884
  /**
89734
89885
  * AnnotationAdded represents the event an annotation has been updated in the document.
89735
89886
  * @remarks
89736
- * [Api set: WordApi]
89887
+ * [Api set: WordApi 1.3]
89737
89888
  */
89738
89889
  annotationChanged = "AnnotationChanged",
89739
89890
  /**
89740
89891
  * AnnotationAdded represents the event an annotation has been deleted from the document.
89741
89892
  * @remarks
89742
- * [Api set: WordApi]
89893
+ * [Api set: WordApi 1.3]
89743
89894
  */
89744
89895
  annotationDeleted = "AnnotationDeleted",
89745
89896
  }
@@ -89772,96 +89923,96 @@ declare namespace Word {
89772
89923
  * Specifies supported content control types and subtypes.
89773
89924
  *
89774
89925
  * @remarks
89775
- * [Api set: WordApi]
89926
+ * [Api set: WordApi 1.1]
89776
89927
  */
89777
89928
  enum ContentControlType {
89778
89929
  /**
89779
89930
  * @remarks
89780
- * [Api set: WordApi]
89931
+ * [Api set: WordApi 1.1]
89781
89932
  */
89782
89933
  unknown = "Unknown",
89783
89934
  /**
89784
89935
  * @remarks
89785
- * [Api set: WordApi]
89936
+ * [Api set: WordApi 1.1]
89786
89937
  */
89787
89938
  richTextInline = "RichTextInline",
89788
89939
  /**
89789
89940
  * @remarks
89790
- * [Api set: WordApi]
89941
+ * [Api set: WordApi 1.1]
89791
89942
  */
89792
89943
  richTextParagraphs = "RichTextParagraphs",
89793
89944
  /**
89794
89945
  * Contains a whole cell.
89795
89946
  * @remarks
89796
- * [Api set: WordApi]
89947
+ * [Api set: WordApi 1.1]
89797
89948
  */
89798
89949
  richTextTableCell = "RichTextTableCell",
89799
89950
  /**
89800
89951
  * Contains a whole row.
89801
89952
  * @remarks
89802
- * [Api set: WordApi]
89953
+ * [Api set: WordApi 1.1]
89803
89954
  */
89804
89955
  richTextTableRow = "RichTextTableRow",
89805
89956
  /**
89806
89957
  * Contains a whole table.
89807
89958
  * @remarks
89808
- * [Api set: WordApi]
89959
+ * [Api set: WordApi 1.1]
89809
89960
  */
89810
89961
  richTextTable = "RichTextTable",
89811
89962
  /**
89812
89963
  * @remarks
89813
- * [Api set: WordApi]
89964
+ * [Api set: WordApi 1.1]
89814
89965
  */
89815
89966
  plainTextInline = "PlainTextInline",
89816
89967
  /**
89817
89968
  * @remarks
89818
- * [Api set: WordApi]
89969
+ * [Api set: WordApi 1.1]
89819
89970
  */
89820
89971
  plainTextParagraph = "PlainTextParagraph",
89821
89972
  /**
89822
89973
  * @remarks
89823
- * [Api set: WordApi]
89974
+ * [Api set: WordApi 1.1]
89824
89975
  */
89825
89976
  picture = "Picture",
89826
89977
  /**
89827
89978
  * @remarks
89828
- * [Api set: WordApi]
89979
+ * [Api set: WordApi 1.1]
89829
89980
  */
89830
89981
  buildingBlockGallery = "BuildingBlockGallery",
89831
89982
  /**
89832
89983
  * @remarks
89833
- * [Api set: WordApi]
89984
+ * [Api set: WordApi 1.1]
89834
89985
  */
89835
89986
  checkBox = "CheckBox",
89836
89987
  /**
89837
89988
  * @remarks
89838
- * [Api set: WordApi]
89989
+ * [Api set: WordApi 1.1]
89839
89990
  */
89840
89991
  comboBox = "ComboBox",
89841
89992
  /**
89842
89993
  * @remarks
89843
- * [Api set: WordApi]
89994
+ * [Api set: WordApi 1.1]
89844
89995
  */
89845
89996
  dropDownList = "DropDownList",
89846
89997
  /**
89847
89998
  * @remarks
89848
- * [Api set: WordApi]
89999
+ * [Api set: WordApi 1.1]
89849
90000
  */
89850
90001
  datePicker = "DatePicker",
89851
90002
  /**
89852
90003
  * @remarks
89853
- * [Api set: WordApi]
90004
+ * [Api set: WordApi 1.1]
89854
90005
  */
89855
90006
  repeatingSection = "RepeatingSection",
89856
90007
  /**
89857
90008
  * Identifies a rich text content control.
89858
90009
  * @remarks
89859
- * [Api set: WordApi]
90010
+ * [Api set: WordApi 1.1]
89860
90011
  */
89861
90012
  richText = "RichText",
89862
90013
  /**
89863
90014
  * @remarks
89864
- * [Api set: WordApi]
90015
+ * [Api set: WordApi 1.1]
89865
90016
  */
89866
90017
  plainText = "PlainText",
89867
90018
  }
@@ -89869,7 +90020,7 @@ declare namespace Word {
89869
90020
  * ContentControl appearance
89870
90021
  *
89871
90022
  * @remarks
89872
- * [Api set: WordApi]
90023
+ * [Api set: WordApi 1.1]
89873
90024
  *
89874
90025
  * Content control appearance options are bounding box, tags, or hidden.
89875
90026
  */
@@ -89877,19 +90028,19 @@ declare namespace Word {
89877
90028
  /**
89878
90029
  * Represents a content control shown as a shaded rectangle or bounding box (with optional title).
89879
90030
  * @remarks
89880
- * [Api set: WordApi]
90031
+ * [Api set: WordApi 1.1]
89881
90032
  */
89882
90033
  boundingBox = "BoundingBox",
89883
90034
  /**
89884
90035
  * Represents a content control shown as start and end markers.
89885
90036
  * @remarks
89886
- * [Api set: WordApi]
90037
+ * [Api set: WordApi 1.1]
89887
90038
  */
89888
90039
  tags = "Tags",
89889
90040
  /**
89890
90041
  * Represents a content control that is not shown.
89891
90042
  * @remarks
89892
- * [Api set: WordApi]
90043
+ * [Api set: WordApi 1.1]
89893
90044
  */
89894
90045
  hidden = "Hidden",
89895
90046
  }
@@ -89897,18 +90048,18 @@ declare namespace Word {
89897
90048
  * The supported styles for underline format.
89898
90049
  *
89899
90050
  * @remarks
89900
- * [Api set: WordApi]
90051
+ * [Api set: WordApi 1.1]
89901
90052
  */
89902
90053
  enum UnderlineType {
89903
90054
  /**
89904
90055
  * @remarks
89905
- * [Api set: WordApi]
90056
+ * [Api set: WordApi 1.1]
89906
90057
  */
89907
90058
  mixed = "Mixed",
89908
90059
  /**
89909
90060
  * No underline.
89910
90061
  * @remarks
89911
- * [Api set: WordApi]
90062
+ * [Api set: WordApi 1.1]
89912
90063
  */
89913
90064
  none = "None",
89914
90065
  /**
@@ -89916,7 +90067,7 @@ declare namespace Word {
89916
90067
  *
89917
90068
  * @deprecated `hidden` is no longer supported.
89918
90069
  * @remarks
89919
- * [Api set: WordApi]
90070
+ * [Api set: WordApi 1.1]
89920
90071
  */
89921
90072
  hidden = "Hidden",
89922
90073
  /**
@@ -89924,101 +90075,101 @@ declare namespace Word {
89924
90075
  *
89925
90076
  * @deprecated `dotLine` is no longer supported.
89926
90077
  * @remarks
89927
- * [Api set: WordApi]
90078
+ * [Api set: WordApi 1.1]
89928
90079
  */
89929
90080
  dotLine = "DotLine",
89930
90081
  /**
89931
90082
  * A single underline. This is the default value.
89932
90083
  * @remarks
89933
- * [Api set: WordApi]
90084
+ * [Api set: WordApi 1.1]
89934
90085
  */
89935
90086
  single = "Single",
89936
90087
  /**
89937
90088
  * Only underline individual words.
89938
90089
  * @remarks
89939
- * [Api set: WordApi]
90090
+ * [Api set: WordApi 1.1]
89940
90091
  */
89941
90092
  word = "Word",
89942
90093
  /**
89943
90094
  * A double underline.
89944
90095
  * @remarks
89945
- * [Api set: WordApi]
90096
+ * [Api set: WordApi 1.1]
89946
90097
  */
89947
90098
  double = "Double",
89948
90099
  /**
89949
90100
  * A single thick underline.
89950
90101
  * @remarks
89951
- * [Api set: WordApi]
90102
+ * [Api set: WordApi 1.1]
89952
90103
  */
89953
90104
  thick = "Thick",
89954
90105
  /**
89955
90106
  * A dotted underline.
89956
90107
  * @remarks
89957
- * [Api set: WordApi]
90108
+ * [Api set: WordApi 1.1]
89958
90109
  */
89959
90110
  dotted = "Dotted",
89960
90111
  /**
89961
90112
  * @remarks
89962
- * [Api set: WordApi]
90113
+ * [Api set: WordApi 1.1]
89963
90114
  */
89964
90115
  dottedHeavy = "DottedHeavy",
89965
90116
  /**
89966
90117
  * A single dash underline.
89967
90118
  * @remarks
89968
- * [Api set: WordApi]
90119
+ * [Api set: WordApi 1.1]
89969
90120
  */
89970
90121
  dashLine = "DashLine",
89971
90122
  /**
89972
90123
  * @remarks
89973
- * [Api set: WordApi]
90124
+ * [Api set: WordApi 1.1]
89974
90125
  */
89975
90126
  dashLineHeavy = "DashLineHeavy",
89976
90127
  /**
89977
90128
  * @remarks
89978
- * [Api set: WordApi]
90129
+ * [Api set: WordApi 1.1]
89979
90130
  */
89980
90131
  dashLineLong = "DashLineLong",
89981
90132
  /**
89982
90133
  * @remarks
89983
- * [Api set: WordApi]
90134
+ * [Api set: WordApi 1.1]
89984
90135
  */
89985
90136
  dashLineLongHeavy = "DashLineLongHeavy",
89986
90137
  /**
89987
90138
  * An alternating dot-dash underline.
89988
90139
  * @remarks
89989
- * [Api set: WordApi]
90140
+ * [Api set: WordApi 1.1]
89990
90141
  */
89991
90142
  dotDashLine = "DotDashLine",
89992
90143
  /**
89993
90144
  * @remarks
89994
- * [Api set: WordApi]
90145
+ * [Api set: WordApi 1.1]
89995
90146
  */
89996
90147
  dotDashLineHeavy = "DotDashLineHeavy",
89997
90148
  /**
89998
90149
  * An alternating dot-dot-dash underline.
89999
90150
  * @remarks
90000
- * [Api set: WordApi]
90151
+ * [Api set: WordApi 1.1]
90001
90152
  */
90002
90153
  twoDotDashLine = "TwoDotDashLine",
90003
90154
  /**
90004
90155
  * @remarks
90005
- * [Api set: WordApi]
90156
+ * [Api set: WordApi 1.1]
90006
90157
  */
90007
90158
  twoDotDashLineHeavy = "TwoDotDashLineHeavy",
90008
90159
  /**
90009
90160
  * A single wavy underline.
90010
90161
  * @remarks
90011
- * [Api set: WordApi]
90162
+ * [Api set: WordApi 1.1]
90012
90163
  */
90013
90164
  wave = "Wave",
90014
90165
  /**
90015
90166
  * @remarks
90016
- * [Api set: WordApi]
90167
+ * [Api set: WordApi 1.1]
90017
90168
  */
90018
90169
  waveHeavy = "WaveHeavy",
90019
90170
  /**
90020
90171
  * @remarks
90021
- * [Api set: WordApi]
90172
+ * [Api set: WordApi 1.1]
90022
90173
  */
90023
90174
  waveDouble = "WaveDouble",
90024
90175
  }
@@ -90026,13 +90177,13 @@ declare namespace Word {
90026
90177
  * Specifies the form of a break.
90027
90178
  *
90028
90179
  * @remarks
90029
- * [Api set: WordApi]
90180
+ * [Api set: WordApi 1.1]
90030
90181
  */
90031
90182
  enum BreakType {
90032
90183
  /**
90033
90184
  * Page break at the insertion point.
90034
90185
  * @remarks
90035
- * [Api set: WordApi]
90186
+ * [Api set: WordApi 1.1]
90036
90187
  */
90037
90188
  page = "Page",
90038
90189
  /**
@@ -90040,37 +90191,37 @@ declare namespace Word {
90040
90191
  *
90041
90192
  * @deprecated Use `sectionNext` instead.
90042
90193
  * @remarks
90043
- * [Api set: WordApi]
90194
+ * [Api set: WordApi 1.1]
90044
90195
  */
90045
90196
  next = "Next",
90046
90197
  /**
90047
90198
  * Section break on next page.
90048
90199
  * @remarks
90049
- * [Api set: WordApi]
90200
+ * [Api set: WordApi 1.1]
90050
90201
  */
90051
90202
  sectionNext = "SectionNext",
90052
90203
  /**
90053
90204
  * New section without a corresponding page break.
90054
90205
  * @remarks
90055
- * [Api set: WordApi]
90206
+ * [Api set: WordApi 1.1]
90056
90207
  */
90057
90208
  sectionContinuous = "SectionContinuous",
90058
90209
  /**
90059
90210
  * 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.
90060
90211
  * @remarks
90061
- * [Api set: WordApi]
90212
+ * [Api set: WordApi 1.1]
90062
90213
  */
90063
90214
  sectionEven = "SectionEven",
90064
90215
  /**
90065
90216
  * 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.
90066
90217
  * @remarks
90067
- * [Api set: WordApi]
90218
+ * [Api set: WordApi 1.1]
90068
90219
  */
90069
90220
  sectionOdd = "SectionOdd",
90070
90221
  /**
90071
90222
  * Line break.
90072
90223
  * @remarks
90073
- * [Api set: WordApi]
90224
+ * [Api set: WordApi 1.1]
90074
90225
  */
90075
90226
  line = "Line",
90076
90227
  }
@@ -90078,7 +90229,7 @@ declare namespace Word {
90078
90229
  * The insertion location types
90079
90230
  *
90080
90231
  * @remarks
90081
- * [Api set: WordApi]
90232
+ * [Api set: WordApi 1.1]
90082
90233
  *
90083
90234
  * To be used with an API call, such as `obj.insertSomething(newStuff, location);`
90084
90235
  * If the location is "Before" or "After", the new content will be outside of the modified object.
@@ -90088,147 +90239,147 @@ declare namespace Word {
90088
90239
  /**
90089
90240
  * Add content before the contents of the calling object.
90090
90241
  * @remarks
90091
- * [Api set: WordApi]
90242
+ * [Api set: WordApi 1.1]
90092
90243
  */
90093
90244
  before = "Before",
90094
90245
  /**
90095
90246
  * Add content after the contents of the calling object.
90096
90247
  * @remarks
90097
- * [Api set: WordApi]
90248
+ * [Api set: WordApi 1.1]
90098
90249
  */
90099
90250
  after = "After",
90100
90251
  /**
90101
90252
  * Prepend content to the contents of the calling object.
90102
90253
  * @remarks
90103
- * [Api set: WordApi]
90254
+ * [Api set: WordApi 1.1]
90104
90255
  */
90105
90256
  start = "Start",
90106
90257
  /**
90107
90258
  * Append content to the contents of the calling object.
90108
90259
  * @remarks
90109
- * [Api set: WordApi]
90260
+ * [Api set: WordApi 1.1]
90110
90261
  */
90111
90262
  end = "End",
90112
90263
  /**
90113
90264
  * Replace the contents of the current object.
90114
90265
  * @remarks
90115
- * [Api set: WordApi]
90266
+ * [Api set: WordApi 1.1]
90116
90267
  */
90117
90268
  replace = "Replace",
90118
90269
  }
90119
90270
  /**
90120
90271
  * @remarks
90121
- * [Api set: WordApi]
90272
+ * [Api set: WordApi 1.1]
90122
90273
  */
90123
90274
  enum Alignment {
90124
90275
  /**
90125
90276
  * @remarks
90126
- * [Api set: WordApi]
90277
+ * [Api set: WordApi 1.1]
90127
90278
  */
90128
90279
  mixed = "Mixed",
90129
90280
  /**
90130
90281
  * Unknown alignment.
90131
90282
  * @remarks
90132
- * [Api set: WordApi]
90283
+ * [Api set: WordApi 1.1]
90133
90284
  */
90134
90285
  unknown = "Unknown",
90135
90286
  /**
90136
90287
  * Alignment to the left.
90137
90288
  * @remarks
90138
- * [Api set: WordApi]
90289
+ * [Api set: WordApi 1.1]
90139
90290
  */
90140
90291
  left = "Left",
90141
90292
  /**
90142
90293
  * Alignment to the center.
90143
90294
  * @remarks
90144
- * [Api set: WordApi]
90295
+ * [Api set: WordApi 1.1]
90145
90296
  */
90146
90297
  centered = "Centered",
90147
90298
  /**
90148
90299
  * Alignment to the right.
90149
90300
  * @remarks
90150
- * [Api set: WordApi]
90301
+ * [Api set: WordApi 1.1]
90151
90302
  */
90152
90303
  right = "Right",
90153
90304
  /**
90154
90305
  * Fully justified alignment.
90155
90306
  * @remarks
90156
- * [Api set: WordApi]
90307
+ * [Api set: WordApi 1.1]
90157
90308
  */
90158
90309
  justified = "Justified",
90159
90310
  }
90160
90311
  /**
90161
90312
  * @remarks
90162
- * [Api set: WordApi]
90313
+ * [Api set: WordApi 1.1]
90163
90314
  */
90164
90315
  enum HeaderFooterType {
90165
90316
  /**
90166
90317
  * Returns the header or footer on all pages of a section, but excludes the first page or odd pages if they are different.
90167
90318
  * @remarks
90168
- * [Api set: WordApi]
90319
+ * [Api set: WordApi 1.1]
90169
90320
  */
90170
90321
  primary = "Primary",
90171
90322
  /**
90172
90323
  * Returns the header or footer on the first page of a section.
90173
90324
  * @remarks
90174
- * [Api set: WordApi]
90325
+ * [Api set: WordApi 1.1]
90175
90326
  */
90176
90327
  firstPage = "FirstPage",
90177
90328
  /**
90178
90329
  * Returns all headers or footers on even-numbered pages of a section.
90179
90330
  * @remarks
90180
- * [Api set: WordApi]
90331
+ * [Api set: WordApi 1.1]
90181
90332
  */
90182
90333
  evenPages = "EvenPages",
90183
90334
  }
90184
90335
  /**
90185
90336
  * @remarks
90186
- * [Api set: WordApi]
90337
+ * [Api set: WordApi 1.3]
90187
90338
  */
90188
90339
  enum BodyType {
90189
90340
  /**
90190
90341
  * @remarks
90191
- * [Api set: WordApi]
90342
+ * [Api set: WordApi 1.3]
90192
90343
  */
90193
90344
  unknown = "Unknown",
90194
90345
  /**
90195
90346
  * @remarks
90196
- * [Api set: WordApi]
90347
+ * [Api set: WordApi 1.3]
90197
90348
  */
90198
90349
  mainDoc = "MainDoc",
90199
90350
  /**
90200
90351
  * @remarks
90201
- * [Api set: WordApi]
90352
+ * [Api set: WordApi 1.3]
90202
90353
  */
90203
90354
  section = "Section",
90204
90355
  /**
90205
90356
  * @remarks
90206
- * [Api set: WordApi]
90357
+ * [Api set: WordApi 1.3]
90207
90358
  */
90208
90359
  header = "Header",
90209
90360
  /**
90210
90361
  * @remarks
90211
- * [Api set: WordApi]
90362
+ * [Api set: WordApi 1.3]
90212
90363
  */
90213
90364
  footer = "Footer",
90214
90365
  /**
90215
90366
  * @remarks
90216
- * [Api set: WordApi]
90367
+ * [Api set: WordApi 1.3]
90217
90368
  */
90218
90369
  tableCell = "TableCell",
90219
90370
  /**
90220
90371
  * @remarks
90221
- * [Api set: WordApi]
90372
+ * [Api set: WordApi 1.3]
90222
90373
  */
90223
90374
  footnote = "Footnote",
90224
90375
  /**
90225
90376
  * @remarks
90226
- * [Api set: WordApi]
90377
+ * [Api set: WordApi 1.3]
90227
90378
  */
90228
90379
  endnote = "Endnote",
90229
90380
  /**
90230
90381
  * @remarks
90231
- * [Api set: WordApi]
90382
+ * [Api set: WordApi 1.3]
90232
90383
  */
90233
90384
  noteItem = "NoteItem",
90234
90385
  }
@@ -90236,1409 +90387,1348 @@ declare namespace Word {
90236
90387
  * This enum sets where the cursor (insertion point) in the document is after a selection.
90237
90388
  *
90238
90389
  * @remarks
90239
- * [Api set: WordApi]
90390
+ * [Api set: WordApi 1.1]
90240
90391
  */
90241
90392
  enum SelectionMode {
90242
90393
  /**
90243
90394
  * The entire range is selected.
90244
90395
  * @remarks
90245
- * [Api set: WordApi]
90396
+ * [Api set: WordApi 1.1]
90246
90397
  */
90247
90398
  select = "Select",
90248
90399
  /**
90249
90400
  * The cursor is at the beginning of the selection (just before the start of the selected range).
90250
90401
  * @remarks
90251
- * [Api set: WordApi]
90402
+ * [Api set: WordApi 1.1]
90252
90403
  */
90253
90404
  start = "Start",
90254
90405
  /**
90255
90406
  * The cursor is at the end of the selection (just after the end of the selected range).
90256
90407
  * @remarks
90257
- * [Api set: WordApi]
90408
+ * [Api set: WordApi 1.1]
90258
90409
  */
90259
90410
  end = "End",
90260
90411
  }
90261
90412
  /**
90262
90413
  * @remarks
90263
- * [Api set: WordApi]
90414
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90415
+ * @beta
90264
90416
  */
90265
90417
  enum ImageFormat {
90266
90418
  /**
90267
90419
  * @remarks
90268
- * [Api set: WordApi]
90420
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90269
90421
  */
90270
90422
  unsupported = "Unsupported",
90271
90423
  /**
90272
90424
  * @remarks
90273
- * [Api set: WordApi]
90425
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90274
90426
  */
90275
90427
  undefined = "Undefined",
90276
90428
  /**
90277
90429
  * @remarks
90278
- * [Api set: WordApi]
90430
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90279
90431
  */
90280
90432
  bmp = "Bmp",
90281
90433
  /**
90282
90434
  * @remarks
90283
- * [Api set: WordApi]
90435
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90284
90436
  */
90285
90437
  jpeg = "Jpeg",
90286
90438
  /**
90287
90439
  * @remarks
90288
- * [Api set: WordApi]
90440
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90289
90441
  */
90290
90442
  gif = "Gif",
90291
90443
  /**
90292
90444
  * @remarks
90293
- * [Api set: WordApi]
90445
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90294
90446
  */
90295
90447
  tiff = "Tiff",
90296
90448
  /**
90297
90449
  * @remarks
90298
- * [Api set: WordApi]
90450
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90299
90451
  */
90300
90452
  png = "Png",
90301
90453
  /**
90302
90454
  * @remarks
90303
- * [Api set: WordApi]
90455
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90304
90456
  */
90305
90457
  icon = "Icon",
90306
90458
  /**
90307
90459
  * @remarks
90308
- * [Api set: WordApi]
90460
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90309
90461
  */
90310
90462
  exif = "Exif",
90311
90463
  /**
90312
90464
  * @remarks
90313
- * [Api set: WordApi]
90465
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90314
90466
  */
90315
90467
  wmf = "Wmf",
90316
90468
  /**
90317
90469
  * @remarks
90318
- * [Api set: WordApi]
90470
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90319
90471
  */
90320
90472
  emf = "Emf",
90321
90473
  /**
90322
90474
  * @remarks
90323
- * [Api set: WordApi]
90475
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90324
90476
  */
90325
90477
  pict = "Pict",
90326
90478
  /**
90327
90479
  * @remarks
90328
- * [Api set: WordApi]
90480
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90329
90481
  */
90330
90482
  pdf = "Pdf",
90331
90483
  /**
90332
90484
  * @remarks
90333
- * [Api set: WordApi]
90485
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
90334
90486
  */
90335
90487
  svg = "Svg",
90336
90488
  }
90337
90489
  /**
90338
90490
  * @remarks
90339
- * [Api set: WordApi]
90491
+ * [Api set: WordApi 1.3]
90340
90492
  */
90341
90493
  enum RangeLocation {
90342
90494
  /**
90343
90495
  * 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.
90344
90496
  * @remarks
90345
- * [Api set: WordApi]
90497
+ * [Api set: WordApi 1.3]
90346
90498
  */
90347
90499
  whole = "Whole",
90348
90500
  /**
90349
90501
  * The starting point of the object. For content control, it is the point after the opening tag.
90350
90502
  * @remarks
90351
- * [Api set: WordApi]
90503
+ * [Api set: WordApi 1.3]
90352
90504
  */
90353
90505
  start = "Start",
90354
90506
  /**
90355
90507
  * 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.
90356
90508
  * @remarks
90357
- * [Api set: WordApi]
90509
+ * [Api set: WordApi 1.3]
90358
90510
  */
90359
90511
  end = "End",
90360
90512
  /**
90361
90513
  * For content control only. It is the point before the opening tag.
90362
90514
  * @remarks
90363
- * [Api set: WordApi]
90515
+ * [Api set: WordApi 1.3]
90364
90516
  */
90365
90517
  before = "Before",
90366
90518
  /**
90367
90519
  * 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.
90368
90520
  * @remarks
90369
- * [Api set: WordApi]
90521
+ * [Api set: WordApi 1.3]
90370
90522
  */
90371
90523
  after = "After",
90372
90524
  /**
90373
90525
  * The range between 'Start' and 'End'.
90374
90526
  * @remarks
90375
- * [Api set: WordApi]
90527
+ * [Api set: WordApi 1.3]
90376
90528
  */
90377
90529
  content = "Content",
90378
90530
  }
90379
90531
  /**
90380
90532
  * @remarks
90381
- * [Api set: WordApi]
90533
+ * [Api set: WordApi 1.3]
90382
90534
  */
90383
90535
  enum LocationRelation {
90384
90536
  /**
90385
90537
  * Indicates that this instance and the range are in different sub-documents.
90386
90538
  * @remarks
90387
- * [Api set: WordApi]
90539
+ * [Api set: WordApi 1.3]
90388
90540
  */
90389
90541
  unrelated = "Unrelated",
90390
90542
  /**
90391
90543
  * Indicates that this instance and the range represent the same range.
90392
90544
  * @remarks
90393
- * [Api set: WordApi]
90545
+ * [Api set: WordApi 1.3]
90394
90546
  */
90395
90547
  equal = "Equal",
90396
90548
  /**
90397
90549
  * 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.
90398
90550
  * @remarks
90399
- * [Api set: WordApi]
90551
+ * [Api set: WordApi 1.3]
90400
90552
  */
90401
90553
  containsStart = "ContainsStart",
90402
90554
  /**
90403
90555
  * 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.
90404
90556
  * @remarks
90405
- * [Api set: WordApi]
90557
+ * [Api set: WordApi 1.3]
90406
90558
  */
90407
90559
  containsEnd = "ContainsEnd",
90408
90560
  /**
90409
90561
  * Indicates that this instance contains the range, with the exception of the start and end character of this instance.
90410
90562
  * @remarks
90411
- * [Api set: WordApi]
90563
+ * [Api set: WordApi 1.3]
90412
90564
  */
90413
90565
  contains = "Contains",
90414
90566
  /**
90415
90567
  * 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.
90416
90568
  * @remarks
90417
- * [Api set: WordApi]
90569
+ * [Api set: WordApi 1.3]
90418
90570
  */
90419
90571
  insideStart = "InsideStart",
90420
90572
  /**
90421
90573
  * 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.
90422
90574
  * @remarks
90423
- * [Api set: WordApi]
90575
+ * [Api set: WordApi 1.3]
90424
90576
  */
90425
90577
  insideEnd = "InsideEnd",
90426
90578
  /**
90427
90579
  * Indicates that this instance is inside the range. The range does not share the same start and end characters as this instance.
90428
90580
  * @remarks
90429
- * [Api set: WordApi]
90581
+ * [Api set: WordApi 1.3]
90430
90582
  */
90431
90583
  inside = "Inside",
90432
90584
  /**
90433
90585
  * Indicates that this instance occurs before, and is adjacent to, the range.
90434
90586
  * @remarks
90435
- * [Api set: WordApi]
90587
+ * [Api set: WordApi 1.3]
90436
90588
  */
90437
90589
  adjacentBefore = "AdjacentBefore",
90438
90590
  /**
90439
90591
  * Indicates that this instance starts before the range and overlaps the range’s first character.
90440
90592
  * @remarks
90441
- * [Api set: WordApi]
90593
+ * [Api set: WordApi 1.3]
90442
90594
  */
90443
90595
  overlapsBefore = "OverlapsBefore",
90444
90596
  /**
90445
90597
  * Indicates that this instance occurs before the range.
90446
90598
  * @remarks
90447
- * [Api set: WordApi]
90599
+ * [Api set: WordApi 1.3]
90448
90600
  */
90449
90601
  before = "Before",
90450
90602
  /**
90451
90603
  * Indicates that this instance occurs after, and is adjacent to, the range.
90452
90604
  * @remarks
90453
- * [Api set: WordApi]
90605
+ * [Api set: WordApi 1.3]
90454
90606
  */
90455
90607
  adjacentAfter = "AdjacentAfter",
90456
90608
  /**
90457
90609
  * Indicates that this instance starts inside the range and overlaps the range’s last character.
90458
90610
  * @remarks
90459
- * [Api set: WordApi]
90611
+ * [Api set: WordApi 1.3]
90460
90612
  */
90461
90613
  overlapsAfter = "OverlapsAfter",
90462
90614
  /**
90463
90615
  * Indicates that this instance occurs after the range.
90464
90616
  * @remarks
90465
- * [Api set: WordApi]
90617
+ * [Api set: WordApi 1.3]
90466
90618
  */
90467
90619
  after = "After",
90468
90620
  }
90469
90621
  /**
90470
90622
  * @remarks
90471
- * [Api set: WordApi]
90623
+ * [Api set: WordApi 1.3]
90472
90624
  */
90473
90625
  enum BorderLocation {
90474
90626
  /**
90475
90627
  * @remarks
90476
- * [Api set: WordApi]
90628
+ * [Api set: WordApi 1.3]
90477
90629
  */
90478
90630
  top = "Top",
90479
90631
  /**
90480
90632
  * @remarks
90481
- * [Api set: WordApi]
90633
+ * [Api set: WordApi 1.3]
90482
90634
  */
90483
90635
  left = "Left",
90484
90636
  /**
90485
90637
  * @remarks
90486
- * [Api set: WordApi]
90638
+ * [Api set: WordApi 1.3]
90487
90639
  */
90488
90640
  bottom = "Bottom",
90489
90641
  /**
90490
90642
  * @remarks
90491
- * [Api set: WordApi]
90643
+ * [Api set: WordApi 1.3]
90492
90644
  */
90493
90645
  right = "Right",
90494
90646
  /**
90495
90647
  * @remarks
90496
- * [Api set: WordApi]
90648
+ * [Api set: WordApi 1.3]
90497
90649
  */
90498
90650
  insideHorizontal = "InsideHorizontal",
90499
90651
  /**
90500
90652
  * @remarks
90501
- * [Api set: WordApi]
90653
+ * [Api set: WordApi 1.3]
90502
90654
  */
90503
90655
  insideVertical = "InsideVertical",
90504
90656
  /**
90505
90657
  * @remarks
90506
- * [Api set: WordApi]
90658
+ * [Api set: WordApi 1.3]
90507
90659
  */
90508
90660
  inside = "Inside",
90509
90661
  /**
90510
90662
  * @remarks
90511
- * [Api set: WordApi]
90663
+ * [Api set: WordApi 1.3]
90512
90664
  */
90513
90665
  outside = "Outside",
90514
90666
  /**
90515
90667
  * @remarks
90516
- * [Api set: WordApi]
90668
+ * [Api set: WordApi 1.3]
90517
90669
  */
90518
90670
  all = "All",
90519
90671
  }
90520
90672
  /**
90521
90673
  * @remarks
90522
- * [Api set: WordApi]
90674
+ * [Api set: WordApi 1.3]
90523
90675
  */
90524
90676
  enum CellPaddingLocation {
90525
90677
  /**
90526
90678
  * @remarks
90527
- * [Api set: WordApi]
90679
+ * [Api set: WordApi 1.3]
90528
90680
  */
90529
90681
  top = "Top",
90530
90682
  /**
90531
90683
  * @remarks
90532
- * [Api set: WordApi]
90684
+ * [Api set: WordApi 1.3]
90533
90685
  */
90534
90686
  left = "Left",
90535
90687
  /**
90536
90688
  * @remarks
90537
- * [Api set: WordApi]
90689
+ * [Api set: WordApi 1.3]
90538
90690
  */
90539
90691
  bottom = "Bottom",
90540
90692
  /**
90541
90693
  * @remarks
90542
- * [Api set: WordApi]
90694
+ * [Api set: WordApi 1.3]
90543
90695
  */
90544
90696
  right = "Right",
90545
90697
  }
90546
90698
  /**
90547
90699
  * @remarks
90548
- * [Api set: WordApi]
90700
+ * [Api set: WordApi 1.3]
90549
90701
  */
90550
90702
  enum BorderType {
90551
90703
  /**
90552
90704
  * @remarks
90553
- * [Api set: WordApi]
90705
+ * [Api set: WordApi 1.3]
90554
90706
  */
90555
90707
  mixed = "Mixed",
90556
90708
  /**
90557
90709
  * @remarks
90558
- * [Api set: WordApi]
90710
+ * [Api set: WordApi 1.3]
90559
90711
  */
90560
90712
  none = "None",
90561
90713
  /**
90562
90714
  * @remarks
90563
- * [Api set: WordApi]
90715
+ * [Api set: WordApi 1.3]
90564
90716
  */
90565
90717
  single = "Single",
90566
90718
  /**
90567
90719
  * @remarks
90568
- * [Api set: WordApi]
90720
+ * [Api set: WordApi 1.3]
90569
90721
  */
90570
90722
  double = "Double",
90571
90723
  /**
90572
90724
  * @remarks
90573
- * [Api set: WordApi]
90725
+ * [Api set: WordApi 1.3]
90574
90726
  */
90575
90727
  dotted = "Dotted",
90576
90728
  /**
90577
90729
  * @remarks
90578
- * [Api set: WordApi]
90730
+ * [Api set: WordApi 1.3]
90579
90731
  */
90580
90732
  dashed = "Dashed",
90581
90733
  /**
90582
90734
  * @remarks
90583
- * [Api set: WordApi]
90735
+ * [Api set: WordApi 1.3]
90584
90736
  */
90585
90737
  dotDashed = "DotDashed",
90586
90738
  /**
90587
90739
  * @remarks
90588
- * [Api set: WordApi]
90740
+ * [Api set: WordApi 1.3]
90589
90741
  */
90590
90742
  dot2Dashed = "Dot2Dashed",
90591
90743
  /**
90592
90744
  * @remarks
90593
- * [Api set: WordApi]
90745
+ * [Api set: WordApi 1.3]
90594
90746
  */
90595
90747
  triple = "Triple",
90596
90748
  /**
90597
90749
  * @remarks
90598
- * [Api set: WordApi]
90750
+ * [Api set: WordApi 1.3]
90599
90751
  */
90600
90752
  thinThickSmall = "ThinThickSmall",
90601
90753
  /**
90602
90754
  * @remarks
90603
- * [Api set: WordApi]
90755
+ * [Api set: WordApi 1.3]
90604
90756
  */
90605
90757
  thickThinSmall = "ThickThinSmall",
90606
90758
  /**
90607
90759
  * @remarks
90608
- * [Api set: WordApi]
90760
+ * [Api set: WordApi 1.3]
90609
90761
  */
90610
90762
  thinThickThinSmall = "ThinThickThinSmall",
90611
90763
  /**
90612
90764
  * @remarks
90613
- * [Api set: WordApi]
90765
+ * [Api set: WordApi 1.3]
90614
90766
  */
90615
90767
  thinThickMed = "ThinThickMed",
90616
90768
  /**
90617
90769
  * @remarks
90618
- * [Api set: WordApi]
90770
+ * [Api set: WordApi 1.3]
90619
90771
  */
90620
90772
  thickThinMed = "ThickThinMed",
90621
90773
  /**
90622
90774
  * @remarks
90623
- * [Api set: WordApi]
90775
+ * [Api set: WordApi 1.3]
90624
90776
  */
90625
90777
  thinThickThinMed = "ThinThickThinMed",
90626
90778
  /**
90627
90779
  * @remarks
90628
- * [Api set: WordApi]
90780
+ * [Api set: WordApi 1.3]
90629
90781
  */
90630
90782
  thinThickLarge = "ThinThickLarge",
90631
90783
  /**
90632
90784
  * @remarks
90633
- * [Api set: WordApi]
90785
+ * [Api set: WordApi 1.3]
90634
90786
  */
90635
90787
  thickThinLarge = "ThickThinLarge",
90636
90788
  /**
90637
90789
  * @remarks
90638
- * [Api set: WordApi]
90790
+ * [Api set: WordApi 1.3]
90639
90791
  */
90640
90792
  thinThickThinLarge = "ThinThickThinLarge",
90641
90793
  /**
90642
90794
  * @remarks
90643
- * [Api set: WordApi]
90795
+ * [Api set: WordApi 1.3]
90644
90796
  */
90645
90797
  wave = "Wave",
90646
90798
  /**
90647
90799
  * @remarks
90648
- * [Api set: WordApi]
90800
+ * [Api set: WordApi 1.3]
90649
90801
  */
90650
90802
  doubleWave = "DoubleWave",
90651
90803
  /**
90652
90804
  * @remarks
90653
- * [Api set: WordApi]
90805
+ * [Api set: WordApi 1.3]
90654
90806
  */
90655
90807
  dashedSmall = "DashedSmall",
90656
90808
  /**
90657
90809
  * @remarks
90658
- * [Api set: WordApi]
90810
+ * [Api set: WordApi 1.3]
90659
90811
  */
90660
90812
  dashDotStroked = "DashDotStroked",
90661
90813
  /**
90662
90814
  * @remarks
90663
- * [Api set: WordApi]
90815
+ * [Api set: WordApi 1.3]
90664
90816
  */
90665
90817
  threeDEmboss = "ThreeDEmboss",
90666
90818
  /**
90667
90819
  * @remarks
90668
- * [Api set: WordApi]
90820
+ * [Api set: WordApi 1.3]
90669
90821
  */
90670
90822
  threeDEngrave = "ThreeDEngrave",
90671
90823
  }
90672
90824
  /**
90673
90825
  * @remarks
90674
- * [Api set: WordApi]
90826
+ * [Api set: WordApi 1.3]
90675
90827
  */
90676
90828
  enum VerticalAlignment {
90677
90829
  /**
90678
90830
  * @remarks
90679
- * [Api set: WordApi]
90831
+ * [Api set: WordApi 1.3]
90680
90832
  */
90681
90833
  mixed = "Mixed",
90682
90834
  /**
90683
90835
  * @remarks
90684
- * [Api set: WordApi]
90836
+ * [Api set: WordApi 1.3]
90685
90837
  */
90686
90838
  top = "Top",
90687
90839
  /**
90688
90840
  * @remarks
90689
- * [Api set: WordApi]
90841
+ * [Api set: WordApi 1.3]
90690
90842
  */
90691
90843
  center = "Center",
90692
90844
  /**
90693
90845
  * @remarks
90694
- * [Api set: WordApi]
90846
+ * [Api set: WordApi 1.3]
90695
90847
  */
90696
90848
  bottom = "Bottom",
90697
90849
  }
90698
90850
  /**
90699
90851
  * @remarks
90700
- * [Api set: WordApi]
90852
+ * [Api set: WordApi 1.3]
90701
90853
  */
90702
90854
  enum ListLevelType {
90703
90855
  /**
90704
90856
  * @remarks
90705
- * [Api set: WordApi]
90857
+ * [Api set: WordApi 1.3]
90706
90858
  */
90707
90859
  bullet = "Bullet",
90708
90860
  /**
90709
90861
  * @remarks
90710
- * [Api set: WordApi]
90862
+ * [Api set: WordApi 1.3]
90711
90863
  */
90712
90864
  number = "Number",
90713
90865
  /**
90714
90866
  * @remarks
90715
- * [Api set: WordApi]
90867
+ * [Api set: WordApi 1.3]
90716
90868
  */
90717
90869
  picture = "Picture",
90718
90870
  }
90719
90871
  /**
90720
90872
  * @remarks
90721
- * [Api set: WordApi]
90873
+ * [Api set: WordApi 1.3]
90722
90874
  */
90723
90875
  enum ListBullet {
90724
90876
  /**
90725
90877
  * @remarks
90726
- * [Api set: WordApi]
90878
+ * [Api set: WordApi 1.3]
90727
90879
  */
90728
90880
  custom = "Custom",
90729
90881
  /**
90730
90882
  * @remarks
90731
- * [Api set: WordApi]
90883
+ * [Api set: WordApi 1.3]
90732
90884
  */
90733
90885
  solid = "Solid",
90734
90886
  /**
90735
90887
  * @remarks
90736
- * [Api set: WordApi]
90888
+ * [Api set: WordApi 1.3]
90737
90889
  */
90738
90890
  hollow = "Hollow",
90739
90891
  /**
90740
90892
  * @remarks
90741
- * [Api set: WordApi]
90893
+ * [Api set: WordApi 1.3]
90742
90894
  */
90743
90895
  square = "Square",
90744
90896
  /**
90745
90897
  * @remarks
90746
- * [Api set: WordApi]
90898
+ * [Api set: WordApi 1.3]
90747
90899
  */
90748
90900
  diamonds = "Diamonds",
90749
90901
  /**
90750
90902
  * @remarks
90751
- * [Api set: WordApi]
90903
+ * [Api set: WordApi 1.3]
90752
90904
  */
90753
90905
  arrow = "Arrow",
90754
90906
  /**
90755
90907
  * @remarks
90756
- * [Api set: WordApi]
90908
+ * [Api set: WordApi 1.3]
90757
90909
  */
90758
90910
  checkmark = "Checkmark",
90759
90911
  }
90760
90912
  /**
90761
90913
  * @remarks
90762
- * [Api set: WordApi]
90914
+ * [Api set: WordApi 1.3]
90763
90915
  */
90764
90916
  enum ListNumbering {
90765
90917
  /**
90766
90918
  * @remarks
90767
- * [Api set: WordApi]
90919
+ * [Api set: WordApi 1.3]
90768
90920
  */
90769
90921
  none = "None",
90770
90922
  /**
90771
90923
  * @remarks
90772
- * [Api set: WordApi]
90924
+ * [Api set: WordApi 1.3]
90773
90925
  */
90774
90926
  arabic = "Arabic",
90775
90927
  /**
90776
90928
  * @remarks
90777
- * [Api set: WordApi]
90929
+ * [Api set: WordApi 1.3]
90778
90930
  */
90779
90931
  upperRoman = "UpperRoman",
90780
90932
  /**
90781
90933
  * @remarks
90782
- * [Api set: WordApi]
90934
+ * [Api set: WordApi 1.3]
90783
90935
  */
90784
90936
  lowerRoman = "LowerRoman",
90785
90937
  /**
90786
90938
  * @remarks
90787
- * [Api set: WordApi]
90939
+ * [Api set: WordApi 1.3]
90788
90940
  */
90789
90941
  upperLetter = "UpperLetter",
90790
90942
  /**
90791
90943
  * @remarks
90792
- * [Api set: WordApi]
90944
+ * [Api set: WordApi 1.3]
90793
90945
  */
90794
90946
  lowerLetter = "LowerLetter",
90795
90947
  }
90796
90948
  /**
90797
90949
  * @remarks
90798
- * [Api set: WordApi]
90950
+ * [Api set: WordApi 1.3]
90799
90951
  */
90800
90952
  enum Style {
90801
90953
  /**
90802
90954
  * Mixed styles or other style not in this list.
90803
90955
  * @remarks
90804
- * [Api set: WordApi]
90956
+ * [Api set: WordApi 1.3]
90805
90957
  */
90806
90958
  other = "Other",
90807
90959
  /**
90808
90960
  * Reset character and paragraph style to default.
90809
90961
  * @remarks
90810
- * [Api set: WordApi]
90962
+ * [Api set: WordApi 1.3]
90811
90963
  */
90812
90964
  normal = "Normal",
90813
90965
  /**
90814
90966
  * @remarks
90815
- * [Api set: WordApi]
90967
+ * [Api set: WordApi 1.3]
90816
90968
  */
90817
90969
  heading1 = "Heading1",
90818
90970
  /**
90819
90971
  * @remarks
90820
- * [Api set: WordApi]
90972
+ * [Api set: WordApi 1.3]
90821
90973
  */
90822
90974
  heading2 = "Heading2",
90823
90975
  /**
90824
90976
  * @remarks
90825
- * [Api set: WordApi]
90977
+ * [Api set: WordApi 1.3]
90826
90978
  */
90827
90979
  heading3 = "Heading3",
90828
90980
  /**
90829
90981
  * @remarks
90830
- * [Api set: WordApi]
90982
+ * [Api set: WordApi 1.3]
90831
90983
  */
90832
90984
  heading4 = "Heading4",
90833
90985
  /**
90834
90986
  * @remarks
90835
- * [Api set: WordApi]
90987
+ * [Api set: WordApi 1.3]
90836
90988
  */
90837
90989
  heading5 = "Heading5",
90838
90990
  /**
90839
90991
  * @remarks
90840
- * [Api set: WordApi]
90992
+ * [Api set: WordApi 1.3]
90841
90993
  */
90842
90994
  heading6 = "Heading6",
90843
90995
  /**
90844
90996
  * @remarks
90845
- * [Api set: WordApi]
90997
+ * [Api set: WordApi 1.3]
90846
90998
  */
90847
90999
  heading7 = "Heading7",
90848
91000
  /**
90849
91001
  * @remarks
90850
- * [Api set: WordApi]
91002
+ * [Api set: WordApi 1.3]
90851
91003
  */
90852
91004
  heading8 = "Heading8",
90853
91005
  /**
90854
91006
  * @remarks
90855
- * [Api set: WordApi]
91007
+ * [Api set: WordApi 1.3]
90856
91008
  */
90857
91009
  heading9 = "Heading9",
90858
91010
  /**
90859
91011
  * Table-of-content level 1.
90860
91012
  * @remarks
90861
- * [Api set: WordApi]
91013
+ * [Api set: WordApi 1.3]
90862
91014
  */
90863
91015
  toc1 = "Toc1",
90864
91016
  /**
90865
91017
  * Table-of-content level 2.
90866
91018
  * @remarks
90867
- * [Api set: WordApi]
91019
+ * [Api set: WordApi 1.3]
90868
91020
  */
90869
91021
  toc2 = "Toc2",
90870
91022
  /**
90871
91023
  * Table-of-content level 3.
90872
91024
  * @remarks
90873
- * [Api set: WordApi]
91025
+ * [Api set: WordApi 1.3]
90874
91026
  */
90875
91027
  toc3 = "Toc3",
90876
91028
  /**
90877
91029
  * Table-of-content level 4.
90878
91030
  * @remarks
90879
- * [Api set: WordApi]
91031
+ * [Api set: WordApi 1.3]
90880
91032
  */
90881
91033
  toc4 = "Toc4",
90882
91034
  /**
90883
91035
  * Table-of-content level 5.
90884
91036
  * @remarks
90885
- * [Api set: WordApi]
91037
+ * [Api set: WordApi 1.3]
90886
91038
  */
90887
91039
  toc5 = "Toc5",
90888
91040
  /**
90889
91041
  * Table-of-content level 6.
90890
91042
  * @remarks
90891
- * [Api set: WordApi]
91043
+ * [Api set: WordApi 1.3]
90892
91044
  */
90893
91045
  toc6 = "Toc6",
90894
91046
  /**
90895
91047
  * Table-of-content level 7.
90896
91048
  * @remarks
90897
- * [Api set: WordApi]
91049
+ * [Api set: WordApi 1.3]
90898
91050
  */
90899
91051
  toc7 = "Toc7",
90900
91052
  /**
90901
91053
  * Table-of-content level 8.
90902
91054
  * @remarks
90903
- * [Api set: WordApi]
91055
+ * [Api set: WordApi 1.3]
90904
91056
  */
90905
91057
  toc8 = "Toc8",
90906
91058
  /**
90907
91059
  * Table-of-content level 9.
90908
91060
  * @remarks
90909
- * [Api set: WordApi]
91061
+ * [Api set: WordApi 1.3]
90910
91062
  */
90911
91063
  toc9 = "Toc9",
90912
91064
  /**
90913
91065
  * @remarks
90914
- * [Api set: WordApi]
91066
+ * [Api set: WordApi 1.3]
90915
91067
  */
90916
91068
  footnoteText = "FootnoteText",
90917
91069
  /**
90918
91070
  * @remarks
90919
- * [Api set: WordApi]
91071
+ * [Api set: WordApi 1.3]
90920
91072
  */
90921
91073
  header = "Header",
90922
91074
  /**
90923
91075
  * @remarks
90924
- * [Api set: WordApi]
91076
+ * [Api set: WordApi 1.3]
90925
91077
  */
90926
91078
  footer = "Footer",
90927
91079
  /**
90928
91080
  * @remarks
90929
- * [Api set: WordApi]
91081
+ * [Api set: WordApi 1.3]
90930
91082
  */
90931
91083
  caption = "Caption",
90932
91084
  /**
90933
91085
  * @remarks
90934
- * [Api set: WordApi]
91086
+ * [Api set: WordApi 1.3]
90935
91087
  */
90936
91088
  footnoteReference = "FootnoteReference",
90937
91089
  /**
90938
91090
  * @remarks
90939
- * [Api set: WordApi]
91091
+ * [Api set: WordApi 1.3]
90940
91092
  */
90941
91093
  endnoteReference = "EndnoteReference",
90942
91094
  /**
90943
91095
  * @remarks
90944
- * [Api set: WordApi]
91096
+ * [Api set: WordApi 1.3]
90945
91097
  */
90946
91098
  endnoteText = "EndnoteText",
90947
91099
  /**
90948
91100
  * @remarks
90949
- * [Api set: WordApi]
91101
+ * [Api set: WordApi 1.3]
90950
91102
  */
90951
91103
  title = "Title",
90952
91104
  /**
90953
91105
  * @remarks
90954
- * [Api set: WordApi]
91106
+ * [Api set: WordApi 1.3]
90955
91107
  */
90956
91108
  subtitle = "Subtitle",
90957
91109
  /**
90958
91110
  * @remarks
90959
- * [Api set: WordApi]
91111
+ * [Api set: WordApi 1.3]
90960
91112
  */
90961
91113
  hyperlink = "Hyperlink",
90962
91114
  /**
90963
91115
  * @remarks
90964
- * [Api set: WordApi]
91116
+ * [Api set: WordApi 1.3]
90965
91117
  */
90966
91118
  strong = "Strong",
90967
91119
  /**
90968
91120
  * @remarks
90969
- * [Api set: WordApi]
91121
+ * [Api set: WordApi 1.3]
90970
91122
  */
90971
91123
  emphasis = "Emphasis",
90972
91124
  /**
90973
91125
  * @remarks
90974
- * [Api set: WordApi]
91126
+ * [Api set: WordApi 1.3]
90975
91127
  */
90976
91128
  noSpacing = "NoSpacing",
90977
91129
  /**
90978
91130
  * @remarks
90979
- * [Api set: WordApi]
91131
+ * [Api set: WordApi 1.3]
90980
91132
  */
90981
91133
  listParagraph = "ListParagraph",
90982
91134
  /**
90983
91135
  * @remarks
90984
- * [Api set: WordApi]
91136
+ * [Api set: WordApi 1.3]
90985
91137
  */
90986
91138
  quote = "Quote",
90987
91139
  /**
90988
91140
  * @remarks
90989
- * [Api set: WordApi]
91141
+ * [Api set: WordApi 1.3]
90990
91142
  */
90991
91143
  intenseQuote = "IntenseQuote",
90992
91144
  /**
90993
91145
  * @remarks
90994
- * [Api set: WordApi]
91146
+ * [Api set: WordApi 1.3]
90995
91147
  */
90996
91148
  subtleEmphasis = "SubtleEmphasis",
90997
91149
  /**
90998
91150
  * @remarks
90999
- * [Api set: WordApi]
91151
+ * [Api set: WordApi 1.3]
91000
91152
  */
91001
91153
  intenseEmphasis = "IntenseEmphasis",
91002
91154
  /**
91003
91155
  * @remarks
91004
- * [Api set: WordApi]
91156
+ * [Api set: WordApi 1.3]
91005
91157
  */
91006
91158
  subtleReference = "SubtleReference",
91007
91159
  /**
91008
91160
  * @remarks
91009
- * [Api set: WordApi]
91161
+ * [Api set: WordApi 1.3]
91010
91162
  */
91011
91163
  intenseReference = "IntenseReference",
91012
91164
  /**
91013
91165
  * @remarks
91014
- * [Api set: WordApi]
91166
+ * [Api set: WordApi 1.3]
91015
91167
  */
91016
91168
  bookTitle = "BookTitle",
91017
91169
  /**
91018
91170
  * @remarks
91019
- * [Api set: WordApi]
91171
+ * [Api set: WordApi 1.3]
91020
91172
  */
91021
91173
  bibliography = "Bibliography",
91022
91174
  /**
91023
91175
  * Table-of-content heading.
91024
91176
  * @remarks
91025
- * [Api set: WordApi]
91177
+ * [Api set: WordApi 1.3]
91026
91178
  */
91027
91179
  tocHeading = "TocHeading",
91028
91180
  /**
91029
91181
  * @remarks
91030
- * [Api set: WordApi]
91182
+ * [Api set: WordApi 1.3]
91031
91183
  */
91032
91184
  tableGrid = "TableGrid",
91033
91185
  /**
91034
91186
  * @remarks
91035
- * [Api set: WordApi]
91187
+ * [Api set: WordApi 1.3]
91036
91188
  */
91037
91189
  plainTable1 = "PlainTable1",
91038
91190
  /**
91039
91191
  * @remarks
91040
- * [Api set: WordApi]
91192
+ * [Api set: WordApi 1.3]
91041
91193
  */
91042
91194
  plainTable2 = "PlainTable2",
91043
91195
  /**
91044
91196
  * @remarks
91045
- * [Api set: WordApi]
91197
+ * [Api set: WordApi 1.3]
91046
91198
  */
91047
91199
  plainTable3 = "PlainTable3",
91048
91200
  /**
91049
91201
  * @remarks
91050
- * [Api set: WordApi]
91202
+ * [Api set: WordApi 1.3]
91051
91203
  */
91052
91204
  plainTable4 = "PlainTable4",
91053
91205
  /**
91054
91206
  * @remarks
91055
- * [Api set: WordApi]
91207
+ * [Api set: WordApi 1.3]
91056
91208
  */
91057
91209
  plainTable5 = "PlainTable5",
91058
91210
  /**
91059
91211
  * @remarks
91060
- * [Api set: WordApi]
91212
+ * [Api set: WordApi 1.3]
91061
91213
  */
91062
91214
  tableGridLight = "TableGridLight",
91063
91215
  /**
91064
91216
  * @remarks
91065
- * [Api set: WordApi]
91217
+ * [Api set: WordApi 1.3]
91066
91218
  */
91067
91219
  gridTable1Light = "GridTable1Light",
91068
91220
  /**
91069
91221
  * @remarks
91070
- * [Api set: WordApi]
91222
+ * [Api set: WordApi 1.3]
91071
91223
  */
91072
91224
  gridTable1Light_Accent1 = "GridTable1Light_Accent1",
91073
91225
  /**
91074
91226
  * @remarks
91075
- * [Api set: WordApi]
91227
+ * [Api set: WordApi 1.3]
91076
91228
  */
91077
91229
  gridTable1Light_Accent2 = "GridTable1Light_Accent2",
91078
91230
  /**
91079
91231
  * @remarks
91080
- * [Api set: WordApi]
91232
+ * [Api set: WordApi 1.3]
91081
91233
  */
91082
91234
  gridTable1Light_Accent3 = "GridTable1Light_Accent3",
91083
91235
  /**
91084
91236
  * @remarks
91085
- * [Api set: WordApi]
91237
+ * [Api set: WordApi 1.3]
91086
91238
  */
91087
91239
  gridTable1Light_Accent4 = "GridTable1Light_Accent4",
91088
91240
  /**
91089
91241
  * @remarks
91090
- * [Api set: WordApi]
91242
+ * [Api set: WordApi 1.3]
91091
91243
  */
91092
91244
  gridTable1Light_Accent5 = "GridTable1Light_Accent5",
91093
91245
  /**
91094
91246
  * @remarks
91095
- * [Api set: WordApi]
91247
+ * [Api set: WordApi 1.3]
91096
91248
  */
91097
91249
  gridTable1Light_Accent6 = "GridTable1Light_Accent6",
91098
91250
  /**
91099
91251
  * @remarks
91100
- * [Api set: WordApi]
91252
+ * [Api set: WordApi 1.3]
91101
91253
  */
91102
91254
  gridTable2 = "GridTable2",
91103
91255
  /**
91104
91256
  * @remarks
91105
- * [Api set: WordApi]
91257
+ * [Api set: WordApi 1.3]
91106
91258
  */
91107
91259
  gridTable2_Accent1 = "GridTable2_Accent1",
91108
91260
  /**
91109
91261
  * @remarks
91110
- * [Api set: WordApi]
91262
+ * [Api set: WordApi 1.3]
91111
91263
  */
91112
91264
  gridTable2_Accent2 = "GridTable2_Accent2",
91113
91265
  /**
91114
91266
  * @remarks
91115
- * [Api set: WordApi]
91267
+ * [Api set: WordApi 1.3]
91116
91268
  */
91117
91269
  gridTable2_Accent3 = "GridTable2_Accent3",
91118
91270
  /**
91119
91271
  * @remarks
91120
- * [Api set: WordApi]
91272
+ * [Api set: WordApi 1.3]
91121
91273
  */
91122
91274
  gridTable2_Accent4 = "GridTable2_Accent4",
91123
91275
  /**
91124
91276
  * @remarks
91125
- * [Api set: WordApi]
91277
+ * [Api set: WordApi 1.3]
91126
91278
  */
91127
91279
  gridTable2_Accent5 = "GridTable2_Accent5",
91128
91280
  /**
91129
91281
  * @remarks
91130
- * [Api set: WordApi]
91282
+ * [Api set: WordApi 1.3]
91131
91283
  */
91132
91284
  gridTable2_Accent6 = "GridTable2_Accent6",
91133
91285
  /**
91134
91286
  * @remarks
91135
- * [Api set: WordApi]
91287
+ * [Api set: WordApi 1.3]
91136
91288
  */
91137
91289
  gridTable3 = "GridTable3",
91138
91290
  /**
91139
91291
  * @remarks
91140
- * [Api set: WordApi]
91292
+ * [Api set: WordApi 1.3]
91141
91293
  */
91142
91294
  gridTable3_Accent1 = "GridTable3_Accent1",
91143
91295
  /**
91144
91296
  * @remarks
91145
- * [Api set: WordApi]
91297
+ * [Api set: WordApi 1.3]
91146
91298
  */
91147
91299
  gridTable3_Accent2 = "GridTable3_Accent2",
91148
91300
  /**
91149
91301
  * @remarks
91150
- * [Api set: WordApi]
91302
+ * [Api set: WordApi 1.3]
91151
91303
  */
91152
91304
  gridTable3_Accent3 = "GridTable3_Accent3",
91153
91305
  /**
91154
91306
  * @remarks
91155
- * [Api set: WordApi]
91307
+ * [Api set: WordApi 1.3]
91156
91308
  */
91157
91309
  gridTable3_Accent4 = "GridTable3_Accent4",
91158
91310
  /**
91159
91311
  * @remarks
91160
- * [Api set: WordApi]
91312
+ * [Api set: WordApi 1.3]
91161
91313
  */
91162
91314
  gridTable3_Accent5 = "GridTable3_Accent5",
91163
91315
  /**
91164
91316
  * @remarks
91165
- * [Api set: WordApi]
91317
+ * [Api set: WordApi 1.3]
91166
91318
  */
91167
91319
  gridTable3_Accent6 = "GridTable3_Accent6",
91168
91320
  /**
91169
91321
  * @remarks
91170
- * [Api set: WordApi]
91322
+ * [Api set: WordApi 1.3]
91171
91323
  */
91172
91324
  gridTable4 = "GridTable4",
91173
91325
  /**
91174
91326
  * @remarks
91175
- * [Api set: WordApi]
91327
+ * [Api set: WordApi 1.3]
91176
91328
  */
91177
91329
  gridTable4_Accent1 = "GridTable4_Accent1",
91178
91330
  /**
91179
91331
  * @remarks
91180
- * [Api set: WordApi]
91332
+ * [Api set: WordApi 1.3]
91181
91333
  */
91182
91334
  gridTable4_Accent2 = "GridTable4_Accent2",
91183
91335
  /**
91184
91336
  * @remarks
91185
- * [Api set: WordApi]
91337
+ * [Api set: WordApi 1.3]
91186
91338
  */
91187
91339
  gridTable4_Accent3 = "GridTable4_Accent3",
91188
91340
  /**
91189
91341
  * @remarks
91190
- * [Api set: WordApi]
91342
+ * [Api set: WordApi 1.3]
91191
91343
  */
91192
91344
  gridTable4_Accent4 = "GridTable4_Accent4",
91193
91345
  /**
91194
91346
  * @remarks
91195
- * [Api set: WordApi]
91347
+ * [Api set: WordApi 1.3]
91196
91348
  */
91197
91349
  gridTable4_Accent5 = "GridTable4_Accent5",
91198
91350
  /**
91199
91351
  * @remarks
91200
- * [Api set: WordApi]
91352
+ * [Api set: WordApi 1.3]
91201
91353
  */
91202
91354
  gridTable4_Accent6 = "GridTable4_Accent6",
91203
91355
  /**
91204
91356
  * @remarks
91205
- * [Api set: WordApi]
91357
+ * [Api set: WordApi 1.3]
91206
91358
  */
91207
91359
  gridTable5Dark = "GridTable5Dark",
91208
91360
  /**
91209
91361
  * @remarks
91210
- * [Api set: WordApi]
91362
+ * [Api set: WordApi 1.3]
91211
91363
  */
91212
91364
  gridTable5Dark_Accent1 = "GridTable5Dark_Accent1",
91213
91365
  /**
91214
91366
  * @remarks
91215
- * [Api set: WordApi]
91367
+ * [Api set: WordApi 1.3]
91216
91368
  */
91217
91369
  gridTable5Dark_Accent2 = "GridTable5Dark_Accent2",
91218
91370
  /**
91219
91371
  * @remarks
91220
- * [Api set: WordApi]
91372
+ * [Api set: WordApi 1.3]
91221
91373
  */
91222
91374
  gridTable5Dark_Accent3 = "GridTable5Dark_Accent3",
91223
91375
  /**
91224
91376
  * @remarks
91225
- * [Api set: WordApi]
91377
+ * [Api set: WordApi 1.3]
91226
91378
  */
91227
91379
  gridTable5Dark_Accent4 = "GridTable5Dark_Accent4",
91228
91380
  /**
91229
91381
  * @remarks
91230
- * [Api set: WordApi]
91382
+ * [Api set: WordApi 1.3]
91231
91383
  */
91232
91384
  gridTable5Dark_Accent5 = "GridTable5Dark_Accent5",
91233
91385
  /**
91234
91386
  * @remarks
91235
- * [Api set: WordApi]
91387
+ * [Api set: WordApi 1.3]
91236
91388
  */
91237
91389
  gridTable5Dark_Accent6 = "GridTable5Dark_Accent6",
91238
91390
  /**
91239
91391
  * @remarks
91240
- * [Api set: WordApi]
91392
+ * [Api set: WordApi 1.3]
91241
91393
  */
91242
91394
  gridTable6Colorful = "GridTable6Colorful",
91243
91395
  /**
91244
91396
  * @remarks
91245
- * [Api set: WordApi]
91397
+ * [Api set: WordApi 1.3]
91246
91398
  */
91247
91399
  gridTable6Colorful_Accent1 = "GridTable6Colorful_Accent1",
91248
91400
  /**
91249
91401
  * @remarks
91250
- * [Api set: WordApi]
91402
+ * [Api set: WordApi 1.3]
91251
91403
  */
91252
91404
  gridTable6Colorful_Accent2 = "GridTable6Colorful_Accent2",
91253
91405
  /**
91254
91406
  * @remarks
91255
- * [Api set: WordApi]
91407
+ * [Api set: WordApi 1.3]
91256
91408
  */
91257
91409
  gridTable6Colorful_Accent3 = "GridTable6Colorful_Accent3",
91258
91410
  /**
91259
91411
  * @remarks
91260
- * [Api set: WordApi]
91412
+ * [Api set: WordApi 1.3]
91261
91413
  */
91262
91414
  gridTable6Colorful_Accent4 = "GridTable6Colorful_Accent4",
91263
91415
  /**
91264
91416
  * @remarks
91265
- * [Api set: WordApi]
91417
+ * [Api set: WordApi 1.3]
91266
91418
  */
91267
91419
  gridTable6Colorful_Accent5 = "GridTable6Colorful_Accent5",
91268
91420
  /**
91269
91421
  * @remarks
91270
- * [Api set: WordApi]
91422
+ * [Api set: WordApi 1.3]
91271
91423
  */
91272
91424
  gridTable6Colorful_Accent6 = "GridTable6Colorful_Accent6",
91273
91425
  /**
91274
91426
  * @remarks
91275
- * [Api set: WordApi]
91427
+ * [Api set: WordApi 1.3]
91276
91428
  */
91277
91429
  gridTable7Colorful = "GridTable7Colorful",
91278
91430
  /**
91279
91431
  * @remarks
91280
- * [Api set: WordApi]
91432
+ * [Api set: WordApi 1.3]
91281
91433
  */
91282
91434
  gridTable7Colorful_Accent1 = "GridTable7Colorful_Accent1",
91283
91435
  /**
91284
91436
  * @remarks
91285
- * [Api set: WordApi]
91437
+ * [Api set: WordApi 1.3]
91286
91438
  */
91287
91439
  gridTable7Colorful_Accent2 = "GridTable7Colorful_Accent2",
91288
91440
  /**
91289
91441
  * @remarks
91290
- * [Api set: WordApi]
91442
+ * [Api set: WordApi 1.3]
91291
91443
  */
91292
91444
  gridTable7Colorful_Accent3 = "GridTable7Colorful_Accent3",
91293
91445
  /**
91294
91446
  * @remarks
91295
- * [Api set: WordApi]
91447
+ * [Api set: WordApi 1.3]
91296
91448
  */
91297
91449
  gridTable7Colorful_Accent4 = "GridTable7Colorful_Accent4",
91298
91450
  /**
91299
91451
  * @remarks
91300
- * [Api set: WordApi]
91452
+ * [Api set: WordApi 1.3]
91301
91453
  */
91302
91454
  gridTable7Colorful_Accent5 = "GridTable7Colorful_Accent5",
91303
91455
  /**
91304
91456
  * @remarks
91305
- * [Api set: WordApi]
91457
+ * [Api set: WordApi 1.3]
91306
91458
  */
91307
91459
  gridTable7Colorful_Accent6 = "GridTable7Colorful_Accent6",
91308
91460
  /**
91309
91461
  * @remarks
91310
- * [Api set: WordApi]
91462
+ * [Api set: WordApi 1.3]
91311
91463
  */
91312
91464
  listTable1Light = "ListTable1Light",
91313
91465
  /**
91314
91466
  * @remarks
91315
- * [Api set: WordApi]
91467
+ * [Api set: WordApi 1.3]
91316
91468
  */
91317
91469
  listTable1Light_Accent1 = "ListTable1Light_Accent1",
91318
91470
  /**
91319
91471
  * @remarks
91320
- * [Api set: WordApi]
91472
+ * [Api set: WordApi 1.3]
91321
91473
  */
91322
91474
  listTable1Light_Accent2 = "ListTable1Light_Accent2",
91323
91475
  /**
91324
91476
  * @remarks
91325
- * [Api set: WordApi]
91477
+ * [Api set: WordApi 1.3]
91326
91478
  */
91327
91479
  listTable1Light_Accent3 = "ListTable1Light_Accent3",
91328
91480
  /**
91329
91481
  * @remarks
91330
- * [Api set: WordApi]
91482
+ * [Api set: WordApi 1.3]
91331
91483
  */
91332
91484
  listTable1Light_Accent4 = "ListTable1Light_Accent4",
91333
91485
  /**
91334
91486
  * @remarks
91335
- * [Api set: WordApi]
91487
+ * [Api set: WordApi 1.3]
91336
91488
  */
91337
91489
  listTable1Light_Accent5 = "ListTable1Light_Accent5",
91338
91490
  /**
91339
91491
  * @remarks
91340
- * [Api set: WordApi]
91492
+ * [Api set: WordApi 1.3]
91341
91493
  */
91342
91494
  listTable1Light_Accent6 = "ListTable1Light_Accent6",
91343
91495
  /**
91344
91496
  * @remarks
91345
- * [Api set: WordApi]
91497
+ * [Api set: WordApi 1.3]
91346
91498
  */
91347
91499
  listTable2 = "ListTable2",
91348
91500
  /**
91349
91501
  * @remarks
91350
- * [Api set: WordApi]
91502
+ * [Api set: WordApi 1.3]
91351
91503
  */
91352
91504
  listTable2_Accent1 = "ListTable2_Accent1",
91353
91505
  /**
91354
91506
  * @remarks
91355
- * [Api set: WordApi]
91507
+ * [Api set: WordApi 1.3]
91356
91508
  */
91357
91509
  listTable2_Accent2 = "ListTable2_Accent2",
91358
91510
  /**
91359
91511
  * @remarks
91360
- * [Api set: WordApi]
91512
+ * [Api set: WordApi 1.3]
91361
91513
  */
91362
91514
  listTable2_Accent3 = "ListTable2_Accent3",
91363
91515
  /**
91364
91516
  * @remarks
91365
- * [Api set: WordApi]
91517
+ * [Api set: WordApi 1.3]
91366
91518
  */
91367
91519
  listTable2_Accent4 = "ListTable2_Accent4",
91368
91520
  /**
91369
91521
  * @remarks
91370
- * [Api set: WordApi]
91522
+ * [Api set: WordApi 1.3]
91371
91523
  */
91372
91524
  listTable2_Accent5 = "ListTable2_Accent5",
91373
91525
  /**
91374
91526
  * @remarks
91375
- * [Api set: WordApi]
91527
+ * [Api set: WordApi 1.3]
91376
91528
  */
91377
91529
  listTable2_Accent6 = "ListTable2_Accent6",
91378
91530
  /**
91379
91531
  * @remarks
91380
- * [Api set: WordApi]
91532
+ * [Api set: WordApi 1.3]
91381
91533
  */
91382
91534
  listTable3 = "ListTable3",
91383
91535
  /**
91384
91536
  * @remarks
91385
- * [Api set: WordApi]
91537
+ * [Api set: WordApi 1.3]
91386
91538
  */
91387
91539
  listTable3_Accent1 = "ListTable3_Accent1",
91388
91540
  /**
91389
91541
  * @remarks
91390
- * [Api set: WordApi]
91542
+ * [Api set: WordApi 1.3]
91391
91543
  */
91392
91544
  listTable3_Accent2 = "ListTable3_Accent2",
91393
91545
  /**
91394
91546
  * @remarks
91395
- * [Api set: WordApi]
91547
+ * [Api set: WordApi 1.3]
91396
91548
  */
91397
91549
  listTable3_Accent3 = "ListTable3_Accent3",
91398
91550
  /**
91399
91551
  * @remarks
91400
- * [Api set: WordApi]
91552
+ * [Api set: WordApi 1.3]
91401
91553
  */
91402
91554
  listTable3_Accent4 = "ListTable3_Accent4",
91403
91555
  /**
91404
91556
  * @remarks
91405
- * [Api set: WordApi]
91557
+ * [Api set: WordApi 1.3]
91406
91558
  */
91407
91559
  listTable3_Accent5 = "ListTable3_Accent5",
91408
91560
  /**
91409
91561
  * @remarks
91410
- * [Api set: WordApi]
91562
+ * [Api set: WordApi 1.3]
91411
91563
  */
91412
91564
  listTable3_Accent6 = "ListTable3_Accent6",
91413
91565
  /**
91414
91566
  * @remarks
91415
- * [Api set: WordApi]
91567
+ * [Api set: WordApi 1.3]
91416
91568
  */
91417
91569
  listTable4 = "ListTable4",
91418
91570
  /**
91419
91571
  * @remarks
91420
- * [Api set: WordApi]
91572
+ * [Api set: WordApi 1.3]
91421
91573
  */
91422
91574
  listTable4_Accent1 = "ListTable4_Accent1",
91423
91575
  /**
91424
91576
  * @remarks
91425
- * [Api set: WordApi]
91577
+ * [Api set: WordApi 1.3]
91426
91578
  */
91427
91579
  listTable4_Accent2 = "ListTable4_Accent2",
91428
91580
  /**
91429
91581
  * @remarks
91430
- * [Api set: WordApi]
91582
+ * [Api set: WordApi 1.3]
91431
91583
  */
91432
91584
  listTable4_Accent3 = "ListTable4_Accent3",
91433
91585
  /**
91434
91586
  * @remarks
91435
- * [Api set: WordApi]
91587
+ * [Api set: WordApi 1.3]
91436
91588
  */
91437
91589
  listTable4_Accent4 = "ListTable4_Accent4",
91438
91590
  /**
91439
91591
  * @remarks
91440
- * [Api set: WordApi]
91592
+ * [Api set: WordApi 1.3]
91441
91593
  */
91442
91594
  listTable4_Accent5 = "ListTable4_Accent5",
91443
91595
  /**
91444
91596
  * @remarks
91445
- * [Api set: WordApi]
91597
+ * [Api set: WordApi 1.3]
91446
91598
  */
91447
91599
  listTable4_Accent6 = "ListTable4_Accent6",
91448
91600
  /**
91449
91601
  * @remarks
91450
- * [Api set: WordApi]
91602
+ * [Api set: WordApi 1.3]
91451
91603
  */
91452
91604
  listTable5Dark = "ListTable5Dark",
91453
91605
  /**
91454
91606
  * @remarks
91455
- * [Api set: WordApi]
91607
+ * [Api set: WordApi 1.3]
91456
91608
  */
91457
91609
  listTable5Dark_Accent1 = "ListTable5Dark_Accent1",
91458
91610
  /**
91459
91611
  * @remarks
91460
- * [Api set: WordApi]
91612
+ * [Api set: WordApi 1.3]
91461
91613
  */
91462
91614
  listTable5Dark_Accent2 = "ListTable5Dark_Accent2",
91463
91615
  /**
91464
91616
  * @remarks
91465
- * [Api set: WordApi]
91617
+ * [Api set: WordApi 1.3]
91466
91618
  */
91467
91619
  listTable5Dark_Accent3 = "ListTable5Dark_Accent3",
91468
91620
  /**
91469
91621
  * @remarks
91470
- * [Api set: WordApi]
91622
+ * [Api set: WordApi 1.3]
91471
91623
  */
91472
91624
  listTable5Dark_Accent4 = "ListTable5Dark_Accent4",
91473
91625
  /**
91474
91626
  * @remarks
91475
- * [Api set: WordApi]
91627
+ * [Api set: WordApi 1.3]
91476
91628
  */
91477
91629
  listTable5Dark_Accent5 = "ListTable5Dark_Accent5",
91478
91630
  /**
91479
91631
  * @remarks
91480
- * [Api set: WordApi]
91632
+ * [Api set: WordApi 1.3]
91481
91633
  */
91482
91634
  listTable5Dark_Accent6 = "ListTable5Dark_Accent6",
91483
91635
  /**
91484
91636
  * @remarks
91485
- * [Api set: WordApi]
91637
+ * [Api set: WordApi 1.3]
91486
91638
  */
91487
91639
  listTable6Colorful = "ListTable6Colorful",
91488
91640
  /**
91489
91641
  * @remarks
91490
- * [Api set: WordApi]
91642
+ * [Api set: WordApi 1.3]
91491
91643
  */
91492
91644
  listTable6Colorful_Accent1 = "ListTable6Colorful_Accent1",
91493
91645
  /**
91494
91646
  * @remarks
91495
- * [Api set: WordApi]
91647
+ * [Api set: WordApi 1.3]
91496
91648
  */
91497
91649
  listTable6Colorful_Accent2 = "ListTable6Colorful_Accent2",
91498
91650
  /**
91499
91651
  * @remarks
91500
- * [Api set: WordApi]
91652
+ * [Api set: WordApi 1.3]
91501
91653
  */
91502
91654
  listTable6Colorful_Accent3 = "ListTable6Colorful_Accent3",
91503
91655
  /**
91504
91656
  * @remarks
91505
- * [Api set: WordApi]
91657
+ * [Api set: WordApi 1.3]
91506
91658
  */
91507
91659
  listTable6Colorful_Accent4 = "ListTable6Colorful_Accent4",
91508
91660
  /**
91509
91661
  * @remarks
91510
- * [Api set: WordApi]
91662
+ * [Api set: WordApi 1.3]
91511
91663
  */
91512
91664
  listTable6Colorful_Accent5 = "ListTable6Colorful_Accent5",
91513
91665
  /**
91514
91666
  * @remarks
91515
- * [Api set: WordApi]
91667
+ * [Api set: WordApi 1.3]
91516
91668
  */
91517
91669
  listTable6Colorful_Accent6 = "ListTable6Colorful_Accent6",
91518
91670
  /**
91519
91671
  * @remarks
91520
- * [Api set: WordApi]
91672
+ * [Api set: WordApi 1.3]
91521
91673
  */
91522
91674
  listTable7Colorful = "ListTable7Colorful",
91523
91675
  /**
91524
91676
  * @remarks
91525
- * [Api set: WordApi]
91677
+ * [Api set: WordApi 1.3]
91526
91678
  */
91527
91679
  listTable7Colorful_Accent1 = "ListTable7Colorful_Accent1",
91528
91680
  /**
91529
91681
  * @remarks
91530
- * [Api set: WordApi]
91682
+ * [Api set: WordApi 1.3]
91531
91683
  */
91532
91684
  listTable7Colorful_Accent2 = "ListTable7Colorful_Accent2",
91533
91685
  /**
91534
91686
  * @remarks
91535
- * [Api set: WordApi]
91687
+ * [Api set: WordApi 1.3]
91536
91688
  */
91537
91689
  listTable7Colorful_Accent3 = "ListTable7Colorful_Accent3",
91538
91690
  /**
91539
91691
  * @remarks
91540
- * [Api set: WordApi]
91692
+ * [Api set: WordApi 1.3]
91541
91693
  */
91542
91694
  listTable7Colorful_Accent4 = "ListTable7Colorful_Accent4",
91543
91695
  /**
91544
91696
  * @remarks
91545
- * [Api set: WordApi]
91697
+ * [Api set: WordApi 1.3]
91546
91698
  */
91547
91699
  listTable7Colorful_Accent5 = "ListTable7Colorful_Accent5",
91548
91700
  /**
91549
91701
  * @remarks
91550
- * [Api set: WordApi]
91702
+ * [Api set: WordApi 1.3]
91551
91703
  */
91552
91704
  listTable7Colorful_Accent6 = "ListTable7Colorful_Accent6",
91553
91705
  }
91554
91706
  /**
91555
91707
  * @remarks
91556
- * [Api set: WordApi]
91708
+ * [Api set: WordApi 1.3]
91557
91709
  */
91558
91710
  enum DocumentPropertyType {
91559
91711
  /**
91560
91712
  * @remarks
91561
- * [Api set: WordApi]
91713
+ * [Api set: WordApi 1.3]
91562
91714
  */
91563
91715
  string = "String",
91564
91716
  /**
91565
91717
  * @remarks
91566
- * [Api set: WordApi]
91718
+ * [Api set: WordApi 1.3]
91567
91719
  */
91568
91720
  number = "Number",
91569
91721
  /**
91570
91722
  * @remarks
91571
- * [Api set: WordApi]
91723
+ * [Api set: WordApi 1.3]
91572
91724
  */
91573
91725
  date = "Date",
91574
91726
  /**
91575
91727
  * @remarks
91576
- * [Api set: WordApi]
91728
+ * [Api set: WordApi 1.3]
91577
91729
  */
91578
91730
  boolean = "Boolean",
91579
91731
  }
91580
- /**
91581
- * @remarks
91582
- * [Api set: WordApi]
91583
- */
91584
- enum TapObjectType {
91585
- /**
91586
- * @remarks
91587
- * [Api set: WordApi]
91588
- */
91589
- chart = "Chart",
91590
- /**
91591
- * @remarks
91592
- * [Api set: WordApi]
91593
- */
91594
- smartArt = "SmartArt",
91595
- /**
91596
- * @remarks
91597
- * [Api set: WordApi]
91598
- */
91599
- table = "Table",
91600
- /**
91601
- * @remarks
91602
- * [Api set: WordApi]
91603
- */
91604
- image = "Image",
91605
- /**
91606
- * @remarks
91607
- * [Api set: WordApi]
91608
- */
91609
- slide = "Slide",
91610
- /**
91611
- * @remarks
91612
- * [Api set: WordApi]
91613
- */
91614
- ole = "OLE",
91615
- /**
91616
- * @remarks
91617
- * [Api set: WordApi]
91618
- */
91619
- text = "Text",
91620
- }
91621
- /**
91622
- * @remarks
91623
- * [Api set: WordApi]
91624
- */
91625
- enum FileContentFormat {
91626
- /**
91627
- * @remarks
91628
- * [Api set: WordApi]
91629
- */
91630
- base64 = "Base64",
91631
- /**
91632
- * @remarks
91633
- * [Api set: WordApi]
91634
- */
91635
- html = "Html",
91636
- /**
91637
- * @remarks
91638
- * [Api set: WordApi]
91639
- */
91640
- ooxml = "Ooxml",
91641
- }
91642
91732
  enum ErrorCodes {
91643
91733
  accessDenied = "AccessDenied",
91644
91734
  generalException = "GeneralException",
@@ -91688,6 +91778,14 @@ declare namespace Word {
91688
91778
  }
91689
91779
  /** An interface for updating data on the Comment object, for use in `comment.set({ ... })`. */
91690
91780
  interface CommentUpdateData {
91781
+ /**
91782
+ * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
91783
+ *
91784
+ * @remarks
91785
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
91786
+ * @beta
91787
+ */
91788
+ contentRange?: Word.Interfaces.CommentContentRangeUpdateData;
91691
91789
  /**
91692
91790
  * Gets or sets the comment's content as plain text.
91693
91791
  *
@@ -91697,7 +91795,7 @@ declare namespace Word {
91697
91795
  */
91698
91796
  content?: string;
91699
91797
  /**
91700
- * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
91798
+ * 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.
91701
91799
  *
91702
91800
  * @remarks
91703
91801
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -91709,8 +91807,59 @@ declare namespace Word {
91709
91807
  interface CommentCollectionUpdateData {
91710
91808
  items?: Word.Interfaces.CommentData[];
91711
91809
  }
91810
+ /** An interface for updating data on the CommentContentRange object, for use in `commentContentRange.set({ ... })`. */
91811
+ interface CommentContentRangeUpdateData {
91812
+ /**
91813
+ * Gets or sets a value that indicates whether the comment text is bold.
91814
+ *
91815
+ * @remarks
91816
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
91817
+ * @beta
91818
+ */
91819
+ bold?: boolean;
91820
+ /**
91821
+ * 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.
91822
+ *
91823
+ * @remarks
91824
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
91825
+ * @beta
91826
+ */
91827
+ hyperlink?: string;
91828
+ /**
91829
+ * Gets or sets a value that indicates whether the comment text is italicized.
91830
+ *
91831
+ * @remarks
91832
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
91833
+ * @beta
91834
+ */
91835
+ italic?: boolean;
91836
+ /**
91837
+ * Gets or sets a value that indicates whether the comment text has a strikethrough.
91838
+ *
91839
+ * @remarks
91840
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
91841
+ * @beta
91842
+ */
91843
+ strikeThrough?: boolean;
91844
+ /**
91845
+ * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
91846
+ *
91847
+ * @remarks
91848
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
91849
+ * @beta
91850
+ */
91851
+ underline?: Word.UnderlineType | "Mixed" | "None" | "Hidden" | "DotLine" | "Single" | "Word" | "Double" | "Thick" | "Dotted" | "DottedHeavy" | "DashLine" | "DashLineHeavy" | "DashLineLong" | "DashLineLongHeavy" | "DotDashLine" | "DotDashLineHeavy" | "TwoDotDashLine" | "TwoDotDashLineHeavy" | "Wave" | "WaveHeavy" | "WaveDouble";
91852
+ }
91712
91853
  /** An interface for updating data on the CommentReply object, for use in `commentReply.set({ ... })`. */
91713
91854
  interface CommentReplyUpdateData {
91855
+ /**
91856
+ * Gets or sets the commentReply's content range.
91857
+ *
91858
+ * @remarks
91859
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
91860
+ * @beta
91861
+ */
91862
+ contentRange?: Word.Interfaces.CommentContentRangeUpdateData;
91714
91863
  /**
91715
91864
  * Gets the parent comment of this reply.
91716
91865
  *
@@ -91868,7 +92017,7 @@ declare namespace Word {
91868
92017
  /** An interface for updating data on the DocumentCreated object, for use in `documentCreated.set({ ... })`. */
91869
92018
  interface DocumentCreatedUpdateData {
91870
92019
  /**
91871
- * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc..
92020
+ * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.
91872
92021
  *
91873
92022
  * @remarks
91874
92023
  * [Api set: WordApiHiddenDocument 1.3]
@@ -92608,7 +92757,7 @@ declare namespace Word {
92608
92757
  */
92609
92758
  lists?: Word.Interfaces.ListData[];
92610
92759
  /**
92611
- * Gets the collection of paragraph objects in the body. Read-only.
92760
+ * 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.
92612
92761
  *
92613
92762
  * @remarks
92614
92763
  * [Api set: WordApi 1.1]
@@ -92652,6 +92801,14 @@ declare namespace Word {
92652
92801
  }
92653
92802
  /** An interface describing the data returned by calling `comment.toJSON()`. */
92654
92803
  interface CommentData {
92804
+ /**
92805
+ * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
92806
+ *
92807
+ * @remarks
92808
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92809
+ * @beta
92810
+ */
92811
+ contentRange?: Word.Interfaces.CommentContentRangeData;
92655
92812
  /**
92656
92813
  * Gets the collection of reply objects associated with the comment.
92657
92814
  *
@@ -92696,11 +92853,12 @@ declare namespace Word {
92696
92853
  * ID
92697
92854
  *
92698
92855
  * @remarks
92699
- * [Api set: WordApi]
92856
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92857
+ * @beta
92700
92858
  */
92701
92859
  id?: string;
92702
92860
  /**
92703
- * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
92861
+ * 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.
92704
92862
  *
92705
92863
  * @remarks
92706
92864
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -92712,8 +92870,75 @@ declare namespace Word {
92712
92870
  interface CommentCollectionData {
92713
92871
  items?: Word.Interfaces.CommentData[];
92714
92872
  }
92873
+ /** An interface describing the data returned by calling `commentContentRange.toJSON()`. */
92874
+ interface CommentContentRangeData {
92875
+ /**
92876
+ * Gets or sets a value that indicates whether the comment text is bold.
92877
+ *
92878
+ * @remarks
92879
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92880
+ * @beta
92881
+ */
92882
+ bold?: boolean;
92883
+ /**
92884
+ * 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.
92885
+ *
92886
+ * @remarks
92887
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92888
+ * @beta
92889
+ */
92890
+ hyperlink?: string;
92891
+ /**
92892
+ * Checks whether the range length is zero. Read-only.
92893
+ *
92894
+ * @remarks
92895
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92896
+ * @beta
92897
+ */
92898
+ isEmpty?: boolean;
92899
+ /**
92900
+ * Gets or sets a value that indicates whether the comment text is italicized.
92901
+ *
92902
+ * @remarks
92903
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92904
+ * @beta
92905
+ */
92906
+ italic?: boolean;
92907
+ /**
92908
+ * Gets or sets a value that indicates whether the comment text has a strikethrough.
92909
+ *
92910
+ * @remarks
92911
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92912
+ * @beta
92913
+ */
92914
+ strikeThrough?: boolean;
92915
+ /**
92916
+ * Gets the text of the comment range. Read-only.
92917
+ *
92918
+ * @remarks
92919
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92920
+ * @beta
92921
+ */
92922
+ text?: string;
92923
+ /**
92924
+ * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
92925
+ *
92926
+ * @remarks
92927
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92928
+ * @beta
92929
+ */
92930
+ underline?: Word.UnderlineType | "Mixed" | "None" | "Hidden" | "DotLine" | "Single" | "Word" | "Double" | "Thick" | "Dotted" | "DottedHeavy" | "DashLine" | "DashLineHeavy" | "DashLineLong" | "DashLineLongHeavy" | "DotDashLine" | "DotDashLineHeavy" | "TwoDotDashLine" | "TwoDotDashLineHeavy" | "Wave" | "WaveHeavy" | "WaveDouble";
92931
+ }
92715
92932
  /** An interface describing the data returned by calling `commentReply.toJSON()`. */
92716
92933
  interface CommentReplyData {
92934
+ /**
92935
+ * Gets or sets the commentReply's content range.
92936
+ *
92937
+ * @remarks
92938
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92939
+ * @beta
92940
+ */
92941
+ contentRange?: Word.Interfaces.CommentContentRangeData;
92717
92942
  /**
92718
92943
  * Gets the parent comment of this reply.
92719
92944
  *
@@ -92758,7 +92983,8 @@ declare namespace Word {
92758
92983
  * ID
92759
92984
  *
92760
92985
  * @remarks
92761
- * [Api set: WordApi]
92986
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
92987
+ * @beta
92762
92988
  */
92763
92989
  id?: string;
92764
92990
  }
@@ -92797,7 +93023,7 @@ declare namespace Word {
92797
93023
  */
92798
93024
  lists?: Word.Interfaces.ListData[];
92799
93025
  /**
92800
- * Get the collection of paragraph objects in the content control. Read-only.
93026
+ * 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.
92801
93027
  *
92802
93028
  * @remarks
92803
93029
  * [Api set: WordApi 1.1]
@@ -93035,14 +93261,14 @@ declare namespace Word {
93035
93261
  /** An interface describing the data returned by calling `documentCreated.toJSON()`. */
93036
93262
  interface DocumentCreatedData {
93037
93263
  /**
93038
- * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.. Read-only.
93264
+ * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc. Read-only.
93039
93265
  *
93040
93266
  * @remarks
93041
93267
  * [Api set: WordApiHiddenDocument 1.3]
93042
93268
  */
93043
93269
  body?: Word.Interfaces.BodyData;
93044
93270
  /**
93045
- * 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.
93271
+ * 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.
93046
93272
  *
93047
93273
  * @remarks
93048
93274
  * [Api set: WordApiHiddenDocument 1.3]
@@ -94154,6 +94380,14 @@ declare namespace Word {
94154
94380
  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`).
94155
94381
  */
94156
94382
  $all?: boolean;
94383
+ /**
94384
+ * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
94385
+ *
94386
+ * @remarks
94387
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94388
+ * @beta
94389
+ */
94390
+ contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
94157
94391
  /**
94158
94392
  * Gets the email of the comment's author.
94159
94393
  *
@@ -94190,11 +94424,12 @@ declare namespace Word {
94190
94424
  * ID
94191
94425
  *
94192
94426
  * @remarks
94193
- * [Api set: WordApi]
94427
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94428
+ * @beta
94194
94429
  */
94195
94430
  id?: boolean;
94196
94431
  /**
94197
- * Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
94432
+ * 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.
94198
94433
  *
94199
94434
  * @remarks
94200
94435
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -94203,7 +94438,7 @@ declare namespace Word {
94203
94438
  resolved?: boolean;
94204
94439
  }
94205
94440
  /**
94206
- * Contains a collection of {@link Word.Comment} object.
94441
+ * Contains a collection of {@link Word.Comment} objects.
94207
94442
  *
94208
94443
  * @remarks
94209
94444
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -94214,6 +94449,14 @@ declare namespace Word {
94214
94449
  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`).
94215
94450
  */
94216
94451
  $all?: boolean;
94452
+ /**
94453
+ * For EACH ITEM in the collection: Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
94454
+ *
94455
+ * @remarks
94456
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94457
+ * @beta
94458
+ */
94459
+ contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
94217
94460
  /**
94218
94461
  * For EACH ITEM in the collection: Gets the email of the comment's author.
94219
94462
  *
@@ -94250,11 +94493,12 @@ declare namespace Word {
94250
94493
  * For EACH ITEM in the collection: ID
94251
94494
  *
94252
94495
  * @remarks
94253
- * [Api set: WordApi]
94496
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94497
+ * @beta
94254
94498
  */
94255
94499
  id?: boolean;
94256
94500
  /**
94257
- * For EACH ITEM in the collection: Gets or sets the comment thread status. A value of true means that the comment thread is resolved.
94501
+ * 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.
94258
94502
  *
94259
94503
  * @remarks
94260
94504
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -94262,6 +94506,73 @@ declare namespace Word {
94262
94506
  */
94263
94507
  resolved?: boolean;
94264
94508
  }
94509
+ /**
94510
+ * @remarks
94511
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94512
+ * @beta
94513
+ */
94514
+ interface CommentContentRangeLoadOptions {
94515
+ /**
94516
+ 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`).
94517
+ */
94518
+ $all?: boolean;
94519
+ /**
94520
+ * Gets or sets a value that indicates whether the comment text is bold.
94521
+ *
94522
+ * @remarks
94523
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
94524
+ * @beta
94525
+ */
94526
+ bold?: boolean;
94527
+ /**
94528
+ * 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.
94529
+ *
94530
+ * @remarks
94531
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
94532
+ * @beta
94533
+ */
94534
+ hyperlink?: boolean;
94535
+ /**
94536
+ * Checks whether the range length is zero. Read-only.
94537
+ *
94538
+ * @remarks
94539
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
94540
+ * @beta
94541
+ */
94542
+ isEmpty?: boolean;
94543
+ /**
94544
+ * Gets or sets a value that indicates whether the comment text is italicized.
94545
+ *
94546
+ * @remarks
94547
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
94548
+ * @beta
94549
+ */
94550
+ italic?: boolean;
94551
+ /**
94552
+ * Gets or sets a value that indicates whether the comment text has a strikethrough.
94553
+ *
94554
+ * @remarks
94555
+ * [Api set: WordApi BETA (PREVIEW ONLY)]
94556
+ * @beta
94557
+ */
94558
+ strikeThrough?: boolean;
94559
+ /**
94560
+ * Gets the text of the comment range. Read-only.
94561
+ *
94562
+ * @remarks
94563
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94564
+ * @beta
94565
+ */
94566
+ text?: boolean;
94567
+ /**
94568
+ * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
94569
+ *
94570
+ * @remarks
94571
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94572
+ * @beta
94573
+ */
94574
+ underline?: boolean;
94575
+ }
94265
94576
  /**
94266
94577
  * Represents a comment reply in the document.
94267
94578
  *
@@ -94275,6 +94586,14 @@ declare namespace Word {
94275
94586
  */
94276
94587
  $all?: boolean;
94277
94588
  /**
94589
+ * Gets or sets the commentReply's content range.
94590
+ *
94591
+ * @remarks
94592
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94593
+ * @beta
94594
+ */
94595
+ contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
94596
+ /**
94278
94597
  * Gets the parent comment of this reply.
94279
94598
  *
94280
94599
  * @remarks
@@ -94318,12 +94637,13 @@ declare namespace Word {
94318
94637
  * ID
94319
94638
  *
94320
94639
  * @remarks
94321
- * [Api set: WordApi]
94640
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94641
+ * @beta
94322
94642
  */
94323
94643
  id?: boolean;
94324
94644
  }
94325
94645
  /**
94326
- * Contains a collection of {@link Word.CommentReply} object. Represents all comment replies in one comment thread.
94646
+ * Contains a collection of {@link Word.CommentReply} objects. Represents all comment replies in one comment thread.
94327
94647
  *
94328
94648
  * @remarks
94329
94649
  * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
@@ -94335,6 +94655,14 @@ declare namespace Word {
94335
94655
  */
94336
94656
  $all?: boolean;
94337
94657
  /**
94658
+ * For EACH ITEM in the collection: Gets or sets the commentReply's content range.
94659
+ *
94660
+ * @remarks
94661
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94662
+ * @beta
94663
+ */
94664
+ contentRange?: Word.Interfaces.CommentContentRangeLoadOptions;
94665
+ /**
94338
94666
  * For EACH ITEM in the collection: Gets the parent comment of this reply.
94339
94667
  *
94340
94668
  * @remarks
@@ -94378,7 +94706,8 @@ declare namespace Word {
94378
94706
  * For EACH ITEM in the collection: ID
94379
94707
  *
94380
94708
  * @remarks
94381
- * [Api set: WordApi]
94709
+ * [Api set: WordApiOnline BETA (PREVIEW ONLY)]
94710
+ * @beta
94382
94711
  */
94383
94712
  id?: boolean;
94384
94713
  }
@@ -94924,7 +95253,7 @@ declare namespace Word {
94924
95253
  */
94925
95254
  $all?: boolean;
94926
95255
  /**
94927
- * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc..
95256
+ * Gets the body object of the document. The body is the text that excludes headers, footers, footnotes, textboxes, etc.
94928
95257
  *
94929
95258
  * @remarks
94930
95259
  * [Api set: WordApiHiddenDocument 1.3]