@types/office-js 1.0.323 → 1.0.324

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. office-js/README.md +1 -1
  2. office-js/index.d.ts +464 -457
  3. office-js/package.json +2 -2
office-js/index.d.ts CHANGED
@@ -82998,14 +82998,14 @@ declare namespace Word {
82998
82998
  */
82999
82999
  readonly tables: Word.TableCollection;
83000
83000
  /**
83001
- * Gets or sets the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
83001
+ * Specifies the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
83002
83002
  *
83003
83003
  * @remarks
83004
83004
  * [Api set: WordApi 1.1]
83005
83005
  */
83006
83006
  style: string;
83007
83007
  /**
83008
- * Gets or sets the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
83008
+ * Specifies the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
83009
83009
  *
83010
83010
  * @remarks
83011
83011
  * [Api set: WordApi 1.3]
@@ -83258,7 +83258,7 @@ declare namespace Word {
83258
83258
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
83259
83259
  context: RequestContext;
83260
83260
  /**
83261
- * Gets or sets the comment's content range.
83261
+ * Specifies the comment's content range.
83262
83262
  *
83263
83263
  * @remarks
83264
83264
  * [Api set: WordApi 1.4]
@@ -83286,7 +83286,7 @@ declare namespace Word {
83286
83286
  */
83287
83287
  readonly authorName: string;
83288
83288
  /**
83289
- * Gets or sets the comment's content as plain text.
83289
+ * Specifies the comment's content as plain text.
83290
83290
  *
83291
83291
  * @remarks
83292
83292
  * [Api set: WordApi 1.4]
@@ -83307,7 +83307,7 @@ declare namespace Word {
83307
83307
  */
83308
83308
  readonly id: string;
83309
83309
  /**
83310
- * 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.
83310
+ * Specifies the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
83311
83311
  *
83312
83312
  * @remarks
83313
83313
  * [Api set: WordApi 1.4]
@@ -83444,7 +83444,7 @@ declare namespace Word {
83444
83444
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
83445
83445
  context: RequestContext;
83446
83446
  /**
83447
- * Gets or sets a value that indicates whether the comment text is bold.
83447
+ * Specifies a value that indicates whether the comment text is bold.
83448
83448
  *
83449
83449
  * @remarks
83450
83450
  * [Api set: WordApi 1.4]
@@ -83465,14 +83465,14 @@ declare namespace Word {
83465
83465
  */
83466
83466
  readonly isEmpty: boolean;
83467
83467
  /**
83468
- * Gets or sets a value that indicates whether the comment text is italicized.
83468
+ * Specifies a value that indicates whether the comment text is italicized.
83469
83469
  *
83470
83470
  * @remarks
83471
83471
  * [Api set: WordApi 1.4]
83472
83472
  */
83473
83473
  italic: boolean;
83474
83474
  /**
83475
- * Gets or sets a value that indicates whether the comment text has a strikethrough.
83475
+ * Specifies a value that indicates whether the comment text has a strikethrough.
83476
83476
  *
83477
83477
  * @remarks
83478
83478
  * [Api set: WordApi 1.4]
@@ -83486,7 +83486,7 @@ declare namespace Word {
83486
83486
  */
83487
83487
  readonly text: string;
83488
83488
  /**
83489
- * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
83489
+ * Specifies a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
83490
83490
  *
83491
83491
  * @remarks
83492
83492
  * [Api set: WordApi 1.4]
@@ -83555,7 +83555,7 @@ declare namespace Word {
83555
83555
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
83556
83556
  context: RequestContext;
83557
83557
  /**
83558
- * Gets or sets the commentReply's content range.
83558
+ * Specifies the commentReply's content range.
83559
83559
  *
83560
83560
  * @remarks
83561
83561
  * [Api set: WordApi 1.4]
@@ -83583,7 +83583,7 @@ declare namespace Word {
83583
83583
  */
83584
83584
  readonly authorName: string;
83585
83585
  /**
83586
- * Gets or sets the comment reply's content. The string is plain text.
83586
+ * Specifies the comment reply's content. The string is plain text.
83587
83587
  *
83588
83588
  * @remarks
83589
83589
  * [Api set: WordApi 1.4]
@@ -83832,28 +83832,28 @@ declare namespace Word {
83832
83832
  */
83833
83833
  readonly tables: Word.TableCollection;
83834
83834
  /**
83835
- * Gets or sets the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
83835
+ * Specifies the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
83836
83836
  *
83837
83837
  * @remarks
83838
83838
  * [Api set: WordApi 1.1]
83839
83839
  */
83840
83840
  appearance: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden";
83841
83841
  /**
83842
- * Gets or sets a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
83842
+ * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
83843
83843
  *
83844
83844
  * @remarks
83845
83845
  * [Api set: WordApi 1.1]
83846
83846
  */
83847
83847
  cannotDelete: boolean;
83848
83848
  /**
83849
- * Gets or sets a value that indicates whether the user can edit the contents of the content control.
83849
+ * Specifies a value that indicates whether the user can edit the contents of the content control.
83850
83850
  *
83851
83851
  * @remarks
83852
83852
  * [Api set: WordApi 1.1]
83853
83853
  */
83854
83854
  cannotEdit: boolean;
83855
83855
  /**
83856
- * Gets or sets the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
83856
+ * Specifies the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
83857
83857
  *
83858
83858
  * @remarks
83859
83859
  * [Api set: WordApi 1.1]
@@ -83867,28 +83867,28 @@ declare namespace Word {
83867
83867
  */
83868
83868
  readonly id: number;
83869
83869
  /**
83870
- * Gets or sets the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
83870
+ * Specifies the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
83871
83871
  *
83872
83872
  * @remarks
83873
83873
  * [Api set: WordApi 1.1]
83874
83874
  */
83875
83875
  placeholderText: string;
83876
83876
  /**
83877
- * Gets or sets a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
83877
+ * Specifies a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
83878
83878
  *
83879
83879
  * @remarks
83880
83880
  * [Api set: WordApi 1.1]
83881
83881
  */
83882
83882
  removeWhenEdited: boolean;
83883
83883
  /**
83884
- * Gets or sets the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
83884
+ * Specifies the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
83885
83885
  *
83886
83886
  * @remarks
83887
83887
  * [Api set: WordApi 1.1]
83888
83888
  */
83889
83889
  style: string;
83890
83890
  /**
83891
- * Gets or sets the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
83891
+ * Specifies the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
83892
83892
  *
83893
83893
  * @remarks
83894
83894
  * [Api set: WordApi 1.3]
@@ -83902,7 +83902,7 @@ declare namespace Word {
83902
83902
  */
83903
83903
  readonly subtype: Word.ContentControlType | "Unknown" | "RichTextInline" | "RichTextParagraphs" | "RichTextTableCell" | "RichTextTableRow" | "RichTextTable" | "PlainTextInline" | "PlainTextParagraph" | "Picture" | "BuildingBlockGallery" | "CheckBox" | "ComboBox" | "DropDownList" | "DatePicker" | "RepeatingSection" | "RichText" | "PlainText";
83904
83904
  /**
83905
- * Gets or sets a tag to identify a content control.
83905
+ * Specifies a tag to identify a content control.
83906
83906
  *
83907
83907
  * @remarks
83908
83908
  * [Api set: WordApi 1.1]
@@ -83916,7 +83916,7 @@ declare namespace Word {
83916
83916
  */
83917
83917
  readonly text: string;
83918
83918
  /**
83919
- * Gets or sets the title for a content control.
83919
+ * Specifies the title for a content control.
83920
83920
  *
83921
83921
  * @remarks
83922
83922
  * [Api set: WordApi 1.1]
@@ -84311,7 +84311,7 @@ declare namespace Word {
84311
84311
  */
84312
84312
  readonly type: Word.DocumentPropertyType | "String" | "Number" | "Date" | "Boolean";
84313
84313
  /**
84314
- * Gets or sets the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
84314
+ * Specifies the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
84315
84315
  *
84316
84316
  * @remarks
84317
84317
  * [Api set: WordApi 1.3]
@@ -84951,7 +84951,7 @@ declare namespace Word {
84951
84951
  */
84952
84952
  readonly settings: Word.SettingCollection;
84953
84953
  /**
84954
- * Gets or sets the ChangeTracking mode.
84954
+ * Specifies the ChangeTracking mode.
84955
84955
  *
84956
84956
  * @remarks
84957
84957
  * [Api set: WordApi 1.4]
@@ -85245,28 +85245,28 @@ declare namespace Word {
85245
85245
  */
85246
85246
  readonly applicationName: string;
85247
85247
  /**
85248
- * Gets or sets the author of the document.
85248
+ * Specifies the author of the document.
85249
85249
  *
85250
85250
  * @remarks
85251
85251
  * [Api set: WordApi 1.3]
85252
85252
  */
85253
85253
  author: string;
85254
85254
  /**
85255
- * Gets or sets the category of the document.
85255
+ * Specifies the category of the document.
85256
85256
  *
85257
85257
  * @remarks
85258
85258
  * [Api set: WordApi 1.3]
85259
85259
  */
85260
85260
  category: string;
85261
85261
  /**
85262
- * Gets or sets the comments of the document.
85262
+ * Specifies the comments of the document.
85263
85263
  *
85264
85264
  * @remarks
85265
85265
  * [Api set: WordApi 1.3]
85266
85266
  */
85267
85267
  comments: string;
85268
85268
  /**
85269
- * Gets or sets the company of the document.
85269
+ * Specifies the company of the document.
85270
85270
  *
85271
85271
  * @remarks
85272
85272
  * [Api set: WordApi 1.3]
@@ -85280,14 +85280,14 @@ declare namespace Word {
85280
85280
  */
85281
85281
  readonly creationDate: Date;
85282
85282
  /**
85283
- * Gets or sets the format of the document.
85283
+ * Specifies the format of the document.
85284
85284
  *
85285
85285
  * @remarks
85286
85286
  * [Api set: WordApi 1.3]
85287
85287
  */
85288
85288
  format: string;
85289
85289
  /**
85290
- * Gets or sets the keywords of the document.
85290
+ * Specifies the keywords of the document.
85291
85291
  *
85292
85292
  * @remarks
85293
85293
  * [Api set: WordApi 1.3]
@@ -85315,7 +85315,7 @@ declare namespace Word {
85315
85315
  */
85316
85316
  readonly lastSaveTime: Date;
85317
85317
  /**
85318
- * Gets or sets the manager of the document.
85318
+ * Specifies the manager of the document.
85319
85319
  *
85320
85320
  * @remarks
85321
85321
  * [Api set: WordApi 1.3]
@@ -85336,7 +85336,7 @@ declare namespace Word {
85336
85336
  */
85337
85337
  readonly security: number;
85338
85338
  /**
85339
- * Gets or sets the subject of the document.
85339
+ * Specifies the subject of the document.
85340
85340
  *
85341
85341
  * @remarks
85342
85342
  * [Api set: WordApi 1.3]
@@ -85350,7 +85350,7 @@ declare namespace Word {
85350
85350
  */
85351
85351
  readonly template: string;
85352
85352
  /**
85353
- * Gets or sets the title of the document.
85353
+ * Specifies the title of the document.
85354
85354
  *
85355
85355
  * @remarks
85356
85356
  * [Api set: WordApi 1.3]
@@ -85595,77 +85595,77 @@ declare namespace Word {
85595
85595
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
85596
85596
  context: RequestContext;
85597
85597
  /**
85598
- * Gets or sets a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
85598
+ * Specifies a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
85599
85599
  *
85600
85600
  * @remarks
85601
85601
  * [Api set: WordApi 1.1]
85602
85602
  */
85603
85603
  bold: boolean;
85604
85604
  /**
85605
- * Gets or sets the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
85605
+ * Specifies the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
85606
85606
  *
85607
85607
  * @remarks
85608
85608
  * [Api set: WordApi 1.1]
85609
85609
  */
85610
85610
  color: string;
85611
85611
  /**
85612
- * Gets or sets a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
85612
+ * Specifies a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
85613
85613
  *
85614
85614
  * @remarks
85615
85615
  * [Api set: WordApi 1.1]
85616
85616
  */
85617
85617
  doubleStrikeThrough: boolean;
85618
85618
  /**
85619
- * Gets or sets the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
85619
+ * Specifies the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
85620
85620
  *
85621
85621
  * @remarks
85622
85622
  * [Api set: WordApi 1.1]
85623
85623
  */
85624
85624
  highlightColor: string;
85625
85625
  /**
85626
- * Gets or sets a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
85626
+ * Specifies a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
85627
85627
  *
85628
85628
  * @remarks
85629
85629
  * [Api set: WordApi 1.1]
85630
85630
  */
85631
85631
  italic: boolean;
85632
85632
  /**
85633
- * Gets or sets a value that represents the name of the font.
85633
+ * Specifies a value that represents the name of the font.
85634
85634
  *
85635
85635
  * @remarks
85636
85636
  * [Api set: WordApi 1.1]
85637
85637
  */
85638
85638
  name: string;
85639
85639
  /**
85640
- * Gets or sets a value that represents the font size in points.
85640
+ * Specifies a value that represents the font size in points.
85641
85641
  *
85642
85642
  * @remarks
85643
85643
  * [Api set: WordApi 1.1]
85644
85644
  */
85645
85645
  size: number;
85646
85646
  /**
85647
- * Gets or sets a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
85647
+ * Specifies a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
85648
85648
  *
85649
85649
  * @remarks
85650
85650
  * [Api set: WordApi 1.1]
85651
85651
  */
85652
85652
  strikeThrough: boolean;
85653
85653
  /**
85654
- * Gets or sets a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
85654
+ * Specifies a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
85655
85655
  *
85656
85656
  * @remarks
85657
85657
  * [Api set: WordApi 1.1]
85658
85658
  */
85659
85659
  subscript: boolean;
85660
85660
  /**
85661
- * Gets or sets a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
85661
+ * Specifies a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
85662
85662
  *
85663
85663
  * @remarks
85664
85664
  * [Api set: WordApi 1.1]
85665
85665
  */
85666
85666
  superscript: boolean;
85667
85667
  /**
85668
- * Gets or sets a value that indicates the font's underline type. 'None' if the font is not underlined.
85668
+ * Specifies a value that indicates the font's underline type. 'None' if the font is not underlined.
85669
85669
  *
85670
85670
  * @remarks
85671
85671
  * [Api set: WordApi 1.1]
@@ -85773,42 +85773,42 @@ declare namespace Word {
85773
85773
  */
85774
85774
  readonly parentTableOrNullObject: Word.Table;
85775
85775
  /**
85776
- * Gets or sets a string that represents the alternative text associated with the inline image.
85776
+ * Specifies a string that represents the alternative text associated with the inline image.
85777
85777
  *
85778
85778
  * @remarks
85779
85779
  * [Api set: WordApi 1.1]
85780
85780
  */
85781
85781
  altTextDescription: string;
85782
85782
  /**
85783
- * Gets or sets a string that contains the title for the inline image.
85783
+ * Specifies a string that contains the title for the inline image.
85784
85784
  *
85785
85785
  * @remarks
85786
85786
  * [Api set: WordApi 1.1]
85787
85787
  */
85788
85788
  altTextTitle: string;
85789
85789
  /**
85790
- * Gets or sets a number that describes the height of the inline image.
85790
+ * Specifies a number that describes the height of the inline image.
85791
85791
  *
85792
85792
  * @remarks
85793
85793
  * [Api set: WordApi 1.1]
85794
85794
  */
85795
85795
  height: number;
85796
85796
  /**
85797
- * Gets or sets a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
85797
+ * Specifies a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
85798
85798
  *
85799
85799
  * @remarks
85800
85800
  * [Api set: WordApi 1.1]
85801
85801
  */
85802
85802
  hyperlink: string;
85803
85803
  /**
85804
- * Gets or sets a value that indicates whether the inline image retains its original proportions when you resize it.
85804
+ * Specifies a value that indicates whether the inline image retains its original proportions when you resize it.
85805
85805
  *
85806
85806
  * @remarks
85807
85807
  * [Api set: WordApi 1.1]
85808
85808
  */
85809
85809
  lockAspectRatio: boolean;
85810
85810
  /**
85811
- * Gets or sets a number that describes the width of the inline image.
85811
+ * Specifies a number that describes the width of the inline image.
85812
85812
  *
85813
85813
  * @remarks
85814
85814
  * [Api set: WordApi 1.1]
@@ -86327,7 +86327,7 @@ declare namespace Word {
86327
86327
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
86328
86328
  context: RequestContext;
86329
86329
  /**
86330
- * Gets or sets the level of the item in the list.
86330
+ * Specifies the level of the item in the list.
86331
86331
  *
86332
86332
  * @remarks
86333
86333
  * [Api set: WordApi 1.3]
@@ -86697,14 +86697,14 @@ declare namespace Word {
86697
86697
  */
86698
86698
  readonly parentTableOrNullObject: Word.Table;
86699
86699
  /**
86700
- * Gets or sets the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
86700
+ * Specifies the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
86701
86701
  *
86702
86702
  * @remarks
86703
86703
  * [Api set: WordApi 1.1]
86704
86704
  */
86705
86705
  alignment: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
86706
86706
  /**
86707
- * Gets or sets the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
86707
+ * Specifies the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
86708
86708
  *
86709
86709
  * @remarks
86710
86710
  * [Api set: WordApi 1.1]
@@ -86725,70 +86725,70 @@ declare namespace Word {
86725
86725
  */
86726
86726
  readonly isListItem: boolean;
86727
86727
  /**
86728
- * Gets or sets the left indent value, in points, for the paragraph.
86728
+ * Specifies the left indent value, in points, for the paragraph.
86729
86729
  *
86730
86730
  * @remarks
86731
86731
  * [Api set: WordApi 1.1]
86732
86732
  */
86733
86733
  leftIndent: number;
86734
86734
  /**
86735
- * Gets or sets the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
86735
+ * Specifies the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
86736
86736
  *
86737
86737
  * @remarks
86738
86738
  * [Api set: WordApi 1.1]
86739
86739
  */
86740
86740
  lineSpacing: number;
86741
86741
  /**
86742
- * Gets or sets the amount of spacing, in grid lines, after the paragraph.
86742
+ * Specifies the amount of spacing, in grid lines, after the paragraph.
86743
86743
  *
86744
86744
  * @remarks
86745
86745
  * [Api set: WordApi 1.1]
86746
86746
  */
86747
86747
  lineUnitAfter: number;
86748
86748
  /**
86749
- * Gets or sets the amount of spacing, in grid lines, before the paragraph.
86749
+ * Specifies the amount of spacing, in grid lines, before the paragraph.
86750
86750
  *
86751
86751
  * @remarks
86752
86752
  * [Api set: WordApi 1.1]
86753
86753
  */
86754
86754
  lineUnitBefore: number;
86755
86755
  /**
86756
- * Gets or sets the outline level for the paragraph.
86756
+ * Specifies the outline level for the paragraph.
86757
86757
  *
86758
86758
  * @remarks
86759
86759
  * [Api set: WordApi 1.1]
86760
86760
  */
86761
86761
  outlineLevel: number;
86762
86762
  /**
86763
- * Gets or sets the right indent value, in points, for the paragraph.
86763
+ * Specifies the right indent value, in points, for the paragraph.
86764
86764
  *
86765
86765
  * @remarks
86766
86766
  * [Api set: WordApi 1.1]
86767
86767
  */
86768
86768
  rightIndent: number;
86769
86769
  /**
86770
- * Gets or sets the spacing, in points, after the paragraph.
86770
+ * Specifies the spacing, in points, after the paragraph.
86771
86771
  *
86772
86772
  * @remarks
86773
86773
  * [Api set: WordApi 1.1]
86774
86774
  */
86775
86775
  spaceAfter: number;
86776
86776
  /**
86777
- * Gets or sets the spacing, in points, before the paragraph.
86777
+ * Specifies the spacing, in points, before the paragraph.
86778
86778
  *
86779
86779
  * @remarks
86780
86780
  * [Api set: WordApi 1.1]
86781
86781
  */
86782
86782
  spaceBefore: number;
86783
86783
  /**
86784
- * Gets or sets the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
86784
+ * Specifies the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
86785
86785
  *
86786
86786
  * @remarks
86787
86787
  * [Api set: WordApi 1.1]
86788
86788
  */
86789
86789
  style: string;
86790
86790
  /**
86791
- * Gets or sets the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
86791
+ * Specifies the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
86792
86792
  *
86793
86793
  * @remarks
86794
86794
  * [Api set: WordApi 1.3]
@@ -87318,14 +87318,14 @@ declare namespace Word {
87318
87318
  */
87319
87319
  readonly isEmpty: boolean;
87320
87320
  /**
87321
- * Gets or sets the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
87321
+ * Specifies the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
87322
87322
  *
87323
87323
  * @remarks
87324
87324
  * [Api set: WordApi 1.1]
87325
87325
  */
87326
87326
  style: string;
87327
87327
  /**
87328
- * Gets or sets the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
87328
+ * Specifies the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
87329
87329
  *
87330
87330
  * @remarks
87331
87331
  * [Api set: WordApi 1.3]
@@ -87778,49 +87778,49 @@ declare namespace Word {
87778
87778
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
87779
87779
  context: RequestContext;
87780
87780
  /**
87781
- * Gets or sets a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
87781
+ * Specifies a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
87782
87782
  *
87783
87783
  * @remarks
87784
87784
  * [Api set: WordApi 1.1]
87785
87785
  */
87786
87786
  ignorePunct: boolean;
87787
87787
  /**
87788
- * Gets or sets a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
87788
+ * Specifies a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
87789
87789
  *
87790
87790
  * @remarks
87791
87791
  * [Api set: WordApi 1.1]
87792
87792
  */
87793
87793
  ignoreSpace: boolean;
87794
87794
  /**
87795
- * Gets or sets a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
87795
+ * Specifies a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
87796
87796
  *
87797
87797
  * @remarks
87798
87798
  * [Api set: WordApi 1.1]
87799
87799
  */
87800
87800
  matchCase: boolean;
87801
87801
  /**
87802
- * Gets or sets a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
87802
+ * Specifies a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
87803
87803
  *
87804
87804
  * @remarks
87805
87805
  * [Api set: WordApi 1.1]
87806
87806
  */
87807
87807
  matchPrefix: boolean;
87808
87808
  /**
87809
- * Gets or sets a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
87809
+ * Specifies a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
87810
87810
  *
87811
87811
  * @remarks
87812
87812
  * [Api set: WordApi 1.1]
87813
87813
  */
87814
87814
  matchSuffix: boolean;
87815
87815
  /**
87816
- * Gets or sets a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
87816
+ * Specifies a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
87817
87817
  *
87818
87818
  * @remarks
87819
87819
  * [Api set: WordApi 1.1]
87820
87820
  */
87821
87821
  matchWholeWord: boolean;
87822
87822
  /**
87823
- * Gets or sets a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
87823
+ * Specifies a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
87824
87824
  *
87825
87825
  * @remarks
87826
87826
  * [Api set: WordApi 1.1]
@@ -88048,7 +88048,7 @@ declare namespace Word {
88048
88048
  */
88049
88049
  readonly key: string;
88050
88050
  /**
88051
- * Gets or sets the value of the setting.
88051
+ * Specifies the value of the setting.
88052
88052
  *
88053
88053
  * @remarks
88054
88054
  * [Api set: WordApi 1.4]
@@ -88290,21 +88290,21 @@ declare namespace Word {
88290
88290
  */
88291
88291
  readonly tables: Word.TableCollection;
88292
88292
  /**
88293
- * Gets or sets the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
88293
+ * Specifies the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
88294
88294
  *
88295
88295
  * @remarks
88296
88296
  * [Api set: WordApi 1.3]
88297
88297
  */
88298
88298
  alignment: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
88299
88299
  /**
88300
- * Gets and sets the number of header rows.
88300
+ * Specifies the number of header rows.
88301
88301
  *
88302
88302
  * @remarks
88303
88303
  * [Api set: WordApi 1.3]
88304
88304
  */
88305
88305
  headerRowCount: number;
88306
88306
  /**
88307
- * Gets and sets the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
88307
+ * Specifies the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
88308
88308
  *
88309
88309
  * @remarks
88310
88310
  * [Api set: WordApi 1.3]
@@ -88332,77 +88332,77 @@ declare namespace Word {
88332
88332
  */
88333
88333
  readonly rowCount: number;
88334
88334
  /**
88335
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
88335
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
88336
88336
  *
88337
88337
  * @remarks
88338
88338
  * [Api set: WordApi 1.3]
88339
88339
  */
88340
88340
  shadingColor: string;
88341
88341
  /**
88342
- * Gets or sets the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
88342
+ * Specifies the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
88343
88343
  *
88344
88344
  * @remarks
88345
88345
  * [Api set: WordApi 1.3]
88346
88346
  */
88347
88347
  style: string;
88348
88348
  /**
88349
- * Gets and sets whether the table has banded columns.
88349
+ * Specifies whether the table has banded columns.
88350
88350
  *
88351
88351
  * @remarks
88352
88352
  * [Api set: WordApi 1.3]
88353
88353
  */
88354
88354
  styleBandedColumns: boolean;
88355
88355
  /**
88356
- * Gets and sets whether the table has banded rows.
88356
+ * Specifies whether the table has banded rows.
88357
88357
  *
88358
88358
  * @remarks
88359
88359
  * [Api set: WordApi 1.3]
88360
88360
  */
88361
88361
  styleBandedRows: boolean;
88362
88362
  /**
88363
- * Gets or sets the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
88363
+ * Specifies the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
88364
88364
  *
88365
88365
  * @remarks
88366
88366
  * [Api set: WordApi 1.3]
88367
88367
  */
88368
88368
  styleBuiltIn: Word.Style | "Other" | "Normal" | "Heading1" | "Heading2" | "Heading3" | "Heading4" | "Heading5" | "Heading6" | "Heading7" | "Heading8" | "Heading9" | "Toc1" | "Toc2" | "Toc3" | "Toc4" | "Toc5" | "Toc6" | "Toc7" | "Toc8" | "Toc9" | "FootnoteText" | "Header" | "Footer" | "Caption" | "FootnoteReference" | "EndnoteReference" | "EndnoteText" | "Title" | "Subtitle" | "Hyperlink" | "Strong" | "Emphasis" | "NoSpacing" | "ListParagraph" | "Quote" | "IntenseQuote" | "SubtleEmphasis" | "IntenseEmphasis" | "SubtleReference" | "IntenseReference" | "BookTitle" | "Bibliography" | "TocHeading" | "TableGrid" | "PlainTable1" | "PlainTable2" | "PlainTable3" | "PlainTable4" | "PlainTable5" | "TableGridLight" | "GridTable1Light" | "GridTable1Light_Accent1" | "GridTable1Light_Accent2" | "GridTable1Light_Accent3" | "GridTable1Light_Accent4" | "GridTable1Light_Accent5" | "GridTable1Light_Accent6" | "GridTable2" | "GridTable2_Accent1" | "GridTable2_Accent2" | "GridTable2_Accent3" | "GridTable2_Accent4" | "GridTable2_Accent5" | "GridTable2_Accent6" | "GridTable3" | "GridTable3_Accent1" | "GridTable3_Accent2" | "GridTable3_Accent3" | "GridTable3_Accent4" | "GridTable3_Accent5" | "GridTable3_Accent6" | "GridTable4" | "GridTable4_Accent1" | "GridTable4_Accent2" | "GridTable4_Accent3" | "GridTable4_Accent4" | "GridTable4_Accent5" | "GridTable4_Accent6" | "GridTable5Dark" | "GridTable5Dark_Accent1" | "GridTable5Dark_Accent2" | "GridTable5Dark_Accent3" | "GridTable5Dark_Accent4" | "GridTable5Dark_Accent5" | "GridTable5Dark_Accent6" | "GridTable6Colorful" | "GridTable6Colorful_Accent1" | "GridTable6Colorful_Accent2" | "GridTable6Colorful_Accent3" | "GridTable6Colorful_Accent4" | "GridTable6Colorful_Accent5" | "GridTable6Colorful_Accent6" | "GridTable7Colorful" | "GridTable7Colorful_Accent1" | "GridTable7Colorful_Accent2" | "GridTable7Colorful_Accent3" | "GridTable7Colorful_Accent4" | "GridTable7Colorful_Accent5" | "GridTable7Colorful_Accent6" | "ListTable1Light" | "ListTable1Light_Accent1" | "ListTable1Light_Accent2" | "ListTable1Light_Accent3" | "ListTable1Light_Accent4" | "ListTable1Light_Accent5" | "ListTable1Light_Accent6" | "ListTable2" | "ListTable2_Accent1" | "ListTable2_Accent2" | "ListTable2_Accent3" | "ListTable2_Accent4" | "ListTable2_Accent5" | "ListTable2_Accent6" | "ListTable3" | "ListTable3_Accent1" | "ListTable3_Accent2" | "ListTable3_Accent3" | "ListTable3_Accent4" | "ListTable3_Accent5" | "ListTable3_Accent6" | "ListTable4" | "ListTable4_Accent1" | "ListTable4_Accent2" | "ListTable4_Accent3" | "ListTable4_Accent4" | "ListTable4_Accent5" | "ListTable4_Accent6" | "ListTable5Dark" | "ListTable5Dark_Accent1" | "ListTable5Dark_Accent2" | "ListTable5Dark_Accent3" | "ListTable5Dark_Accent4" | "ListTable5Dark_Accent5" | "ListTable5Dark_Accent6" | "ListTable6Colorful" | "ListTable6Colorful_Accent1" | "ListTable6Colorful_Accent2" | "ListTable6Colorful_Accent3" | "ListTable6Colorful_Accent4" | "ListTable6Colorful_Accent5" | "ListTable6Colorful_Accent6" | "ListTable7Colorful" | "ListTable7Colorful_Accent1" | "ListTable7Colorful_Accent2" | "ListTable7Colorful_Accent3" | "ListTable7Colorful_Accent4" | "ListTable7Colorful_Accent5" | "ListTable7Colorful_Accent6";
88369
88369
  /**
88370
- * Gets and sets whether the table has a first column with a special style.
88370
+ * Specifies whether the table has a first column with a special style.
88371
88371
  *
88372
88372
  * @remarks
88373
88373
  * [Api set: WordApi 1.3]
88374
88374
  */
88375
88375
  styleFirstColumn: boolean;
88376
88376
  /**
88377
- * Gets and sets whether the table has a last column with a special style.
88377
+ * Specifies whether the table has a last column with a special style.
88378
88378
  *
88379
88379
  * @remarks
88380
88380
  * [Api set: WordApi 1.3]
88381
88381
  */
88382
88382
  styleLastColumn: boolean;
88383
88383
  /**
88384
- * Gets and sets whether the table has a total (last) row with a special style.
88384
+ * Specifies whether the table has a total (last) row with a special style.
88385
88385
  *
88386
88386
  * @remarks
88387
88387
  * [Api set: WordApi 1.3]
88388
88388
  */
88389
88389
  styleTotalRow: boolean;
88390
88390
  /**
88391
- * Gets and sets the text values in the table, as a 2D Javascript array.
88391
+ * Specifies the text values in the table, as a 2D JavaScript array.
88392
88392
  *
88393
88393
  * @remarks
88394
88394
  * [Api set: WordApi 1.3]
88395
88395
  */
88396
88396
  values: string[][];
88397
88397
  /**
88398
- * Gets and sets the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
88398
+ * Specifies the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
88399
88399
  *
88400
88400
  * @remarks
88401
88401
  * [Api set: WordApi 1.3]
88402
88402
  */
88403
88403
  verticalAlignment: Word.VerticalAlignment | "Mixed" | "Top" | "Center" | "Bottom";
88404
88404
  /**
88405
- * Gets and sets the width of the table in points.
88405
+ * Specifies the width of the table in points.
88406
88406
  *
88407
88407
  * @remarks
88408
88408
  * [Api set: WordApi 1.3]
@@ -88841,7 +88841,7 @@ declare namespace Word {
88841
88841
  */
88842
88842
  readonly cellCount: number;
88843
88843
  /**
88844
- * Gets and sets the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
88844
+ * Specifies the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
88845
88845
  *
88846
88846
  * @remarks
88847
88847
  * [Api set: WordApi 1.3]
@@ -88855,7 +88855,7 @@ declare namespace Word {
88855
88855
  */
88856
88856
  readonly isHeader: boolean;
88857
88857
  /**
88858
- * Gets and sets the preferred height of the row in points.
88858
+ * Specifies the preferred height of the row in points.
88859
88859
  *
88860
88860
  * @remarks
88861
88861
  * [Api set: WordApi 1.3]
@@ -88869,21 +88869,21 @@ declare namespace Word {
88869
88869
  */
88870
88870
  readonly rowIndex: number;
88871
88871
  /**
88872
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
88872
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
88873
88873
  *
88874
88874
  * @remarks
88875
88875
  * [Api set: WordApi 1.3]
88876
88876
  */
88877
88877
  shadingColor: string;
88878
88878
  /**
88879
- * Gets and sets the text values in the row, as a 2D Javascript array.
88879
+ * Specifies the text values in the row, as a 2D JavaScript array.
88880
88880
  *
88881
88881
  * @remarks
88882
88882
  * [Api set: WordApi 1.3]
88883
88883
  */
88884
88884
  values: string[][];
88885
88885
  /**
88886
- * Gets and sets the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
88886
+ * Specifies the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
88887
88887
  *
88888
88888
  * @remarks
88889
88889
  * [Api set: WordApi 1.3]
@@ -89165,14 +89165,14 @@ declare namespace Word {
89165
89165
  */
89166
89166
  readonly cellIndex: number;
89167
89167
  /**
89168
- * Gets and sets the width of the cell's column in points. This is applicable to uniform tables.
89168
+ * Specifies the width of the cell's column in points. This is applicable to uniform tables.
89169
89169
  *
89170
89170
  * @remarks
89171
89171
  * [Api set: WordApi 1.3]
89172
89172
  */
89173
89173
  columnWidth: number;
89174
89174
  /**
89175
- * Gets and sets the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
89175
+ * Specifies the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
89176
89176
  *
89177
89177
  * @remarks
89178
89178
  * [Api set: WordApi 1.3]
@@ -89186,21 +89186,21 @@ declare namespace Word {
89186
89186
  */
89187
89187
  readonly rowIndex: number;
89188
89188
  /**
89189
- * Gets or sets the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
89189
+ * Specifies the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
89190
89190
  *
89191
89191
  * @remarks
89192
89192
  * [Api set: WordApi 1.3]
89193
89193
  */
89194
89194
  shadingColor: string;
89195
89195
  /**
89196
- * Gets and sets the text of the cell.
89196
+ * Specifies the text of the cell.
89197
89197
  *
89198
89198
  * @remarks
89199
89199
  * [Api set: WordApi 1.3]
89200
89200
  */
89201
89201
  value: string;
89202
89202
  /**
89203
- * Gets and sets the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
89203
+ * Specifies the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
89204
89204
  *
89205
89205
  * @remarks
89206
89206
  * [Api set: WordApi 1.3]
@@ -89439,21 +89439,21 @@ declare namespace Word {
89439
89439
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
89440
89440
  context: RequestContext;
89441
89441
  /**
89442
- * Gets or sets the table border color.
89442
+ * Specifies the table border color.
89443
89443
  *
89444
89444
  * @remarks
89445
89445
  * [Api set: WordApi 1.3]
89446
89446
  */
89447
89447
  color: string;
89448
89448
  /**
89449
- * Gets or sets the type of the table border.
89449
+ * Specifies the type of the table border.
89450
89450
  *
89451
89451
  * @remarks
89452
89452
  * [Api set: WordApi 1.3]
89453
89453
  */
89454
89454
  type: Word.BorderType | "Mixed" | "None" | "Single" | "Double" | "Dotted" | "Dashed" | "DotDashed" | "Dot2Dashed" | "Triple" | "ThinThickSmall" | "ThickThinSmall" | "ThinThickThinSmall" | "ThinThickMed" | "ThickThinMed" | "ThinThickThinMed" | "ThinThickLarge" | "ThickThinLarge" | "ThinThickThinLarge" | "Wave" | "DoubleWave" | "DashedSmall" | "DashDotStroked" | "ThreeDEmboss" | "ThreeDEngrave";
89455
89455
  /**
89456
- * Gets or sets the width, in points, of the table border. Not applicable to table border types that have fixed widths.
89456
+ * Specifies the width, in points, of the table border. Not applicable to table border types that have fixed widths.
89457
89457
  *
89458
89458
  * @remarks
89459
89459
  * [Api set: WordApi 1.3]
@@ -91327,14 +91327,14 @@ declare namespace Word {
91327
91327
  */
91328
91328
  font?: Word.Interfaces.FontUpdateData;
91329
91329
  /**
91330
- * Gets or sets the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91330
+ * Specifies the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91331
91331
  *
91332
91332
  * @remarks
91333
91333
  * [Api set: WordApi 1.1]
91334
91334
  */
91335
91335
  style?: string;
91336
91336
  /**
91337
- * Gets or sets the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91337
+ * Specifies the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91338
91338
  *
91339
91339
  * @remarks
91340
91340
  * [Api set: WordApi 1.3]
@@ -91344,21 +91344,21 @@ declare namespace Word {
91344
91344
  /** An interface for updating data on the Comment object, for use in `comment.set({ ... })`. */
91345
91345
  interface CommentUpdateData {
91346
91346
  /**
91347
- * Gets or sets the comment's content range.
91347
+ * Specifies the comment's content range.
91348
91348
  *
91349
91349
  * @remarks
91350
91350
  * [Api set: WordApi 1.4]
91351
91351
  */
91352
91352
  contentRange?: Word.Interfaces.CommentContentRangeUpdateData;
91353
91353
  /**
91354
- * Gets or sets the comment's content as plain text.
91354
+ * Specifies the comment's content as plain text.
91355
91355
  *
91356
91356
  * @remarks
91357
91357
  * [Api set: WordApi 1.4]
91358
91358
  */
91359
91359
  content?: string;
91360
91360
  /**
91361
- * 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.
91361
+ * Specifies the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
91362
91362
  *
91363
91363
  * @remarks
91364
91364
  * [Api set: WordApi 1.4]
@@ -91372,7 +91372,7 @@ declare namespace Word {
91372
91372
  /** An interface for updating data on the CommentContentRange object, for use in `commentContentRange.set({ ... })`. */
91373
91373
  interface CommentContentRangeUpdateData {
91374
91374
  /**
91375
- * Gets or sets a value that indicates whether the comment text is bold.
91375
+ * Specifies a value that indicates whether the comment text is bold.
91376
91376
  *
91377
91377
  * @remarks
91378
91378
  * [Api set: WordApi 1.4]
@@ -91386,21 +91386,21 @@ declare namespace Word {
91386
91386
  */
91387
91387
  hyperlink?: string;
91388
91388
  /**
91389
- * Gets or sets a value that indicates whether the comment text is italicized.
91389
+ * Specifies a value that indicates whether the comment text is italicized.
91390
91390
  *
91391
91391
  * @remarks
91392
91392
  * [Api set: WordApi 1.4]
91393
91393
  */
91394
91394
  italic?: boolean;
91395
91395
  /**
91396
- * Gets or sets a value that indicates whether the comment text has a strikethrough.
91396
+ * Specifies a value that indicates whether the comment text has a strikethrough.
91397
91397
  *
91398
91398
  * @remarks
91399
91399
  * [Api set: WordApi 1.4]
91400
91400
  */
91401
91401
  strikeThrough?: boolean;
91402
91402
  /**
91403
- * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
91403
+ * Specifies a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
91404
91404
  *
91405
91405
  * @remarks
91406
91406
  * [Api set: WordApi 1.4]
@@ -91410,7 +91410,7 @@ declare namespace Word {
91410
91410
  /** An interface for updating data on the CommentReply object, for use in `commentReply.set({ ... })`. */
91411
91411
  interface CommentReplyUpdateData {
91412
91412
  /**
91413
- * Gets or sets the commentReply's content range.
91413
+ * Specifies the commentReply's content range.
91414
91414
  *
91415
91415
  * @remarks
91416
91416
  * [Api set: WordApi 1.4]
@@ -91424,7 +91424,7 @@ declare namespace Word {
91424
91424
  */
91425
91425
  parentComment?: Word.Interfaces.CommentUpdateData;
91426
91426
  /**
91427
- * Gets or sets the comment reply's content. The string is plain text.
91427
+ * Specifies the comment reply's content. The string is plain text.
91428
91428
  *
91429
91429
  * @remarks
91430
91430
  * [Api set: WordApi 1.4]
@@ -91445,70 +91445,70 @@ declare namespace Word {
91445
91445
  */
91446
91446
  font?: Word.Interfaces.FontUpdateData;
91447
91447
  /**
91448
- * Gets or sets the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
91448
+ * Specifies the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
91449
91449
  *
91450
91450
  * @remarks
91451
91451
  * [Api set: WordApi 1.1]
91452
91452
  */
91453
91453
  appearance?: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden";
91454
91454
  /**
91455
- * Gets or sets a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
91455
+ * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
91456
91456
  *
91457
91457
  * @remarks
91458
91458
  * [Api set: WordApi 1.1]
91459
91459
  */
91460
91460
  cannotDelete?: boolean;
91461
91461
  /**
91462
- * Gets or sets a value that indicates whether the user can edit the contents of the content control.
91462
+ * Specifies a value that indicates whether the user can edit the contents of the content control.
91463
91463
  *
91464
91464
  * @remarks
91465
91465
  * [Api set: WordApi 1.1]
91466
91466
  */
91467
91467
  cannotEdit?: boolean;
91468
91468
  /**
91469
- * Gets or sets the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
91469
+ * Specifies the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
91470
91470
  *
91471
91471
  * @remarks
91472
91472
  * [Api set: WordApi 1.1]
91473
91473
  */
91474
91474
  color?: string;
91475
91475
  /**
91476
- * Gets or sets the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
91476
+ * Specifies the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
91477
91477
  *
91478
91478
  * @remarks
91479
91479
  * [Api set: WordApi 1.1]
91480
91480
  */
91481
91481
  placeholderText?: string;
91482
91482
  /**
91483
- * Gets or sets a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
91483
+ * Specifies a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
91484
91484
  *
91485
91485
  * @remarks
91486
91486
  * [Api set: WordApi 1.1]
91487
91487
  */
91488
91488
  removeWhenEdited?: boolean;
91489
91489
  /**
91490
- * Gets or sets the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91490
+ * Specifies the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91491
91491
  *
91492
91492
  * @remarks
91493
91493
  * [Api set: WordApi 1.1]
91494
91494
  */
91495
91495
  style?: string;
91496
91496
  /**
91497
- * Gets or sets the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91497
+ * Specifies the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91498
91498
  *
91499
91499
  * @remarks
91500
91500
  * [Api set: WordApi 1.3]
91501
91501
  */
91502
91502
  styleBuiltIn?: Word.Style | "Other" | "Normal" | "Heading1" | "Heading2" | "Heading3" | "Heading4" | "Heading5" | "Heading6" | "Heading7" | "Heading8" | "Heading9" | "Toc1" | "Toc2" | "Toc3" | "Toc4" | "Toc5" | "Toc6" | "Toc7" | "Toc8" | "Toc9" | "FootnoteText" | "Header" | "Footer" | "Caption" | "FootnoteReference" | "EndnoteReference" | "EndnoteText" | "Title" | "Subtitle" | "Hyperlink" | "Strong" | "Emphasis" | "NoSpacing" | "ListParagraph" | "Quote" | "IntenseQuote" | "SubtleEmphasis" | "IntenseEmphasis" | "SubtleReference" | "IntenseReference" | "BookTitle" | "Bibliography" | "TocHeading" | "TableGrid" | "PlainTable1" | "PlainTable2" | "PlainTable3" | "PlainTable4" | "PlainTable5" | "TableGridLight" | "GridTable1Light" | "GridTable1Light_Accent1" | "GridTable1Light_Accent2" | "GridTable1Light_Accent3" | "GridTable1Light_Accent4" | "GridTable1Light_Accent5" | "GridTable1Light_Accent6" | "GridTable2" | "GridTable2_Accent1" | "GridTable2_Accent2" | "GridTable2_Accent3" | "GridTable2_Accent4" | "GridTable2_Accent5" | "GridTable2_Accent6" | "GridTable3" | "GridTable3_Accent1" | "GridTable3_Accent2" | "GridTable3_Accent3" | "GridTable3_Accent4" | "GridTable3_Accent5" | "GridTable3_Accent6" | "GridTable4" | "GridTable4_Accent1" | "GridTable4_Accent2" | "GridTable4_Accent3" | "GridTable4_Accent4" | "GridTable4_Accent5" | "GridTable4_Accent6" | "GridTable5Dark" | "GridTable5Dark_Accent1" | "GridTable5Dark_Accent2" | "GridTable5Dark_Accent3" | "GridTable5Dark_Accent4" | "GridTable5Dark_Accent5" | "GridTable5Dark_Accent6" | "GridTable6Colorful" | "GridTable6Colorful_Accent1" | "GridTable6Colorful_Accent2" | "GridTable6Colorful_Accent3" | "GridTable6Colorful_Accent4" | "GridTable6Colorful_Accent5" | "GridTable6Colorful_Accent6" | "GridTable7Colorful" | "GridTable7Colorful_Accent1" | "GridTable7Colorful_Accent2" | "GridTable7Colorful_Accent3" | "GridTable7Colorful_Accent4" | "GridTable7Colorful_Accent5" | "GridTable7Colorful_Accent6" | "ListTable1Light" | "ListTable1Light_Accent1" | "ListTable1Light_Accent2" | "ListTable1Light_Accent3" | "ListTable1Light_Accent4" | "ListTable1Light_Accent5" | "ListTable1Light_Accent6" | "ListTable2" | "ListTable2_Accent1" | "ListTable2_Accent2" | "ListTable2_Accent3" | "ListTable2_Accent4" | "ListTable2_Accent5" | "ListTable2_Accent6" | "ListTable3" | "ListTable3_Accent1" | "ListTable3_Accent2" | "ListTable3_Accent3" | "ListTable3_Accent4" | "ListTable3_Accent5" | "ListTable3_Accent6" | "ListTable4" | "ListTable4_Accent1" | "ListTable4_Accent2" | "ListTable4_Accent3" | "ListTable4_Accent4" | "ListTable4_Accent5" | "ListTable4_Accent6" | "ListTable5Dark" | "ListTable5Dark_Accent1" | "ListTable5Dark_Accent2" | "ListTable5Dark_Accent3" | "ListTable5Dark_Accent4" | "ListTable5Dark_Accent5" | "ListTable5Dark_Accent6" | "ListTable6Colorful" | "ListTable6Colorful_Accent1" | "ListTable6Colorful_Accent2" | "ListTable6Colorful_Accent3" | "ListTable6Colorful_Accent4" | "ListTable6Colorful_Accent5" | "ListTable6Colorful_Accent6" | "ListTable7Colorful" | "ListTable7Colorful_Accent1" | "ListTable7Colorful_Accent2" | "ListTable7Colorful_Accent3" | "ListTable7Colorful_Accent4" | "ListTable7Colorful_Accent5" | "ListTable7Colorful_Accent6";
91503
91503
  /**
91504
- * Gets or sets a tag to identify a content control.
91504
+ * Specifies a tag to identify a content control.
91505
91505
  *
91506
91506
  * @remarks
91507
91507
  * [Api set: WordApi 1.1]
91508
91508
  */
91509
91509
  tag?: string;
91510
91510
  /**
91511
- * Gets or sets the title for a content control.
91511
+ * Specifies the title for a content control.
91512
91512
  *
91513
91513
  * @remarks
91514
91514
  * [Api set: WordApi 1.1]
@@ -91522,7 +91522,7 @@ declare namespace Word {
91522
91522
  /** An interface for updating data on the CustomProperty object, for use in `customProperty.set({ ... })`. */
91523
91523
  interface CustomPropertyUpdateData {
91524
91524
  /**
91525
- * Gets or sets the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
91525
+ * Specifies the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
91526
91526
  *
91527
91527
  * @remarks
91528
91528
  * [Api set: WordApi 1.3]
@@ -91558,7 +91558,7 @@ declare namespace Word {
91558
91558
  */
91559
91559
  properties?: Word.Interfaces.DocumentPropertiesUpdateData;
91560
91560
  /**
91561
- * Gets or sets the ChangeTracking mode.
91561
+ * Specifies the ChangeTracking mode.
91562
91562
  *
91563
91563
  * @remarks
91564
91564
  * [Api set: WordApi 1.4]
@@ -91585,63 +91585,63 @@ declare namespace Word {
91585
91585
  /** An interface for updating data on the DocumentProperties object, for use in `documentProperties.set({ ... })`. */
91586
91586
  interface DocumentPropertiesUpdateData {
91587
91587
  /**
91588
- * Gets or sets the author of the document.
91588
+ * Specifies the author of the document.
91589
91589
  *
91590
91590
  * @remarks
91591
91591
  * [Api set: WordApi 1.3]
91592
91592
  */
91593
91593
  author?: string;
91594
91594
  /**
91595
- * Gets or sets the category of the document.
91595
+ * Specifies the category of the document.
91596
91596
  *
91597
91597
  * @remarks
91598
91598
  * [Api set: WordApi 1.3]
91599
91599
  */
91600
91600
  category?: string;
91601
91601
  /**
91602
- * Gets or sets the comments of the document.
91602
+ * Specifies the comments of the document.
91603
91603
  *
91604
91604
  * @remarks
91605
91605
  * [Api set: WordApi 1.3]
91606
91606
  */
91607
91607
  comments?: string;
91608
91608
  /**
91609
- * Gets or sets the company of the document.
91609
+ * Specifies the company of the document.
91610
91610
  *
91611
91611
  * @remarks
91612
91612
  * [Api set: WordApi 1.3]
91613
91613
  */
91614
91614
  company?: string;
91615
91615
  /**
91616
- * Gets or sets the format of the document.
91616
+ * Specifies the format of the document.
91617
91617
  *
91618
91618
  * @remarks
91619
91619
  * [Api set: WordApi 1.3]
91620
91620
  */
91621
91621
  format?: string;
91622
91622
  /**
91623
- * Gets or sets the keywords of the document.
91623
+ * Specifies the keywords of the document.
91624
91624
  *
91625
91625
  * @remarks
91626
91626
  * [Api set: WordApi 1.3]
91627
91627
  */
91628
91628
  keywords?: string;
91629
91629
  /**
91630
- * Gets or sets the manager of the document.
91630
+ * Specifies the manager of the document.
91631
91631
  *
91632
91632
  * @remarks
91633
91633
  * [Api set: WordApi 1.3]
91634
91634
  */
91635
91635
  manager?: string;
91636
91636
  /**
91637
- * Gets or sets the subject of the document.
91637
+ * Specifies the subject of the document.
91638
91638
  *
91639
91639
  * @remarks
91640
91640
  * [Api set: WordApi 1.3]
91641
91641
  */
91642
91642
  subject?: string;
91643
91643
  /**
91644
- * Gets or sets the title of the document.
91644
+ * Specifies the title of the document.
91645
91645
  *
91646
91646
  * @remarks
91647
91647
  * [Api set: WordApi 1.3]
@@ -91657,6 +91657,13 @@ declare namespace Word {
91657
91657
  * [Api set: WordApi 1.4]
91658
91658
  */
91659
91659
  result?: Word.Interfaces.RangeUpdateData;
91660
+ /**
91661
+ * Specifies the field's code instruction.
91662
+ *
91663
+ * @remarks
91664
+ * [Api set: WordApi 1.4]
91665
+ */
91666
+ code?: string;
91660
91667
  }
91661
91668
  /** An interface for updating data on the FieldCollection object, for use in `fieldCollection.set({ ... })`. */
91662
91669
  interface FieldCollectionUpdateData {
@@ -91665,77 +91672,77 @@ declare namespace Word {
91665
91672
  /** An interface for updating data on the Font object, for use in `font.set({ ... })`. */
91666
91673
  interface FontUpdateData {
91667
91674
  /**
91668
- * Gets or sets a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
91675
+ * Specifies a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
91669
91676
  *
91670
91677
  * @remarks
91671
91678
  * [Api set: WordApi 1.1]
91672
91679
  */
91673
91680
  bold?: boolean;
91674
91681
  /**
91675
- * Gets or sets the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
91682
+ * Specifies the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
91676
91683
  *
91677
91684
  * @remarks
91678
91685
  * [Api set: WordApi 1.1]
91679
91686
  */
91680
91687
  color?: string;
91681
91688
  /**
91682
- * Gets or sets a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
91689
+ * Specifies a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
91683
91690
  *
91684
91691
  * @remarks
91685
91692
  * [Api set: WordApi 1.1]
91686
91693
  */
91687
91694
  doubleStrikeThrough?: boolean;
91688
91695
  /**
91689
- * Gets or sets the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
91696
+ * Specifies the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
91690
91697
  *
91691
91698
  * @remarks
91692
91699
  * [Api set: WordApi 1.1]
91693
91700
  */
91694
91701
  highlightColor?: string;
91695
91702
  /**
91696
- * Gets or sets a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
91703
+ * Specifies a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
91697
91704
  *
91698
91705
  * @remarks
91699
91706
  * [Api set: WordApi 1.1]
91700
91707
  */
91701
91708
  italic?: boolean;
91702
91709
  /**
91703
- * Gets or sets a value that represents the name of the font.
91710
+ * Specifies a value that represents the name of the font.
91704
91711
  *
91705
91712
  * @remarks
91706
91713
  * [Api set: WordApi 1.1]
91707
91714
  */
91708
91715
  name?: string;
91709
91716
  /**
91710
- * Gets or sets a value that represents the font size in points.
91717
+ * Specifies a value that represents the font size in points.
91711
91718
  *
91712
91719
  * @remarks
91713
91720
  * [Api set: WordApi 1.1]
91714
91721
  */
91715
91722
  size?: number;
91716
91723
  /**
91717
- * Gets or sets a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
91724
+ * Specifies a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
91718
91725
  *
91719
91726
  * @remarks
91720
91727
  * [Api set: WordApi 1.1]
91721
91728
  */
91722
91729
  strikeThrough?: boolean;
91723
91730
  /**
91724
- * Gets or sets a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
91731
+ * Specifies a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
91725
91732
  *
91726
91733
  * @remarks
91727
91734
  * [Api set: WordApi 1.1]
91728
91735
  */
91729
91736
  subscript?: boolean;
91730
91737
  /**
91731
- * Gets or sets a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
91738
+ * Specifies a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
91732
91739
  *
91733
91740
  * @remarks
91734
91741
  * [Api set: WordApi 1.1]
91735
91742
  */
91736
91743
  superscript?: boolean;
91737
91744
  /**
91738
- * Gets or sets a value that indicates the font's underline type. 'None' if the font is not underlined.
91745
+ * Specifies a value that indicates the font's underline type. 'None' if the font is not underlined.
91739
91746
  *
91740
91747
  * @remarks
91741
91748
  * [Api set: WordApi 1.1]
@@ -91745,42 +91752,42 @@ declare namespace Word {
91745
91752
  /** An interface for updating data on the InlinePicture object, for use in `inlinePicture.set({ ... })`. */
91746
91753
  interface InlinePictureUpdateData {
91747
91754
  /**
91748
- * Gets or sets a string that represents the alternative text associated with the inline image.
91755
+ * Specifies a string that represents the alternative text associated with the inline image.
91749
91756
  *
91750
91757
  * @remarks
91751
91758
  * [Api set: WordApi 1.1]
91752
91759
  */
91753
91760
  altTextDescription?: string;
91754
91761
  /**
91755
- * Gets or sets a string that contains the title for the inline image.
91762
+ * Specifies a string that contains the title for the inline image.
91756
91763
  *
91757
91764
  * @remarks
91758
91765
  * [Api set: WordApi 1.1]
91759
91766
  */
91760
91767
  altTextTitle?: string;
91761
91768
  /**
91762
- * Gets or sets a number that describes the height of the inline image.
91769
+ * Specifies a number that describes the height of the inline image.
91763
91770
  *
91764
91771
  * @remarks
91765
91772
  * [Api set: WordApi 1.1]
91766
91773
  */
91767
91774
  height?: number;
91768
91775
  /**
91769
- * Gets or sets a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
91776
+ * Specifies a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
91770
91777
  *
91771
91778
  * @remarks
91772
91779
  * [Api set: WordApi 1.1]
91773
91780
  */
91774
91781
  hyperlink?: string;
91775
91782
  /**
91776
- * Gets or sets a value that indicates whether the inline image retains its original proportions when you resize it.
91783
+ * Specifies a value that indicates whether the inline image retains its original proportions when you resize it.
91777
91784
  *
91778
91785
  * @remarks
91779
91786
  * [Api set: WordApi 1.1]
91780
91787
  */
91781
91788
  lockAspectRatio?: boolean;
91782
91789
  /**
91783
- * Gets or sets a number that describes the width of the inline image.
91790
+ * Specifies a number that describes the width of the inline image.
91784
91791
  *
91785
91792
  * @remarks
91786
91793
  * [Api set: WordApi 1.1]
@@ -91798,7 +91805,7 @@ declare namespace Word {
91798
91805
  /** An interface for updating data on the ListItem object, for use in `listItem.set({ ... })`. */
91799
91806
  interface ListItemUpdateData {
91800
91807
  /**
91801
- * Gets or sets the level of the item in the list.
91808
+ * Specifies the level of the item in the list.
91802
91809
  *
91803
91810
  * @remarks
91804
91811
  * [Api set: WordApi 1.3]
@@ -91850,84 +91857,84 @@ declare namespace Word {
91850
91857
  */
91851
91858
  listItemOrNullObject?: Word.Interfaces.ListItemUpdateData;
91852
91859
  /**
91853
- * Gets or sets the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
91860
+ * Specifies the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
91854
91861
  *
91855
91862
  * @remarks
91856
91863
  * [Api set: WordApi 1.1]
91857
91864
  */
91858
91865
  alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
91859
91866
  /**
91860
- * Gets or sets the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
91867
+ * Specifies the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
91861
91868
  *
91862
91869
  * @remarks
91863
91870
  * [Api set: WordApi 1.1]
91864
91871
  */
91865
91872
  firstLineIndent?: number;
91866
91873
  /**
91867
- * Gets or sets the left indent value, in points, for the paragraph.
91874
+ * Specifies the left indent value, in points, for the paragraph.
91868
91875
  *
91869
91876
  * @remarks
91870
91877
  * [Api set: WordApi 1.1]
91871
91878
  */
91872
91879
  leftIndent?: number;
91873
91880
  /**
91874
- * Gets or sets the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
91881
+ * Specifies the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
91875
91882
  *
91876
91883
  * @remarks
91877
91884
  * [Api set: WordApi 1.1]
91878
91885
  */
91879
91886
  lineSpacing?: number;
91880
91887
  /**
91881
- * Gets or sets the amount of spacing, in grid lines, after the paragraph.
91888
+ * Specifies the amount of spacing, in grid lines, after the paragraph.
91882
91889
  *
91883
91890
  * @remarks
91884
91891
  * [Api set: WordApi 1.1]
91885
91892
  */
91886
91893
  lineUnitAfter?: number;
91887
91894
  /**
91888
- * Gets or sets the amount of spacing, in grid lines, before the paragraph.
91895
+ * Specifies the amount of spacing, in grid lines, before the paragraph.
91889
91896
  *
91890
91897
  * @remarks
91891
91898
  * [Api set: WordApi 1.1]
91892
91899
  */
91893
91900
  lineUnitBefore?: number;
91894
91901
  /**
91895
- * Gets or sets the outline level for the paragraph.
91902
+ * Specifies the outline level for the paragraph.
91896
91903
  *
91897
91904
  * @remarks
91898
91905
  * [Api set: WordApi 1.1]
91899
91906
  */
91900
91907
  outlineLevel?: number;
91901
91908
  /**
91902
- * Gets or sets the right indent value, in points, for the paragraph.
91909
+ * Specifies the right indent value, in points, for the paragraph.
91903
91910
  *
91904
91911
  * @remarks
91905
91912
  * [Api set: WordApi 1.1]
91906
91913
  */
91907
91914
  rightIndent?: number;
91908
91915
  /**
91909
- * Gets or sets the spacing, in points, after the paragraph.
91916
+ * Specifies the spacing, in points, after the paragraph.
91910
91917
  *
91911
91918
  * @remarks
91912
91919
  * [Api set: WordApi 1.1]
91913
91920
  */
91914
91921
  spaceAfter?: number;
91915
91922
  /**
91916
- * Gets or sets the spacing, in points, before the paragraph.
91923
+ * Specifies the spacing, in points, before the paragraph.
91917
91924
  *
91918
91925
  * @remarks
91919
91926
  * [Api set: WordApi 1.1]
91920
91927
  */
91921
91928
  spaceBefore?: number;
91922
91929
  /**
91923
- * Gets or sets the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91930
+ * Specifies the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91924
91931
  *
91925
91932
  * @remarks
91926
91933
  * [Api set: WordApi 1.1]
91927
91934
  */
91928
91935
  style?: string;
91929
91936
  /**
91930
- * Gets or sets the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91937
+ * Specifies the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91931
91938
  *
91932
91939
  * @remarks
91933
91940
  * [Api set: WordApi 1.3]
@@ -91955,14 +91962,14 @@ declare namespace Word {
91955
91962
  */
91956
91963
  hyperlink?: string;
91957
91964
  /**
91958
- * Gets or sets the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91965
+ * Specifies the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
91959
91966
  *
91960
91967
  * @remarks
91961
91968
  * [Api set: WordApi 1.1]
91962
91969
  */
91963
91970
  style?: string;
91964
91971
  /**
91965
- * Gets or sets the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91972
+ * Specifies the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
91966
91973
  *
91967
91974
  * @remarks
91968
91975
  * [Api set: WordApi 1.3]
@@ -91976,49 +91983,49 @@ declare namespace Word {
91976
91983
  /** An interface for updating data on the SearchOptions object, for use in `searchOptions.set({ ... })`. */
91977
91984
  interface SearchOptionsUpdateData {
91978
91985
  /**
91979
- * Gets or sets a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
91986
+ * Specifies a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
91980
91987
  *
91981
91988
  * @remarks
91982
91989
  * [Api set: WordApi 1.1]
91983
91990
  */
91984
91991
  ignorePunct?: boolean;
91985
91992
  /**
91986
- * Gets or sets a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
91993
+ * Specifies a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
91987
91994
  *
91988
91995
  * @remarks
91989
91996
  * [Api set: WordApi 1.1]
91990
91997
  */
91991
91998
  ignoreSpace?: boolean;
91992
91999
  /**
91993
- * Gets or sets a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
92000
+ * Specifies a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
91994
92001
  *
91995
92002
  * @remarks
91996
92003
  * [Api set: WordApi 1.1]
91997
92004
  */
91998
92005
  matchCase?: boolean;
91999
92006
  /**
92000
- * Gets or sets a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
92007
+ * Specifies a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
92001
92008
  *
92002
92009
  * @remarks
92003
92010
  * [Api set: WordApi 1.1]
92004
92011
  */
92005
92012
  matchPrefix?: boolean;
92006
92013
  /**
92007
- * Gets or sets a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
92014
+ * Specifies a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
92008
92015
  *
92009
92016
  * @remarks
92010
92017
  * [Api set: WordApi 1.1]
92011
92018
  */
92012
92019
  matchSuffix?: boolean;
92013
92020
  /**
92014
- * Gets or sets a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
92021
+ * Specifies a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
92015
92022
  *
92016
92023
  * @remarks
92017
92024
  * [Api set: WordApi 1.1]
92018
92025
  */
92019
92026
  matchWholeWord?: boolean;
92020
92027
  /**
92021
- * Gets or sets a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
92028
+ * Specifies a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
92022
92029
  *
92023
92030
  * @remarks
92024
92031
  * [Api set: WordApi 1.1]
@@ -92042,7 +92049,7 @@ declare namespace Word {
92042
92049
  /** An interface for updating data on the Setting object, for use in `setting.set({ ... })`. */
92043
92050
  interface SettingUpdateData {
92044
92051
  /**
92045
- * Gets or sets the value of the setting.
92052
+ * Specifies the value of the setting.
92046
92053
  *
92047
92054
  * @remarks
92048
92055
  * [Api set: WordApi 1.4]
@@ -92063,98 +92070,98 @@ declare namespace Word {
92063
92070
  */
92064
92071
  font?: Word.Interfaces.FontUpdateData;
92065
92072
  /**
92066
- * Gets or sets the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
92073
+ * Specifies the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
92067
92074
  *
92068
92075
  * @remarks
92069
92076
  * [Api set: WordApi 1.3]
92070
92077
  */
92071
92078
  alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
92072
92079
  /**
92073
- * Gets and sets the number of header rows.
92080
+ * Specifies the number of header rows.
92074
92081
  *
92075
92082
  * @remarks
92076
92083
  * [Api set: WordApi 1.3]
92077
92084
  */
92078
92085
  headerRowCount?: number;
92079
92086
  /**
92080
- * Gets and sets the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
92087
+ * Specifies the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
92081
92088
  *
92082
92089
  * @remarks
92083
92090
  * [Api set: WordApi 1.3]
92084
92091
  */
92085
92092
  horizontalAlignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
92086
92093
  /**
92087
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
92094
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
92088
92095
  *
92089
92096
  * @remarks
92090
92097
  * [Api set: WordApi 1.3]
92091
92098
  */
92092
92099
  shadingColor?: string;
92093
92100
  /**
92094
- * Gets or sets the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
92101
+ * Specifies the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
92095
92102
  *
92096
92103
  * @remarks
92097
92104
  * [Api set: WordApi 1.3]
92098
92105
  */
92099
92106
  style?: string;
92100
92107
  /**
92101
- * Gets and sets whether the table has banded columns.
92108
+ * Specifies whether the table has banded columns.
92102
92109
  *
92103
92110
  * @remarks
92104
92111
  * [Api set: WordApi 1.3]
92105
92112
  */
92106
92113
  styleBandedColumns?: boolean;
92107
92114
  /**
92108
- * Gets and sets whether the table has banded rows.
92115
+ * Specifies whether the table has banded rows.
92109
92116
  *
92110
92117
  * @remarks
92111
92118
  * [Api set: WordApi 1.3]
92112
92119
  */
92113
92120
  styleBandedRows?: boolean;
92114
92121
  /**
92115
- * Gets or sets the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
92122
+ * Specifies the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
92116
92123
  *
92117
92124
  * @remarks
92118
92125
  * [Api set: WordApi 1.3]
92119
92126
  */
92120
92127
  styleBuiltIn?: Word.Style | "Other" | "Normal" | "Heading1" | "Heading2" | "Heading3" | "Heading4" | "Heading5" | "Heading6" | "Heading7" | "Heading8" | "Heading9" | "Toc1" | "Toc2" | "Toc3" | "Toc4" | "Toc5" | "Toc6" | "Toc7" | "Toc8" | "Toc9" | "FootnoteText" | "Header" | "Footer" | "Caption" | "FootnoteReference" | "EndnoteReference" | "EndnoteText" | "Title" | "Subtitle" | "Hyperlink" | "Strong" | "Emphasis" | "NoSpacing" | "ListParagraph" | "Quote" | "IntenseQuote" | "SubtleEmphasis" | "IntenseEmphasis" | "SubtleReference" | "IntenseReference" | "BookTitle" | "Bibliography" | "TocHeading" | "TableGrid" | "PlainTable1" | "PlainTable2" | "PlainTable3" | "PlainTable4" | "PlainTable5" | "TableGridLight" | "GridTable1Light" | "GridTable1Light_Accent1" | "GridTable1Light_Accent2" | "GridTable1Light_Accent3" | "GridTable1Light_Accent4" | "GridTable1Light_Accent5" | "GridTable1Light_Accent6" | "GridTable2" | "GridTable2_Accent1" | "GridTable2_Accent2" | "GridTable2_Accent3" | "GridTable2_Accent4" | "GridTable2_Accent5" | "GridTable2_Accent6" | "GridTable3" | "GridTable3_Accent1" | "GridTable3_Accent2" | "GridTable3_Accent3" | "GridTable3_Accent4" | "GridTable3_Accent5" | "GridTable3_Accent6" | "GridTable4" | "GridTable4_Accent1" | "GridTable4_Accent2" | "GridTable4_Accent3" | "GridTable4_Accent4" | "GridTable4_Accent5" | "GridTable4_Accent6" | "GridTable5Dark" | "GridTable5Dark_Accent1" | "GridTable5Dark_Accent2" | "GridTable5Dark_Accent3" | "GridTable5Dark_Accent4" | "GridTable5Dark_Accent5" | "GridTable5Dark_Accent6" | "GridTable6Colorful" | "GridTable6Colorful_Accent1" | "GridTable6Colorful_Accent2" | "GridTable6Colorful_Accent3" | "GridTable6Colorful_Accent4" | "GridTable6Colorful_Accent5" | "GridTable6Colorful_Accent6" | "GridTable7Colorful" | "GridTable7Colorful_Accent1" | "GridTable7Colorful_Accent2" | "GridTable7Colorful_Accent3" | "GridTable7Colorful_Accent4" | "GridTable7Colorful_Accent5" | "GridTable7Colorful_Accent6" | "ListTable1Light" | "ListTable1Light_Accent1" | "ListTable1Light_Accent2" | "ListTable1Light_Accent3" | "ListTable1Light_Accent4" | "ListTable1Light_Accent5" | "ListTable1Light_Accent6" | "ListTable2" | "ListTable2_Accent1" | "ListTable2_Accent2" | "ListTable2_Accent3" | "ListTable2_Accent4" | "ListTable2_Accent5" | "ListTable2_Accent6" | "ListTable3" | "ListTable3_Accent1" | "ListTable3_Accent2" | "ListTable3_Accent3" | "ListTable3_Accent4" | "ListTable3_Accent5" | "ListTable3_Accent6" | "ListTable4" | "ListTable4_Accent1" | "ListTable4_Accent2" | "ListTable4_Accent3" | "ListTable4_Accent4" | "ListTable4_Accent5" | "ListTable4_Accent6" | "ListTable5Dark" | "ListTable5Dark_Accent1" | "ListTable5Dark_Accent2" | "ListTable5Dark_Accent3" | "ListTable5Dark_Accent4" | "ListTable5Dark_Accent5" | "ListTable5Dark_Accent6" | "ListTable6Colorful" | "ListTable6Colorful_Accent1" | "ListTable6Colorful_Accent2" | "ListTable6Colorful_Accent3" | "ListTable6Colorful_Accent4" | "ListTable6Colorful_Accent5" | "ListTable6Colorful_Accent6" | "ListTable7Colorful" | "ListTable7Colorful_Accent1" | "ListTable7Colorful_Accent2" | "ListTable7Colorful_Accent3" | "ListTable7Colorful_Accent4" | "ListTable7Colorful_Accent5" | "ListTable7Colorful_Accent6";
92121
92128
  /**
92122
- * Gets and sets whether the table has a first column with a special style.
92129
+ * Specifies whether the table has a first column with a special style.
92123
92130
  *
92124
92131
  * @remarks
92125
92132
  * [Api set: WordApi 1.3]
92126
92133
  */
92127
92134
  styleFirstColumn?: boolean;
92128
92135
  /**
92129
- * Gets and sets whether the table has a last column with a special style.
92136
+ * Specifies whether the table has a last column with a special style.
92130
92137
  *
92131
92138
  * @remarks
92132
92139
  * [Api set: WordApi 1.3]
92133
92140
  */
92134
92141
  styleLastColumn?: boolean;
92135
92142
  /**
92136
- * Gets and sets whether the table has a total (last) row with a special style.
92143
+ * Specifies whether the table has a total (last) row with a special style.
92137
92144
  *
92138
92145
  * @remarks
92139
92146
  * [Api set: WordApi 1.3]
92140
92147
  */
92141
92148
  styleTotalRow?: boolean;
92142
92149
  /**
92143
- * Gets and sets the text values in the table, as a 2D Javascript array.
92150
+ * Specifies the text values in the table, as a 2D JavaScript array.
92144
92151
  *
92145
92152
  * @remarks
92146
92153
  * [Api set: WordApi 1.3]
92147
92154
  */
92148
92155
  values?: string[][];
92149
92156
  /**
92150
- * Gets and sets the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
92157
+ * Specifies the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
92151
92158
  *
92152
92159
  * @remarks
92153
92160
  * [Api set: WordApi 1.3]
92154
92161
  */
92155
92162
  verticalAlignment?: Word.VerticalAlignment | "Mixed" | "Top" | "Center" | "Bottom";
92156
92163
  /**
92157
- * Gets and sets the width of the table in points.
92164
+ * Specifies the width of the table in points.
92158
92165
  *
92159
92166
  * @remarks
92160
92167
  * [Api set: WordApi 1.3]
@@ -92175,35 +92182,35 @@ declare namespace Word {
92175
92182
  */
92176
92183
  font?: Word.Interfaces.FontUpdateData;
92177
92184
  /**
92178
- * Gets and sets the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
92185
+ * Specifies the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
92179
92186
  *
92180
92187
  * @remarks
92181
92188
  * [Api set: WordApi 1.3]
92182
92189
  */
92183
92190
  horizontalAlignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
92184
92191
  /**
92185
- * Gets and sets the preferred height of the row in points.
92192
+ * Specifies the preferred height of the row in points.
92186
92193
  *
92187
92194
  * @remarks
92188
92195
  * [Api set: WordApi 1.3]
92189
92196
  */
92190
92197
  preferredHeight?: number;
92191
92198
  /**
92192
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
92199
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
92193
92200
  *
92194
92201
  * @remarks
92195
92202
  * [Api set: WordApi 1.3]
92196
92203
  */
92197
92204
  shadingColor?: string;
92198
92205
  /**
92199
- * Gets and sets the text values in the row, as a 2D Javascript array.
92206
+ * Specifies the text values in the row, as a 2D JavaScript array.
92200
92207
  *
92201
92208
  * @remarks
92202
92209
  * [Api set: WordApi 1.3]
92203
92210
  */
92204
92211
  values?: string[][];
92205
92212
  /**
92206
- * Gets and sets the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
92213
+ * Specifies the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
92207
92214
  *
92208
92215
  * @remarks
92209
92216
  * [Api set: WordApi 1.3]
@@ -92224,35 +92231,35 @@ declare namespace Word {
92224
92231
  */
92225
92232
  body?: Word.Interfaces.BodyUpdateData;
92226
92233
  /**
92227
- * Gets and sets the width of the cell's column in points. This is applicable to uniform tables.
92234
+ * Specifies the width of the cell's column in points. This is applicable to uniform tables.
92228
92235
  *
92229
92236
  * @remarks
92230
92237
  * [Api set: WordApi 1.3]
92231
92238
  */
92232
92239
  columnWidth?: number;
92233
92240
  /**
92234
- * Gets and sets the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
92241
+ * Specifies the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
92235
92242
  *
92236
92243
  * @remarks
92237
92244
  * [Api set: WordApi 1.3]
92238
92245
  */
92239
92246
  horizontalAlignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
92240
92247
  /**
92241
- * Gets or sets the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
92248
+ * Specifies the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
92242
92249
  *
92243
92250
  * @remarks
92244
92251
  * [Api set: WordApi 1.3]
92245
92252
  */
92246
92253
  shadingColor?: string;
92247
92254
  /**
92248
- * Gets and sets the text of the cell.
92255
+ * Specifies the text of the cell.
92249
92256
  *
92250
92257
  * @remarks
92251
92258
  * [Api set: WordApi 1.3]
92252
92259
  */
92253
92260
  value?: string;
92254
92261
  /**
92255
- * Gets and sets the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
92262
+ * Specifies the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
92256
92263
  *
92257
92264
  * @remarks
92258
92265
  * [Api set: WordApi 1.3]
@@ -92266,21 +92273,21 @@ declare namespace Word {
92266
92273
  /** An interface for updating data on the TableBorder object, for use in `tableBorder.set({ ... })`. */
92267
92274
  interface TableBorderUpdateData {
92268
92275
  /**
92269
- * Gets or sets the table border color.
92276
+ * Specifies the table border color.
92270
92277
  *
92271
92278
  * @remarks
92272
92279
  * [Api set: WordApi 1.3]
92273
92280
  */
92274
92281
  color?: string;
92275
92282
  /**
92276
- * Gets or sets the type of the table border.
92283
+ * Specifies the type of the table border.
92277
92284
  *
92278
92285
  * @remarks
92279
92286
  * [Api set: WordApi 1.3]
92280
92287
  */
92281
92288
  type?: Word.BorderType | "Mixed" | "None" | "Single" | "Double" | "Dotted" | "Dashed" | "DotDashed" | "Dot2Dashed" | "Triple" | "ThinThickSmall" | "ThickThinSmall" | "ThinThickThinSmall" | "ThinThickMed" | "ThickThinMed" | "ThinThickThinMed" | "ThinThickLarge" | "ThickThinLarge" | "ThinThickThinLarge" | "Wave" | "DoubleWave" | "DashedSmall" | "DashDotStroked" | "ThreeDEmboss" | "ThreeDEngrave";
92282
92289
  /**
92283
- * Gets or sets the width, in points, of the table border. Not applicable to table border types that have fixed widths.
92290
+ * Specifies the width, in points, of the table border. Not applicable to table border types that have fixed widths.
92284
92291
  *
92285
92292
  * @remarks
92286
92293
  * [Api set: WordApi 1.3]
@@ -92339,14 +92346,14 @@ declare namespace Word {
92339
92346
  */
92340
92347
  tables?: Word.Interfaces.TableData[];
92341
92348
  /**
92342
- * Gets or sets the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
92349
+ * Specifies the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
92343
92350
  *
92344
92351
  * @remarks
92345
92352
  * [Api set: WordApi 1.1]
92346
92353
  */
92347
92354
  style?: string;
92348
92355
  /**
92349
- * Gets or sets the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
92356
+ * Specifies the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
92350
92357
  *
92351
92358
  * @remarks
92352
92359
  * [Api set: WordApi 1.3]
@@ -92370,7 +92377,7 @@ declare namespace Word {
92370
92377
  /** An interface describing the data returned by calling `comment.toJSON()`. */
92371
92378
  interface CommentData {
92372
92379
  /**
92373
- * Gets or sets the comment's content range.
92380
+ * Specifies the comment's content range.
92374
92381
  *
92375
92382
  * @remarks
92376
92383
  * [Api set: WordApi 1.4]
@@ -92398,7 +92405,7 @@ declare namespace Word {
92398
92405
  */
92399
92406
  authorName?: string;
92400
92407
  /**
92401
- * Gets or sets the comment's content as plain text.
92408
+ * Specifies the comment's content as plain text.
92402
92409
  *
92403
92410
  * @remarks
92404
92411
  * [Api set: WordApi 1.4]
@@ -92419,7 +92426,7 @@ declare namespace Word {
92419
92426
  */
92420
92427
  id?: string;
92421
92428
  /**
92422
- * 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.
92429
+ * Specifies the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
92423
92430
  *
92424
92431
  * @remarks
92425
92432
  * [Api set: WordApi 1.4]
@@ -92433,7 +92440,7 @@ declare namespace Word {
92433
92440
  /** An interface describing the data returned by calling `commentContentRange.toJSON()`. */
92434
92441
  interface CommentContentRangeData {
92435
92442
  /**
92436
- * Gets or sets a value that indicates whether the comment text is bold.
92443
+ * Specifies a value that indicates whether the comment text is bold.
92437
92444
  *
92438
92445
  * @remarks
92439
92446
  * [Api set: WordApi 1.4]
@@ -92454,14 +92461,14 @@ declare namespace Word {
92454
92461
  */
92455
92462
  isEmpty?: boolean;
92456
92463
  /**
92457
- * Gets or sets a value that indicates whether the comment text is italicized.
92464
+ * Specifies a value that indicates whether the comment text is italicized.
92458
92465
  *
92459
92466
  * @remarks
92460
92467
  * [Api set: WordApi 1.4]
92461
92468
  */
92462
92469
  italic?: boolean;
92463
92470
  /**
92464
- * Gets or sets a value that indicates whether the comment text has a strikethrough.
92471
+ * Specifies a value that indicates whether the comment text has a strikethrough.
92465
92472
  *
92466
92473
  * @remarks
92467
92474
  * [Api set: WordApi 1.4]
@@ -92475,7 +92482,7 @@ declare namespace Word {
92475
92482
  */
92476
92483
  text?: string;
92477
92484
  /**
92478
- * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
92485
+ * Specifies a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
92479
92486
  *
92480
92487
  * @remarks
92481
92488
  * [Api set: WordApi 1.4]
@@ -92485,7 +92492,7 @@ declare namespace Word {
92485
92492
  /** An interface describing the data returned by calling `commentReply.toJSON()`. */
92486
92493
  interface CommentReplyData {
92487
92494
  /**
92488
- * Gets or sets the commentReply's content range.
92495
+ * Specifies the commentReply's content range.
92489
92496
  *
92490
92497
  * @remarks
92491
92498
  * [Api set: WordApi 1.4]
@@ -92513,7 +92520,7 @@ declare namespace Word {
92513
92520
  */
92514
92521
  authorName?: string;
92515
92522
  /**
92516
- * Gets or sets the comment reply's content. The string is plain text.
92523
+ * Specifies the comment reply's content. The string is plain text.
92517
92524
  *
92518
92525
  * @remarks
92519
92526
  * [Api set: WordApi 1.4]
@@ -92590,28 +92597,28 @@ declare namespace Word {
92590
92597
  */
92591
92598
  tables?: Word.Interfaces.TableData[];
92592
92599
  /**
92593
- * Gets or sets the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
92600
+ * Specifies the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
92594
92601
  *
92595
92602
  * @remarks
92596
92603
  * [Api set: WordApi 1.1]
92597
92604
  */
92598
92605
  appearance?: Word.ContentControlAppearance | "BoundingBox" | "Tags" | "Hidden";
92599
92606
  /**
92600
- * Gets or sets a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
92607
+ * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
92601
92608
  *
92602
92609
  * @remarks
92603
92610
  * [Api set: WordApi 1.1]
92604
92611
  */
92605
92612
  cannotDelete?: boolean;
92606
92613
  /**
92607
- * Gets or sets a value that indicates whether the user can edit the contents of the content control.
92614
+ * Specifies a value that indicates whether the user can edit the contents of the content control.
92608
92615
  *
92609
92616
  * @remarks
92610
92617
  * [Api set: WordApi 1.1]
92611
92618
  */
92612
92619
  cannotEdit?: boolean;
92613
92620
  /**
92614
- * Gets or sets the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
92621
+ * Specifies the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
92615
92622
  *
92616
92623
  * @remarks
92617
92624
  * [Api set: WordApi 1.1]
@@ -92625,28 +92632,28 @@ declare namespace Word {
92625
92632
  */
92626
92633
  id?: number;
92627
92634
  /**
92628
- * Gets or sets the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
92635
+ * Specifies the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
92629
92636
  *
92630
92637
  * @remarks
92631
92638
  * [Api set: WordApi 1.1]
92632
92639
  */
92633
92640
  placeholderText?: string;
92634
92641
  /**
92635
- * Gets or sets a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
92642
+ * Specifies a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
92636
92643
  *
92637
92644
  * @remarks
92638
92645
  * [Api set: WordApi 1.1]
92639
92646
  */
92640
92647
  removeWhenEdited?: boolean;
92641
92648
  /**
92642
- * Gets or sets the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
92649
+ * Specifies the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
92643
92650
  *
92644
92651
  * @remarks
92645
92652
  * [Api set: WordApi 1.1]
92646
92653
  */
92647
92654
  style?: string;
92648
92655
  /**
92649
- * Gets or sets the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
92656
+ * Specifies the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
92650
92657
  *
92651
92658
  * @remarks
92652
92659
  * [Api set: WordApi 1.3]
@@ -92660,7 +92667,7 @@ declare namespace Word {
92660
92667
  */
92661
92668
  subtype?: Word.ContentControlType | "Unknown" | "RichTextInline" | "RichTextParagraphs" | "RichTextTableCell" | "RichTextTableRow" | "RichTextTable" | "PlainTextInline" | "PlainTextParagraph" | "Picture" | "BuildingBlockGallery" | "CheckBox" | "ComboBox" | "DropDownList" | "DatePicker" | "RepeatingSection" | "RichText" | "PlainText";
92662
92669
  /**
92663
- * Gets or sets a tag to identify a content control.
92670
+ * Specifies a tag to identify a content control.
92664
92671
  *
92665
92672
  * @remarks
92666
92673
  * [Api set: WordApi 1.1]
@@ -92674,7 +92681,7 @@ declare namespace Word {
92674
92681
  */
92675
92682
  text?: string;
92676
92683
  /**
92677
- * Gets or sets the title for a content control.
92684
+ * Specifies the title for a content control.
92678
92685
  *
92679
92686
  * @remarks
92680
92687
  * [Api set: WordApi 1.1]
@@ -92709,7 +92716,7 @@ declare namespace Word {
92709
92716
  */
92710
92717
  type?: Word.DocumentPropertyType | "String" | "Number" | "Date" | "Boolean";
92711
92718
  /**
92712
- * Gets or sets the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
92719
+ * Specifies the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
92713
92720
  *
92714
92721
  * @remarks
92715
92722
  * [Api set: WordApi 1.3]
@@ -92790,7 +92797,7 @@ declare namespace Word {
92790
92797
  */
92791
92798
  settings?: Word.Interfaces.SettingData[];
92792
92799
  /**
92793
- * Gets or sets the ChangeTracking mode.
92800
+ * Specifies the ChangeTracking mode.
92794
92801
  *
92795
92802
  * @remarks
92796
92803
  * [Api set: WordApi 1.4]
@@ -92873,28 +92880,28 @@ declare namespace Word {
92873
92880
  */
92874
92881
  applicationName?: string;
92875
92882
  /**
92876
- * Gets or sets the author of the document.
92883
+ * Specifies the author of the document.
92877
92884
  *
92878
92885
  * @remarks
92879
92886
  * [Api set: WordApi 1.3]
92880
92887
  */
92881
92888
  author?: string;
92882
92889
  /**
92883
- * Gets or sets the category of the document.
92890
+ * Specifies the category of the document.
92884
92891
  *
92885
92892
  * @remarks
92886
92893
  * [Api set: WordApi 1.3]
92887
92894
  */
92888
92895
  category?: string;
92889
92896
  /**
92890
- * Gets or sets the comments of the document.
92897
+ * Specifies the comments of the document.
92891
92898
  *
92892
92899
  * @remarks
92893
92900
  * [Api set: WordApi 1.3]
92894
92901
  */
92895
92902
  comments?: string;
92896
92903
  /**
92897
- * Gets or sets the company of the document.
92904
+ * Specifies the company of the document.
92898
92905
  *
92899
92906
  * @remarks
92900
92907
  * [Api set: WordApi 1.3]
@@ -92908,14 +92915,14 @@ declare namespace Word {
92908
92915
  */
92909
92916
  creationDate?: Date;
92910
92917
  /**
92911
- * Gets or sets the format of the document.
92918
+ * Specifies the format of the document.
92912
92919
  *
92913
92920
  * @remarks
92914
92921
  * [Api set: WordApi 1.3]
92915
92922
  */
92916
92923
  format?: string;
92917
92924
  /**
92918
- * Gets or sets the keywords of the document.
92925
+ * Specifies the keywords of the document.
92919
92926
  *
92920
92927
  * @remarks
92921
92928
  * [Api set: WordApi 1.3]
@@ -92943,7 +92950,7 @@ declare namespace Word {
92943
92950
  */
92944
92951
  lastSaveTime?: Date;
92945
92952
  /**
92946
- * Gets or sets the manager of the document.
92953
+ * Specifies the manager of the document.
92947
92954
  *
92948
92955
  * @remarks
92949
92956
  * [Api set: WordApi 1.3]
@@ -92964,7 +92971,7 @@ declare namespace Word {
92964
92971
  */
92965
92972
  security?: number;
92966
92973
  /**
92967
- * Gets or sets the subject of the document.
92974
+ * Specifies the subject of the document.
92968
92975
  *
92969
92976
  * @remarks
92970
92977
  * [Api set: WordApi 1.3]
@@ -92978,7 +92985,7 @@ declare namespace Word {
92978
92985
  */
92979
92986
  template?: string;
92980
92987
  /**
92981
- * Gets or sets the title of the document.
92988
+ * Specifies the title of the document.
92982
92989
  *
92983
92990
  * @remarks
92984
92991
  * [Api set: WordApi 1.3]
@@ -93009,77 +93016,77 @@ declare namespace Word {
93009
93016
  /** An interface describing the data returned by calling `font.toJSON()`. */
93010
93017
  interface FontData {
93011
93018
  /**
93012
- * Gets or sets a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
93019
+ * Specifies a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
93013
93020
  *
93014
93021
  * @remarks
93015
93022
  * [Api set: WordApi 1.1]
93016
93023
  */
93017
93024
  bold?: boolean;
93018
93025
  /**
93019
- * Gets or sets the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
93026
+ * Specifies the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
93020
93027
  *
93021
93028
  * @remarks
93022
93029
  * [Api set: WordApi 1.1]
93023
93030
  */
93024
93031
  color?: string;
93025
93032
  /**
93026
- * Gets or sets a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
93033
+ * Specifies a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
93027
93034
  *
93028
93035
  * @remarks
93029
93036
  * [Api set: WordApi 1.1]
93030
93037
  */
93031
93038
  doubleStrikeThrough?: boolean;
93032
93039
  /**
93033
- * Gets or sets the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
93040
+ * Specifies the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
93034
93041
  *
93035
93042
  * @remarks
93036
93043
  * [Api set: WordApi 1.1]
93037
93044
  */
93038
93045
  highlightColor?: string;
93039
93046
  /**
93040
- * Gets or sets a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
93047
+ * Specifies a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
93041
93048
  *
93042
93049
  * @remarks
93043
93050
  * [Api set: WordApi 1.1]
93044
93051
  */
93045
93052
  italic?: boolean;
93046
93053
  /**
93047
- * Gets or sets a value that represents the name of the font.
93054
+ * Specifies a value that represents the name of the font.
93048
93055
  *
93049
93056
  * @remarks
93050
93057
  * [Api set: WordApi 1.1]
93051
93058
  */
93052
93059
  name?: string;
93053
93060
  /**
93054
- * Gets or sets a value that represents the font size in points.
93061
+ * Specifies a value that represents the font size in points.
93055
93062
  *
93056
93063
  * @remarks
93057
93064
  * [Api set: WordApi 1.1]
93058
93065
  */
93059
93066
  size?: number;
93060
93067
  /**
93061
- * Gets or sets a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
93068
+ * Specifies a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
93062
93069
  *
93063
93070
  * @remarks
93064
93071
  * [Api set: WordApi 1.1]
93065
93072
  */
93066
93073
  strikeThrough?: boolean;
93067
93074
  /**
93068
- * Gets or sets a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
93075
+ * Specifies a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
93069
93076
  *
93070
93077
  * @remarks
93071
93078
  * [Api set: WordApi 1.1]
93072
93079
  */
93073
93080
  subscript?: boolean;
93074
93081
  /**
93075
- * Gets or sets a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
93082
+ * Specifies a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
93076
93083
  *
93077
93084
  * @remarks
93078
93085
  * [Api set: WordApi 1.1]
93079
93086
  */
93080
93087
  superscript?: boolean;
93081
93088
  /**
93082
- * Gets or sets a value that indicates the font's underline type. 'None' if the font is not underlined.
93089
+ * Specifies a value that indicates the font's underline type. 'None' if the font is not underlined.
93083
93090
  *
93084
93091
  * @remarks
93085
93092
  * [Api set: WordApi 1.1]
@@ -93089,42 +93096,42 @@ declare namespace Word {
93089
93096
  /** An interface describing the data returned by calling `inlinePicture.toJSON()`. */
93090
93097
  interface InlinePictureData {
93091
93098
  /**
93092
- * Gets or sets a string that represents the alternative text associated with the inline image.
93099
+ * Specifies a string that represents the alternative text associated with the inline image.
93093
93100
  *
93094
93101
  * @remarks
93095
93102
  * [Api set: WordApi 1.1]
93096
93103
  */
93097
93104
  altTextDescription?: string;
93098
93105
  /**
93099
- * Gets or sets a string that contains the title for the inline image.
93106
+ * Specifies a string that contains the title for the inline image.
93100
93107
  *
93101
93108
  * @remarks
93102
93109
  * [Api set: WordApi 1.1]
93103
93110
  */
93104
93111
  altTextTitle?: string;
93105
93112
  /**
93106
- * Gets or sets a number that describes the height of the inline image.
93113
+ * Specifies a number that describes the height of the inline image.
93107
93114
  *
93108
93115
  * @remarks
93109
93116
  * [Api set: WordApi 1.1]
93110
93117
  */
93111
93118
  height?: number;
93112
93119
  /**
93113
- * Gets or sets a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
93120
+ * Specifies a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
93114
93121
  *
93115
93122
  * @remarks
93116
93123
  * [Api set: WordApi 1.1]
93117
93124
  */
93118
93125
  hyperlink?: string;
93119
93126
  /**
93120
- * Gets or sets a value that indicates whether the inline image retains its original proportions when you resize it.
93127
+ * Specifies a value that indicates whether the inline image retains its original proportions when you resize it.
93121
93128
  *
93122
93129
  * @remarks
93123
93130
  * [Api set: WordApi 1.1]
93124
93131
  */
93125
93132
  lockAspectRatio?: boolean;
93126
93133
  /**
93127
- * Gets or sets a number that describes the width of the inline image.
93134
+ * Specifies a number that describes the width of the inline image.
93128
93135
  *
93129
93136
  * @remarks
93130
93137
  * [Api set: WordApi 1.1]
@@ -93173,7 +93180,7 @@ declare namespace Word {
93173
93180
  /** An interface describing the data returned by calling `listItem.toJSON()`. */
93174
93181
  interface ListItemData {
93175
93182
  /**
93176
- * Gets or sets the level of the item in the list.
93183
+ * Specifies the level of the item in the list.
93177
93184
  *
93178
93185
  * @remarks
93179
93186
  * [Api set: WordApi 1.3]
@@ -93260,14 +93267,14 @@ declare namespace Word {
93260
93267
  */
93261
93268
  listItemOrNullObject?: Word.Interfaces.ListItemData;
93262
93269
  /**
93263
- * Gets or sets the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
93270
+ * Specifies the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
93264
93271
  *
93265
93272
  * @remarks
93266
93273
  * [Api set: WordApi 1.1]
93267
93274
  */
93268
93275
  alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
93269
93276
  /**
93270
- * Gets or sets the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
93277
+ * Specifies the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
93271
93278
  *
93272
93279
  * @remarks
93273
93280
  * [Api set: WordApi 1.1]
@@ -93288,70 +93295,70 @@ declare namespace Word {
93288
93295
  */
93289
93296
  isListItem?: boolean;
93290
93297
  /**
93291
- * Gets or sets the left indent value, in points, for the paragraph.
93298
+ * Specifies the left indent value, in points, for the paragraph.
93292
93299
  *
93293
93300
  * @remarks
93294
93301
  * [Api set: WordApi 1.1]
93295
93302
  */
93296
93303
  leftIndent?: number;
93297
93304
  /**
93298
- * Gets or sets the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
93305
+ * Specifies the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
93299
93306
  *
93300
93307
  * @remarks
93301
93308
  * [Api set: WordApi 1.1]
93302
93309
  */
93303
93310
  lineSpacing?: number;
93304
93311
  /**
93305
- * Gets or sets the amount of spacing, in grid lines, after the paragraph.
93312
+ * Specifies the amount of spacing, in grid lines, after the paragraph.
93306
93313
  *
93307
93314
  * @remarks
93308
93315
  * [Api set: WordApi 1.1]
93309
93316
  */
93310
93317
  lineUnitAfter?: number;
93311
93318
  /**
93312
- * Gets or sets the amount of spacing, in grid lines, before the paragraph.
93319
+ * Specifies the amount of spacing, in grid lines, before the paragraph.
93313
93320
  *
93314
93321
  * @remarks
93315
93322
  * [Api set: WordApi 1.1]
93316
93323
  */
93317
93324
  lineUnitBefore?: number;
93318
93325
  /**
93319
- * Gets or sets the outline level for the paragraph.
93326
+ * Specifies the outline level for the paragraph.
93320
93327
  *
93321
93328
  * @remarks
93322
93329
  * [Api set: WordApi 1.1]
93323
93330
  */
93324
93331
  outlineLevel?: number;
93325
93332
  /**
93326
- * Gets or sets the right indent value, in points, for the paragraph.
93333
+ * Specifies the right indent value, in points, for the paragraph.
93327
93334
  *
93328
93335
  * @remarks
93329
93336
  * [Api set: WordApi 1.1]
93330
93337
  */
93331
93338
  rightIndent?: number;
93332
93339
  /**
93333
- * Gets or sets the spacing, in points, after the paragraph.
93340
+ * Specifies the spacing, in points, after the paragraph.
93334
93341
  *
93335
93342
  * @remarks
93336
93343
  * [Api set: WordApi 1.1]
93337
93344
  */
93338
93345
  spaceAfter?: number;
93339
93346
  /**
93340
- * Gets or sets the spacing, in points, before the paragraph.
93347
+ * Specifies the spacing, in points, before the paragraph.
93341
93348
  *
93342
93349
  * @remarks
93343
93350
  * [Api set: WordApi 1.1]
93344
93351
  */
93345
93352
  spaceBefore?: number;
93346
93353
  /**
93347
- * Gets or sets the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93354
+ * Specifies the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93348
93355
  *
93349
93356
  * @remarks
93350
93357
  * [Api set: WordApi 1.1]
93351
93358
  */
93352
93359
  style?: string;
93353
93360
  /**
93354
- * Gets or sets the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93361
+ * Specifies the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93355
93362
  *
93356
93363
  * @remarks
93357
93364
  * [Api set: WordApi 1.3]
@@ -93414,14 +93421,14 @@ declare namespace Word {
93414
93421
  */
93415
93422
  isEmpty?: boolean;
93416
93423
  /**
93417
- * Gets or sets the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93424
+ * Specifies the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93418
93425
  *
93419
93426
  * @remarks
93420
93427
  * [Api set: WordApi 1.1]
93421
93428
  */
93422
93429
  style?: string;
93423
93430
  /**
93424
- * Gets or sets the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93431
+ * Specifies the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93425
93432
  *
93426
93433
  * @remarks
93427
93434
  * [Api set: WordApi 1.3]
@@ -93442,49 +93449,49 @@ declare namespace Word {
93442
93449
  /** An interface describing the data returned by calling `searchOptions.toJSON()`. */
93443
93450
  interface SearchOptionsData {
93444
93451
  /**
93445
- * Gets or sets a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
93452
+ * Specifies a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
93446
93453
  *
93447
93454
  * @remarks
93448
93455
  * [Api set: WordApi 1.1]
93449
93456
  */
93450
93457
  ignorePunct?: boolean;
93451
93458
  /**
93452
- * Gets or sets a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
93459
+ * Specifies a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
93453
93460
  *
93454
93461
  * @remarks
93455
93462
  * [Api set: WordApi 1.1]
93456
93463
  */
93457
93464
  ignoreSpace?: boolean;
93458
93465
  /**
93459
- * Gets or sets a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
93466
+ * Specifies a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
93460
93467
  *
93461
93468
  * @remarks
93462
93469
  * [Api set: WordApi 1.1]
93463
93470
  */
93464
93471
  matchCase?: boolean;
93465
93472
  /**
93466
- * Gets or sets a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
93473
+ * Specifies a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
93467
93474
  *
93468
93475
  * @remarks
93469
93476
  * [Api set: WordApi 1.1]
93470
93477
  */
93471
93478
  matchPrefix?: boolean;
93472
93479
  /**
93473
- * Gets or sets a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
93480
+ * Specifies a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
93474
93481
  *
93475
93482
  * @remarks
93476
93483
  * [Api set: WordApi 1.1]
93477
93484
  */
93478
93485
  matchSuffix?: boolean;
93479
93486
  /**
93480
- * Gets or sets a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
93487
+ * Specifies a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
93481
93488
  *
93482
93489
  * @remarks
93483
93490
  * [Api set: WordApi 1.1]
93484
93491
  */
93485
93492
  matchWholeWord?: boolean;
93486
93493
  /**
93487
- * Gets or sets a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
93494
+ * Specifies a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
93488
93495
  *
93489
93496
  * @remarks
93490
93497
  * [Api set: WordApi 1.1]
@@ -93515,7 +93522,7 @@ declare namespace Word {
93515
93522
  */
93516
93523
  key?: string;
93517
93524
  /**
93518
- * Gets or sets the value of the setting.
93525
+ * Specifies the value of the setting.
93519
93526
  *
93520
93527
  * @remarks
93521
93528
  * [Api set: WordApi 1.4]
@@ -93557,21 +93564,21 @@ declare namespace Word {
93557
93564
  */
93558
93565
  tables?: Word.Interfaces.TableData[];
93559
93566
  /**
93560
- * Gets or sets the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
93567
+ * Specifies the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
93561
93568
  *
93562
93569
  * @remarks
93563
93570
  * [Api set: WordApi 1.3]
93564
93571
  */
93565
93572
  alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
93566
93573
  /**
93567
- * Gets and sets the number of header rows.
93574
+ * Specifies the number of header rows.
93568
93575
  *
93569
93576
  * @remarks
93570
93577
  * [Api set: WordApi 1.3]
93571
93578
  */
93572
93579
  headerRowCount?: number;
93573
93580
  /**
93574
- * Gets and sets the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
93581
+ * Specifies the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
93575
93582
  *
93576
93583
  * @remarks
93577
93584
  * [Api set: WordApi 1.3]
@@ -93599,77 +93606,77 @@ declare namespace Word {
93599
93606
  */
93600
93607
  rowCount?: number;
93601
93608
  /**
93602
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
93609
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
93603
93610
  *
93604
93611
  * @remarks
93605
93612
  * [Api set: WordApi 1.3]
93606
93613
  */
93607
93614
  shadingColor?: string;
93608
93615
  /**
93609
- * Gets or sets the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93616
+ * Specifies the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93610
93617
  *
93611
93618
  * @remarks
93612
93619
  * [Api set: WordApi 1.3]
93613
93620
  */
93614
93621
  style?: string;
93615
93622
  /**
93616
- * Gets and sets whether the table has banded columns.
93623
+ * Specifies whether the table has banded columns.
93617
93624
  *
93618
93625
  * @remarks
93619
93626
  * [Api set: WordApi 1.3]
93620
93627
  */
93621
93628
  styleBandedColumns?: boolean;
93622
93629
  /**
93623
- * Gets and sets whether the table has banded rows.
93630
+ * Specifies whether the table has banded rows.
93624
93631
  *
93625
93632
  * @remarks
93626
93633
  * [Api set: WordApi 1.3]
93627
93634
  */
93628
93635
  styleBandedRows?: boolean;
93629
93636
  /**
93630
- * Gets or sets the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93637
+ * Specifies the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93631
93638
  *
93632
93639
  * @remarks
93633
93640
  * [Api set: WordApi 1.3]
93634
93641
  */
93635
93642
  styleBuiltIn?: Word.Style | "Other" | "Normal" | "Heading1" | "Heading2" | "Heading3" | "Heading4" | "Heading5" | "Heading6" | "Heading7" | "Heading8" | "Heading9" | "Toc1" | "Toc2" | "Toc3" | "Toc4" | "Toc5" | "Toc6" | "Toc7" | "Toc8" | "Toc9" | "FootnoteText" | "Header" | "Footer" | "Caption" | "FootnoteReference" | "EndnoteReference" | "EndnoteText" | "Title" | "Subtitle" | "Hyperlink" | "Strong" | "Emphasis" | "NoSpacing" | "ListParagraph" | "Quote" | "IntenseQuote" | "SubtleEmphasis" | "IntenseEmphasis" | "SubtleReference" | "IntenseReference" | "BookTitle" | "Bibliography" | "TocHeading" | "TableGrid" | "PlainTable1" | "PlainTable2" | "PlainTable3" | "PlainTable4" | "PlainTable5" | "TableGridLight" | "GridTable1Light" | "GridTable1Light_Accent1" | "GridTable1Light_Accent2" | "GridTable1Light_Accent3" | "GridTable1Light_Accent4" | "GridTable1Light_Accent5" | "GridTable1Light_Accent6" | "GridTable2" | "GridTable2_Accent1" | "GridTable2_Accent2" | "GridTable2_Accent3" | "GridTable2_Accent4" | "GridTable2_Accent5" | "GridTable2_Accent6" | "GridTable3" | "GridTable3_Accent1" | "GridTable3_Accent2" | "GridTable3_Accent3" | "GridTable3_Accent4" | "GridTable3_Accent5" | "GridTable3_Accent6" | "GridTable4" | "GridTable4_Accent1" | "GridTable4_Accent2" | "GridTable4_Accent3" | "GridTable4_Accent4" | "GridTable4_Accent5" | "GridTable4_Accent6" | "GridTable5Dark" | "GridTable5Dark_Accent1" | "GridTable5Dark_Accent2" | "GridTable5Dark_Accent3" | "GridTable5Dark_Accent4" | "GridTable5Dark_Accent5" | "GridTable5Dark_Accent6" | "GridTable6Colorful" | "GridTable6Colorful_Accent1" | "GridTable6Colorful_Accent2" | "GridTable6Colorful_Accent3" | "GridTable6Colorful_Accent4" | "GridTable6Colorful_Accent5" | "GridTable6Colorful_Accent6" | "GridTable7Colorful" | "GridTable7Colorful_Accent1" | "GridTable7Colorful_Accent2" | "GridTable7Colorful_Accent3" | "GridTable7Colorful_Accent4" | "GridTable7Colorful_Accent5" | "GridTable7Colorful_Accent6" | "ListTable1Light" | "ListTable1Light_Accent1" | "ListTable1Light_Accent2" | "ListTable1Light_Accent3" | "ListTable1Light_Accent4" | "ListTable1Light_Accent5" | "ListTable1Light_Accent6" | "ListTable2" | "ListTable2_Accent1" | "ListTable2_Accent2" | "ListTable2_Accent3" | "ListTable2_Accent4" | "ListTable2_Accent5" | "ListTable2_Accent6" | "ListTable3" | "ListTable3_Accent1" | "ListTable3_Accent2" | "ListTable3_Accent3" | "ListTable3_Accent4" | "ListTable3_Accent5" | "ListTable3_Accent6" | "ListTable4" | "ListTable4_Accent1" | "ListTable4_Accent2" | "ListTable4_Accent3" | "ListTable4_Accent4" | "ListTable4_Accent5" | "ListTable4_Accent6" | "ListTable5Dark" | "ListTable5Dark_Accent1" | "ListTable5Dark_Accent2" | "ListTable5Dark_Accent3" | "ListTable5Dark_Accent4" | "ListTable5Dark_Accent5" | "ListTable5Dark_Accent6" | "ListTable6Colorful" | "ListTable6Colorful_Accent1" | "ListTable6Colorful_Accent2" | "ListTable6Colorful_Accent3" | "ListTable6Colorful_Accent4" | "ListTable6Colorful_Accent5" | "ListTable6Colorful_Accent6" | "ListTable7Colorful" | "ListTable7Colorful_Accent1" | "ListTable7Colorful_Accent2" | "ListTable7Colorful_Accent3" | "ListTable7Colorful_Accent4" | "ListTable7Colorful_Accent5" | "ListTable7Colorful_Accent6";
93636
93643
  /**
93637
- * Gets and sets whether the table has a first column with a special style.
93644
+ * Specifies whether the table has a first column with a special style.
93638
93645
  *
93639
93646
  * @remarks
93640
93647
  * [Api set: WordApi 1.3]
93641
93648
  */
93642
93649
  styleFirstColumn?: boolean;
93643
93650
  /**
93644
- * Gets and sets whether the table has a last column with a special style.
93651
+ * Specifies whether the table has a last column with a special style.
93645
93652
  *
93646
93653
  * @remarks
93647
93654
  * [Api set: WordApi 1.3]
93648
93655
  */
93649
93656
  styleLastColumn?: boolean;
93650
93657
  /**
93651
- * Gets and sets whether the table has a total (last) row with a special style.
93658
+ * Specifies whether the table has a total (last) row with a special style.
93652
93659
  *
93653
93660
  * @remarks
93654
93661
  * [Api set: WordApi 1.3]
93655
93662
  */
93656
93663
  styleTotalRow?: boolean;
93657
93664
  /**
93658
- * Gets and sets the text values in the table, as a 2D Javascript array.
93665
+ * Specifies the text values in the table, as a 2D JavaScript array.
93659
93666
  *
93660
93667
  * @remarks
93661
93668
  * [Api set: WordApi 1.3]
93662
93669
  */
93663
93670
  values?: string[][];
93664
93671
  /**
93665
- * Gets and sets the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
93672
+ * Specifies the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
93666
93673
  *
93667
93674
  * @remarks
93668
93675
  * [Api set: WordApi 1.3]
93669
93676
  */
93670
93677
  verticalAlignment?: Word.VerticalAlignment | "Mixed" | "Top" | "Center" | "Bottom";
93671
93678
  /**
93672
- * Gets and sets the width of the table in points.
93679
+ * Specifies the width of the table in points.
93673
93680
  *
93674
93681
  * @remarks
93675
93682
  * [Api set: WordApi 1.3]
@@ -93711,7 +93718,7 @@ declare namespace Word {
93711
93718
  */
93712
93719
  cellCount?: number;
93713
93720
  /**
93714
- * Gets and sets the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
93721
+ * Specifies the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
93715
93722
  *
93716
93723
  * @remarks
93717
93724
  * [Api set: WordApi 1.3]
@@ -93725,7 +93732,7 @@ declare namespace Word {
93725
93732
  */
93726
93733
  isHeader?: boolean;
93727
93734
  /**
93728
- * Gets and sets the preferred height of the row in points.
93735
+ * Specifies the preferred height of the row in points.
93729
93736
  *
93730
93737
  * @remarks
93731
93738
  * [Api set: WordApi 1.3]
@@ -93739,21 +93746,21 @@ declare namespace Word {
93739
93746
  */
93740
93747
  rowIndex?: number;
93741
93748
  /**
93742
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
93749
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
93743
93750
  *
93744
93751
  * @remarks
93745
93752
  * [Api set: WordApi 1.3]
93746
93753
  */
93747
93754
  shadingColor?: string;
93748
93755
  /**
93749
- * Gets and sets the text values in the row, as a 2D Javascript array.
93756
+ * Specifies the text values in the row, as a 2D JavaScript array.
93750
93757
  *
93751
93758
  * @remarks
93752
93759
  * [Api set: WordApi 1.3]
93753
93760
  */
93754
93761
  values?: string[][];
93755
93762
  /**
93756
- * Gets and sets the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
93763
+ * Specifies the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
93757
93764
  *
93758
93765
  * @remarks
93759
93766
  * [Api set: WordApi 1.3]
@@ -93781,14 +93788,14 @@ declare namespace Word {
93781
93788
  */
93782
93789
  cellIndex?: number;
93783
93790
  /**
93784
- * Gets and sets the width of the cell's column in points. This is applicable to uniform tables.
93791
+ * Specifies the width of the cell's column in points. This is applicable to uniform tables.
93785
93792
  *
93786
93793
  * @remarks
93787
93794
  * [Api set: WordApi 1.3]
93788
93795
  */
93789
93796
  columnWidth?: number;
93790
93797
  /**
93791
- * Gets and sets the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
93798
+ * Specifies the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
93792
93799
  *
93793
93800
  * @remarks
93794
93801
  * [Api set: WordApi 1.3]
@@ -93802,21 +93809,21 @@ declare namespace Word {
93802
93809
  */
93803
93810
  rowIndex?: number;
93804
93811
  /**
93805
- * Gets or sets the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
93812
+ * Specifies the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
93806
93813
  *
93807
93814
  * @remarks
93808
93815
  * [Api set: WordApi 1.3]
93809
93816
  */
93810
93817
  shadingColor?: string;
93811
93818
  /**
93812
- * Gets and sets the text of the cell.
93819
+ * Specifies the text of the cell.
93813
93820
  *
93814
93821
  * @remarks
93815
93822
  * [Api set: WordApi 1.3]
93816
93823
  */
93817
93824
  value?: string;
93818
93825
  /**
93819
- * Gets and sets the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
93826
+ * Specifies the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
93820
93827
  *
93821
93828
  * @remarks
93822
93829
  * [Api set: WordApi 1.3]
@@ -93837,21 +93844,21 @@ declare namespace Word {
93837
93844
  /** An interface describing the data returned by calling `tableBorder.toJSON()`. */
93838
93845
  interface TableBorderData {
93839
93846
  /**
93840
- * Gets or sets the table border color.
93847
+ * Specifies the table border color.
93841
93848
  *
93842
93849
  * @remarks
93843
93850
  * [Api set: WordApi 1.3]
93844
93851
  */
93845
93852
  color?: string;
93846
93853
  /**
93847
- * Gets or sets the type of the table border.
93854
+ * Specifies the type of the table border.
93848
93855
  *
93849
93856
  * @remarks
93850
93857
  * [Api set: WordApi 1.3]
93851
93858
  */
93852
93859
  type?: Word.BorderType | "Mixed" | "None" | "Single" | "Double" | "Dotted" | "Dashed" | "DotDashed" | "Dot2Dashed" | "Triple" | "ThinThickSmall" | "ThickThinSmall" | "ThinThickThinSmall" | "ThinThickMed" | "ThickThinMed" | "ThinThickThinMed" | "ThinThickLarge" | "ThickThinLarge" | "ThinThickThinLarge" | "Wave" | "DoubleWave" | "DashedSmall" | "DashDotStroked" | "ThreeDEmboss" | "ThreeDEngrave";
93853
93860
  /**
93854
- * Gets or sets the width, in points, of the table border. Not applicable to table border types that have fixed widths.
93861
+ * Specifies the width, in points, of the table border. Not applicable to table border types that have fixed widths.
93855
93862
  *
93856
93863
  * @remarks
93857
93864
  * [Api set: WordApi 1.3]
@@ -93919,14 +93926,14 @@ declare namespace Word {
93919
93926
  */
93920
93927
  parentSectionOrNullObject?: Word.Interfaces.SectionLoadOptions;
93921
93928
  /**
93922
- * Gets or sets the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93929
+ * Specifies the style name for the body. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
93923
93930
  *
93924
93931
  * @remarks
93925
93932
  * [Api set: WordApi 1.1]
93926
93933
  */
93927
93934
  style?: boolean;
93928
93935
  /**
93929
- * Gets or sets the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93936
+ * Specifies the built-in style name for the body. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
93930
93937
  *
93931
93938
  * @remarks
93932
93939
  * [Api set: WordApi 1.3]
@@ -93959,7 +93966,7 @@ declare namespace Word {
93959
93966
  */
93960
93967
  $all?: boolean;
93961
93968
  /**
93962
- * Gets or sets the comment's content range.
93969
+ * Specifies the comment's content range.
93963
93970
  *
93964
93971
  * @remarks
93965
93972
  * [Api set: WordApi 1.4]
@@ -93980,7 +93987,7 @@ declare namespace Word {
93980
93987
  */
93981
93988
  authorName?: boolean;
93982
93989
  /**
93983
- * Gets or sets the comment's content as plain text.
93990
+ * Specifies the comment's content as plain text.
93984
93991
  *
93985
93992
  * @remarks
93986
93993
  * [Api set: WordApi 1.4]
@@ -94001,7 +94008,7 @@ declare namespace Word {
94001
94008
  */
94002
94009
  id?: boolean;
94003
94010
  /**
94004
- * 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.
94011
+ * Specifies the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
94005
94012
  *
94006
94013
  * @remarks
94007
94014
  * [Api set: WordApi 1.4]
@@ -94020,7 +94027,7 @@ declare namespace Word {
94020
94027
  */
94021
94028
  $all?: boolean;
94022
94029
  /**
94023
- * For EACH ITEM in the collection: Gets or sets the comment's content range.
94030
+ * For EACH ITEM in the collection: Specifies the comment's content range.
94024
94031
  *
94025
94032
  * @remarks
94026
94033
  * [Api set: WordApi 1.4]
@@ -94041,7 +94048,7 @@ declare namespace Word {
94041
94048
  */
94042
94049
  authorName?: boolean;
94043
94050
  /**
94044
- * For EACH ITEM in the collection: Gets or sets the comment's content as plain text.
94051
+ * For EACH ITEM in the collection: Specifies the comment's content as plain text.
94045
94052
  *
94046
94053
  * @remarks
94047
94054
  * [Api set: WordApi 1.4]
@@ -94062,7 +94069,7 @@ declare namespace Word {
94062
94069
  */
94063
94070
  id?: boolean;
94064
94071
  /**
94065
- * 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.
94072
+ * For EACH ITEM in the collection: Specifies the comment thread's status. Setting to true resolves the comment thread. Getting a value of true means that the comment thread is resolved.
94066
94073
  *
94067
94074
  * @remarks
94068
94075
  * [Api set: WordApi 1.4]
@@ -94079,7 +94086,7 @@ declare namespace Word {
94079
94086
  */
94080
94087
  $all?: boolean;
94081
94088
  /**
94082
- * Gets or sets a value that indicates whether the comment text is bold.
94089
+ * Specifies a value that indicates whether the comment text is bold.
94083
94090
  *
94084
94091
  * @remarks
94085
94092
  * [Api set: WordApi 1.4]
@@ -94100,14 +94107,14 @@ declare namespace Word {
94100
94107
  */
94101
94108
  isEmpty?: boolean;
94102
94109
  /**
94103
- * Gets or sets a value that indicates whether the comment text is italicized.
94110
+ * Specifies a value that indicates whether the comment text is italicized.
94104
94111
  *
94105
94112
  * @remarks
94106
94113
  * [Api set: WordApi 1.4]
94107
94114
  */
94108
94115
  italic?: boolean;
94109
94116
  /**
94110
- * Gets or sets a value that indicates whether the comment text has a strikethrough.
94117
+ * Specifies a value that indicates whether the comment text has a strikethrough.
94111
94118
  *
94112
94119
  * @remarks
94113
94120
  * [Api set: WordApi 1.4]
@@ -94121,7 +94128,7 @@ declare namespace Word {
94121
94128
  */
94122
94129
  text?: boolean;
94123
94130
  /**
94124
- * Gets or sets a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
94131
+ * Specifies a value that indicates the comment text's underline type. 'None' if the comment text is not underlined.
94125
94132
  *
94126
94133
  * @remarks
94127
94134
  * [Api set: WordApi 1.4]
@@ -94140,7 +94147,7 @@ declare namespace Word {
94140
94147
  */
94141
94148
  $all?: boolean;
94142
94149
  /**
94143
- * Gets or sets the commentReply's content range.
94150
+ * Specifies the commentReply's content range.
94144
94151
  *
94145
94152
  * @remarks
94146
94153
  * [Api set: WordApi 1.4]
@@ -94168,7 +94175,7 @@ declare namespace Word {
94168
94175
  */
94169
94176
  authorName?: boolean;
94170
94177
  /**
94171
- * Gets or sets the comment reply's content. The string is plain text.
94178
+ * Specifies the comment reply's content. The string is plain text.
94172
94179
  *
94173
94180
  * @remarks
94174
94181
  * [Api set: WordApi 1.4]
@@ -94201,7 +94208,7 @@ declare namespace Word {
94201
94208
  */
94202
94209
  $all?: boolean;
94203
94210
  /**
94204
- * For EACH ITEM in the collection: Gets or sets the commentReply's content range.
94211
+ * For EACH ITEM in the collection: Specifies the commentReply's content range.
94205
94212
  *
94206
94213
  * @remarks
94207
94214
  * [Api set: WordApi 1.4]
@@ -94229,7 +94236,7 @@ declare namespace Word {
94229
94236
  */
94230
94237
  authorName?: boolean;
94231
94238
  /**
94232
- * For EACH ITEM in the collection: Gets or sets the comment reply's content. The string is plain text.
94239
+ * For EACH ITEM in the collection: Specifies the comment reply's content. The string is plain text.
94233
94240
  *
94234
94241
  * @remarks
94235
94242
  * [Api set: WordApi 1.4]
@@ -94318,28 +94325,28 @@ declare namespace Word {
94318
94325
  */
94319
94326
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
94320
94327
  /**
94321
- * Gets or sets the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
94328
+ * Specifies the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
94322
94329
  *
94323
94330
  * @remarks
94324
94331
  * [Api set: WordApi 1.1]
94325
94332
  */
94326
94333
  appearance?: boolean;
94327
94334
  /**
94328
- * Gets or sets a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
94335
+ * Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
94329
94336
  *
94330
94337
  * @remarks
94331
94338
  * [Api set: WordApi 1.1]
94332
94339
  */
94333
94340
  cannotDelete?: boolean;
94334
94341
  /**
94335
- * Gets or sets a value that indicates whether the user can edit the contents of the content control.
94342
+ * Specifies a value that indicates whether the user can edit the contents of the content control.
94336
94343
  *
94337
94344
  * @remarks
94338
94345
  * [Api set: WordApi 1.1]
94339
94346
  */
94340
94347
  cannotEdit?: boolean;
94341
94348
  /**
94342
- * Gets or sets the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
94349
+ * Specifies the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
94343
94350
  *
94344
94351
  * @remarks
94345
94352
  * [Api set: WordApi 1.1]
@@ -94353,28 +94360,28 @@ declare namespace Word {
94353
94360
  */
94354
94361
  id?: boolean;
94355
94362
  /**
94356
- * Gets or sets the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
94363
+ * Specifies the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
94357
94364
  *
94358
94365
  * @remarks
94359
94366
  * [Api set: WordApi 1.1]
94360
94367
  */
94361
94368
  placeholderText?: boolean;
94362
94369
  /**
94363
- * Gets or sets a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
94370
+ * Specifies a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
94364
94371
  *
94365
94372
  * @remarks
94366
94373
  * [Api set: WordApi 1.1]
94367
94374
  */
94368
94375
  removeWhenEdited?: boolean;
94369
94376
  /**
94370
- * Gets or sets the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
94377
+ * Specifies the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
94371
94378
  *
94372
94379
  * @remarks
94373
94380
  * [Api set: WordApi 1.1]
94374
94381
  */
94375
94382
  style?: boolean;
94376
94383
  /**
94377
- * Gets or sets the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
94384
+ * Specifies the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
94378
94385
  *
94379
94386
  * @remarks
94380
94387
  * [Api set: WordApi 1.3]
@@ -94388,7 +94395,7 @@ declare namespace Word {
94388
94395
  */
94389
94396
  subtype?: boolean;
94390
94397
  /**
94391
- * Gets or sets a tag to identify a content control.
94398
+ * Specifies a tag to identify a content control.
94392
94399
  *
94393
94400
  * @remarks
94394
94401
  * [Api set: WordApi 1.1]
@@ -94402,7 +94409,7 @@ declare namespace Word {
94402
94409
  */
94403
94410
  text?: boolean;
94404
94411
  /**
94405
- * Gets or sets the title for a content control.
94412
+ * Specifies the title for a content control.
94406
94413
  *
94407
94414
  * @remarks
94408
94415
  * [Api set: WordApi 1.1]
@@ -94484,28 +94491,28 @@ declare namespace Word {
94484
94491
  */
94485
94492
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
94486
94493
  /**
94487
- * For EACH ITEM in the collection: Gets or sets the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
94494
+ * For EACH ITEM in the collection: Specifies the appearance of the content control. The value can be 'BoundingBox', 'Tags', or 'Hidden'.
94488
94495
  *
94489
94496
  * @remarks
94490
94497
  * [Api set: WordApi 1.1]
94491
94498
  */
94492
94499
  appearance?: boolean;
94493
94500
  /**
94494
- * For EACH ITEM in the collection: Gets or sets a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
94501
+ * For EACH ITEM in the collection: Specifies a value that indicates whether the user can delete the content control. Mutually exclusive with removeWhenEdited.
94495
94502
  *
94496
94503
  * @remarks
94497
94504
  * [Api set: WordApi 1.1]
94498
94505
  */
94499
94506
  cannotDelete?: boolean;
94500
94507
  /**
94501
- * For EACH ITEM in the collection: Gets or sets a value that indicates whether the user can edit the contents of the content control.
94508
+ * For EACH ITEM in the collection: Specifies a value that indicates whether the user can edit the contents of the content control.
94502
94509
  *
94503
94510
  * @remarks
94504
94511
  * [Api set: WordApi 1.1]
94505
94512
  */
94506
94513
  cannotEdit?: boolean;
94507
94514
  /**
94508
- * For EACH ITEM in the collection: Gets or sets the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
94515
+ * For EACH ITEM in the collection: Specifies the color of the content control. Color is specified in '#RRGGBB' format or by using the color name.
94509
94516
  *
94510
94517
  * @remarks
94511
94518
  * [Api set: WordApi 1.1]
@@ -94519,28 +94526,28 @@ declare namespace Word {
94519
94526
  */
94520
94527
  id?: boolean;
94521
94528
  /**
94522
- * For EACH ITEM in the collection: Gets or sets the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
94529
+ * For EACH ITEM in the collection: Specifies the placeholder text of the content control. Dimmed text will be displayed when the content control is empty. **Note**: The set operation for this property is not supported in Word on the web.
94523
94530
  *
94524
94531
  * @remarks
94525
94532
  * [Api set: WordApi 1.1]
94526
94533
  */
94527
94534
  placeholderText?: boolean;
94528
94535
  /**
94529
- * For EACH ITEM in the collection: Gets or sets a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
94536
+ * For EACH ITEM in the collection: Specifies a value that indicates whether the content control is removed after it is edited. Mutually exclusive with cannotDelete.
94530
94537
  *
94531
94538
  * @remarks
94532
94539
  * [Api set: WordApi 1.1]
94533
94540
  */
94534
94541
  removeWhenEdited?: boolean;
94535
94542
  /**
94536
- * For EACH ITEM in the collection: Gets or sets the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
94543
+ * For EACH ITEM in the collection: Specifies the style name for the content control. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
94537
94544
  *
94538
94545
  * @remarks
94539
94546
  * [Api set: WordApi 1.1]
94540
94547
  */
94541
94548
  style?: boolean;
94542
94549
  /**
94543
- * For EACH ITEM in the collection: Gets or sets the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
94550
+ * For EACH ITEM in the collection: Specifies the built-in style name for the content control. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
94544
94551
  *
94545
94552
  * @remarks
94546
94553
  * [Api set: WordApi 1.3]
@@ -94554,7 +94561,7 @@ declare namespace Word {
94554
94561
  */
94555
94562
  subtype?: boolean;
94556
94563
  /**
94557
- * For EACH ITEM in the collection: Gets or sets a tag to identify a content control.
94564
+ * For EACH ITEM in the collection: Specifies a tag to identify a content control.
94558
94565
  *
94559
94566
  * @remarks
94560
94567
  * [Api set: WordApi 1.1]
@@ -94568,7 +94575,7 @@ declare namespace Word {
94568
94575
  */
94569
94576
  text?: boolean;
94570
94577
  /**
94571
- * For EACH ITEM in the collection: Gets or sets the title for a content control.
94578
+ * For EACH ITEM in the collection: Specifies the title for a content control.
94572
94579
  *
94573
94580
  * @remarks
94574
94581
  * [Api set: WordApi 1.1]
@@ -94608,7 +94615,7 @@ declare namespace Word {
94608
94615
  */
94609
94616
  type?: boolean;
94610
94617
  /**
94611
- * Gets or sets the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
94618
+ * Specifies the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
94612
94619
  *
94613
94620
  * @remarks
94614
94621
  * [Api set: WordApi 1.3]
@@ -94641,7 +94648,7 @@ declare namespace Word {
94641
94648
  */
94642
94649
  type?: boolean;
94643
94650
  /**
94644
- * For EACH ITEM in the collection: Gets or sets the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
94651
+ * For EACH ITEM in the collection: Specifies the value of the custom property. Note that even though Word on the web and the docx file format allow these properties to be arbitrarily long, the desktop version of Word will truncate string values to 255 16-bit chars (possibly creating invalid unicode by breaking up a surrogate pair).
94645
94652
  *
94646
94653
  * @remarks
94647
94654
  * [Api set: WordApi 1.3]
@@ -94752,7 +94759,7 @@ declare namespace Word {
94752
94759
  */
94753
94760
  properties?: Word.Interfaces.DocumentPropertiesLoadOptions;
94754
94761
  /**
94755
- * Gets or sets the ChangeTracking mode.
94762
+ * Specifies the ChangeTracking mode.
94756
94763
  *
94757
94764
  * @remarks
94758
94765
  * [Api set: WordApi 1.4]
@@ -94818,28 +94825,28 @@ declare namespace Word {
94818
94825
  */
94819
94826
  applicationName?: boolean;
94820
94827
  /**
94821
- * Gets or sets the author of the document.
94828
+ * Specifies the author of the document.
94822
94829
  *
94823
94830
  * @remarks
94824
94831
  * [Api set: WordApi 1.3]
94825
94832
  */
94826
94833
  author?: boolean;
94827
94834
  /**
94828
- * Gets or sets the category of the document.
94835
+ * Specifies the category of the document.
94829
94836
  *
94830
94837
  * @remarks
94831
94838
  * [Api set: WordApi 1.3]
94832
94839
  */
94833
94840
  category?: boolean;
94834
94841
  /**
94835
- * Gets or sets the comments of the document.
94842
+ * Specifies the comments of the document.
94836
94843
  *
94837
94844
  * @remarks
94838
94845
  * [Api set: WordApi 1.3]
94839
94846
  */
94840
94847
  comments?: boolean;
94841
94848
  /**
94842
- * Gets or sets the company of the document.
94849
+ * Specifies the company of the document.
94843
94850
  *
94844
94851
  * @remarks
94845
94852
  * [Api set: WordApi 1.3]
@@ -94853,14 +94860,14 @@ declare namespace Word {
94853
94860
  */
94854
94861
  creationDate?: boolean;
94855
94862
  /**
94856
- * Gets or sets the format of the document.
94863
+ * Specifies the format of the document.
94857
94864
  *
94858
94865
  * @remarks
94859
94866
  * [Api set: WordApi 1.3]
94860
94867
  */
94861
94868
  format?: boolean;
94862
94869
  /**
94863
- * Gets or sets the keywords of the document.
94870
+ * Specifies the keywords of the document.
94864
94871
  *
94865
94872
  * @remarks
94866
94873
  * [Api set: WordApi 1.3]
@@ -94888,7 +94895,7 @@ declare namespace Word {
94888
94895
  */
94889
94896
  lastSaveTime?: boolean;
94890
94897
  /**
94891
- * Gets or sets the manager of the document.
94898
+ * Specifies the manager of the document.
94892
94899
  *
94893
94900
  * @remarks
94894
94901
  * [Api set: WordApi 1.3]
@@ -94909,7 +94916,7 @@ declare namespace Word {
94909
94916
  */
94910
94917
  security?: boolean;
94911
94918
  /**
94912
- * Gets or sets the subject of the document.
94919
+ * Specifies the subject of the document.
94913
94920
  *
94914
94921
  * @remarks
94915
94922
  * [Api set: WordApi 1.3]
@@ -94923,7 +94930,7 @@ declare namespace Word {
94923
94930
  */
94924
94931
  template?: boolean;
94925
94932
  /**
94926
- * Gets or sets the title of the document.
94933
+ * Specifies the title of the document.
94927
94934
  *
94928
94935
  * @remarks
94929
94936
  * [Api set: WordApi 1.3]
@@ -95092,77 +95099,77 @@ declare namespace Word {
95092
95099
  */
95093
95100
  $all?: boolean;
95094
95101
  /**
95095
- * Gets or sets a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
95102
+ * Specifies a value that indicates whether the font is bold. True if the font is formatted as bold, otherwise, false.
95096
95103
  *
95097
95104
  * @remarks
95098
95105
  * [Api set: WordApi 1.1]
95099
95106
  */
95100
95107
  bold?: boolean;
95101
95108
  /**
95102
- * Gets or sets the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
95109
+ * Specifies the color for the specified font. You can provide the value in the '#RRGGBB' format or the color name.
95103
95110
  *
95104
95111
  * @remarks
95105
95112
  * [Api set: WordApi 1.1]
95106
95113
  */
95107
95114
  color?: boolean;
95108
95115
  /**
95109
- * Gets or sets a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
95116
+ * Specifies a value that indicates whether the font has a double strikethrough. True if the font is formatted as double strikethrough text, otherwise, false.
95110
95117
  *
95111
95118
  * @remarks
95112
95119
  * [Api set: WordApi 1.1]
95113
95120
  */
95114
95121
  doubleStrikeThrough?: boolean;
95115
95122
  /**
95116
- * Gets or sets the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
95123
+ * Specifies the highlight color. To set it, use a value either in the '#RRGGBB' format or the color name. To remove highlight color, set it to null. The returned highlight color can be in the '#RRGGBB' format, an empty string for mixed highlight colors, or null for no highlight color. Note: Only the default highlight colors are available in Office for Windows Desktop. These are "Yellow", "Lime", "Turquoise", "Pink", "Blue", "Red", "DarkBlue", "Teal", "Green", "Purple", "DarkRed", "Olive", "Gray", "LightGray", and "Black". When the add-in runs in Office for Windows Desktop, any other color is converted to the closest color when applied to the font.
95117
95124
  *
95118
95125
  * @remarks
95119
95126
  * [Api set: WordApi 1.1]
95120
95127
  */
95121
95128
  highlightColor?: boolean;
95122
95129
  /**
95123
- * Gets or sets a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
95130
+ * Specifies a value that indicates whether the font is italicized. True if the font is italicized, otherwise, false.
95124
95131
  *
95125
95132
  * @remarks
95126
95133
  * [Api set: WordApi 1.1]
95127
95134
  */
95128
95135
  italic?: boolean;
95129
95136
  /**
95130
- * Gets or sets a value that represents the name of the font.
95137
+ * Specifies a value that represents the name of the font.
95131
95138
  *
95132
95139
  * @remarks
95133
95140
  * [Api set: WordApi 1.1]
95134
95141
  */
95135
95142
  name?: boolean;
95136
95143
  /**
95137
- * Gets or sets a value that represents the font size in points.
95144
+ * Specifies a value that represents the font size in points.
95138
95145
  *
95139
95146
  * @remarks
95140
95147
  * [Api set: WordApi 1.1]
95141
95148
  */
95142
95149
  size?: boolean;
95143
95150
  /**
95144
- * Gets or sets a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
95151
+ * Specifies a value that indicates whether the font has a strikethrough. True if the font is formatted as strikethrough text, otherwise, false.
95145
95152
  *
95146
95153
  * @remarks
95147
95154
  * [Api set: WordApi 1.1]
95148
95155
  */
95149
95156
  strikeThrough?: boolean;
95150
95157
  /**
95151
- * Gets or sets a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
95158
+ * Specifies a value that indicates whether the font is a subscript. True if the font is formatted as subscript, otherwise, false.
95152
95159
  *
95153
95160
  * @remarks
95154
95161
  * [Api set: WordApi 1.1]
95155
95162
  */
95156
95163
  subscript?: boolean;
95157
95164
  /**
95158
- * Gets or sets a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
95165
+ * Specifies a value that indicates whether the font is a superscript. True if the font is formatted as superscript, otherwise, false.
95159
95166
  *
95160
95167
  * @remarks
95161
95168
  * [Api set: WordApi 1.1]
95162
95169
  */
95163
95170
  superscript?: boolean;
95164
95171
  /**
95165
- * Gets or sets a value that indicates the font's underline type. 'None' if the font is not underlined.
95172
+ * Specifies a value that indicates the font's underline type. 'None' if the font is not underlined.
95166
95173
  *
95167
95174
  * @remarks
95168
95175
  * [Api set: WordApi 1.1]
@@ -95230,42 +95237,42 @@ declare namespace Word {
95230
95237
  */
95231
95238
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
95232
95239
  /**
95233
- * Gets or sets a string that represents the alternative text associated with the inline image.
95240
+ * Specifies a string that represents the alternative text associated with the inline image.
95234
95241
  *
95235
95242
  * @remarks
95236
95243
  * [Api set: WordApi 1.1]
95237
95244
  */
95238
95245
  altTextDescription?: boolean;
95239
95246
  /**
95240
- * Gets or sets a string that contains the title for the inline image.
95247
+ * Specifies a string that contains the title for the inline image.
95241
95248
  *
95242
95249
  * @remarks
95243
95250
  * [Api set: WordApi 1.1]
95244
95251
  */
95245
95252
  altTextTitle?: boolean;
95246
95253
  /**
95247
- * Gets or sets a number that describes the height of the inline image.
95254
+ * Specifies a number that describes the height of the inline image.
95248
95255
  *
95249
95256
  * @remarks
95250
95257
  * [Api set: WordApi 1.1]
95251
95258
  */
95252
95259
  height?: boolean;
95253
95260
  /**
95254
- * Gets or sets a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
95261
+ * Specifies a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
95255
95262
  *
95256
95263
  * @remarks
95257
95264
  * [Api set: WordApi 1.1]
95258
95265
  */
95259
95266
  hyperlink?: boolean;
95260
95267
  /**
95261
- * Gets or sets a value that indicates whether the inline image retains its original proportions when you resize it.
95268
+ * Specifies a value that indicates whether the inline image retains its original proportions when you resize it.
95262
95269
  *
95263
95270
  * @remarks
95264
95271
  * [Api set: WordApi 1.1]
95265
95272
  */
95266
95273
  lockAspectRatio?: boolean;
95267
95274
  /**
95268
- * Gets or sets a number that describes the width of the inline image.
95275
+ * Specifies a number that describes the width of the inline image.
95269
95276
  *
95270
95277
  * @remarks
95271
95278
  * [Api set: WordApi 1.1]
@@ -95333,42 +95340,42 @@ declare namespace Word {
95333
95340
  */
95334
95341
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
95335
95342
  /**
95336
- * For EACH ITEM in the collection: Gets or sets a string that represents the alternative text associated with the inline image.
95343
+ * For EACH ITEM in the collection: Specifies a string that represents the alternative text associated with the inline image.
95337
95344
  *
95338
95345
  * @remarks
95339
95346
  * [Api set: WordApi 1.1]
95340
95347
  */
95341
95348
  altTextDescription?: boolean;
95342
95349
  /**
95343
- * For EACH ITEM in the collection: Gets or sets a string that contains the title for the inline image.
95350
+ * For EACH ITEM in the collection: Specifies a string that contains the title for the inline image.
95344
95351
  *
95345
95352
  * @remarks
95346
95353
  * [Api set: WordApi 1.1]
95347
95354
  */
95348
95355
  altTextTitle?: boolean;
95349
95356
  /**
95350
- * For EACH ITEM in the collection: Gets or sets a number that describes the height of the inline image.
95357
+ * For EACH ITEM in the collection: Specifies a number that describes the height of the inline image.
95351
95358
  *
95352
95359
  * @remarks
95353
95360
  * [Api set: WordApi 1.1]
95354
95361
  */
95355
95362
  height?: boolean;
95356
95363
  /**
95357
- * For EACH ITEM in the collection: Gets or sets a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
95364
+ * For EACH ITEM in the collection: Specifies a hyperlink on the image. Use a '#' to separate the address part from the optional location part.
95358
95365
  *
95359
95366
  * @remarks
95360
95367
  * [Api set: WordApi 1.1]
95361
95368
  */
95362
95369
  hyperlink?: boolean;
95363
95370
  /**
95364
- * For EACH ITEM in the collection: Gets or sets a value that indicates whether the inline image retains its original proportions when you resize it.
95371
+ * For EACH ITEM in the collection: Specifies a value that indicates whether the inline image retains its original proportions when you resize it.
95365
95372
  *
95366
95373
  * @remarks
95367
95374
  * [Api set: WordApi 1.1]
95368
95375
  */
95369
95376
  lockAspectRatio?: boolean;
95370
95377
  /**
95371
- * For EACH ITEM in the collection: Gets or sets a number that describes the width of the inline image.
95378
+ * For EACH ITEM in the collection: Specifies a number that describes the width of the inline image.
95372
95379
  *
95373
95380
  * @remarks
95374
95381
  * [Api set: WordApi 1.1]
@@ -95453,7 +95460,7 @@ declare namespace Word {
95453
95460
  */
95454
95461
  $all?: boolean;
95455
95462
  /**
95456
- * Gets or sets the level of the item in the list.
95463
+ * Specifies the level of the item in the list.
95457
95464
  *
95458
95465
  * @remarks
95459
95466
  * [Api set: WordApi 1.3]
@@ -95636,14 +95643,14 @@ declare namespace Word {
95636
95643
  */
95637
95644
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
95638
95645
  /**
95639
- * Gets or sets the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
95646
+ * Specifies the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
95640
95647
  *
95641
95648
  * @remarks
95642
95649
  * [Api set: WordApi 1.1]
95643
95650
  */
95644
95651
  alignment?: boolean;
95645
95652
  /**
95646
- * Gets or sets the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
95653
+ * Specifies the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
95647
95654
  *
95648
95655
  * @remarks
95649
95656
  * [Api set: WordApi 1.1]
@@ -95664,70 +95671,70 @@ declare namespace Word {
95664
95671
  */
95665
95672
  isListItem?: boolean;
95666
95673
  /**
95667
- * Gets or sets the left indent value, in points, for the paragraph.
95674
+ * Specifies the left indent value, in points, for the paragraph.
95668
95675
  *
95669
95676
  * @remarks
95670
95677
  * [Api set: WordApi 1.1]
95671
95678
  */
95672
95679
  leftIndent?: boolean;
95673
95680
  /**
95674
- * Gets or sets the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
95681
+ * Specifies the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
95675
95682
  *
95676
95683
  * @remarks
95677
95684
  * [Api set: WordApi 1.1]
95678
95685
  */
95679
95686
  lineSpacing?: boolean;
95680
95687
  /**
95681
- * Gets or sets the amount of spacing, in grid lines, after the paragraph.
95688
+ * Specifies the amount of spacing, in grid lines, after the paragraph.
95682
95689
  *
95683
95690
  * @remarks
95684
95691
  * [Api set: WordApi 1.1]
95685
95692
  */
95686
95693
  lineUnitAfter?: boolean;
95687
95694
  /**
95688
- * Gets or sets the amount of spacing, in grid lines, before the paragraph.
95695
+ * Specifies the amount of spacing, in grid lines, before the paragraph.
95689
95696
  *
95690
95697
  * @remarks
95691
95698
  * [Api set: WordApi 1.1]
95692
95699
  */
95693
95700
  lineUnitBefore?: boolean;
95694
95701
  /**
95695
- * Gets or sets the outline level for the paragraph.
95702
+ * Specifies the outline level for the paragraph.
95696
95703
  *
95697
95704
  * @remarks
95698
95705
  * [Api set: WordApi 1.1]
95699
95706
  */
95700
95707
  outlineLevel?: boolean;
95701
95708
  /**
95702
- * Gets or sets the right indent value, in points, for the paragraph.
95709
+ * Specifies the right indent value, in points, for the paragraph.
95703
95710
  *
95704
95711
  * @remarks
95705
95712
  * [Api set: WordApi 1.1]
95706
95713
  */
95707
95714
  rightIndent?: boolean;
95708
95715
  /**
95709
- * Gets or sets the spacing, in points, after the paragraph.
95716
+ * Specifies the spacing, in points, after the paragraph.
95710
95717
  *
95711
95718
  * @remarks
95712
95719
  * [Api set: WordApi 1.1]
95713
95720
  */
95714
95721
  spaceAfter?: boolean;
95715
95722
  /**
95716
- * Gets or sets the spacing, in points, before the paragraph.
95723
+ * Specifies the spacing, in points, before the paragraph.
95717
95724
  *
95718
95725
  * @remarks
95719
95726
  * [Api set: WordApi 1.1]
95720
95727
  */
95721
95728
  spaceBefore?: boolean;
95722
95729
  /**
95723
- * Gets or sets the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
95730
+ * Specifies the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
95724
95731
  *
95725
95732
  * @remarks
95726
95733
  * [Api set: WordApi 1.1]
95727
95734
  */
95728
95735
  style?: boolean;
95729
95736
  /**
95730
- * Gets or sets the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
95737
+ * Specifies the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
95731
95738
  *
95732
95739
  * @remarks
95733
95740
  * [Api set: WordApi 1.3]
@@ -95844,14 +95851,14 @@ declare namespace Word {
95844
95851
  */
95845
95852
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
95846
95853
  /**
95847
- * For EACH ITEM in the collection: Gets or sets the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
95854
+ * For EACH ITEM in the collection: Specifies the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
95848
95855
  *
95849
95856
  * @remarks
95850
95857
  * [Api set: WordApi 1.1]
95851
95858
  */
95852
95859
  alignment?: boolean;
95853
95860
  /**
95854
- * For EACH ITEM in the collection: Gets or sets the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
95861
+ * For EACH ITEM in the collection: Specifies the value, in points, for a first line or hanging indent. Use a positive value to set a first-line indent, and use a negative value to set a hanging indent.
95855
95862
  *
95856
95863
  * @remarks
95857
95864
  * [Api set: WordApi 1.1]
@@ -95872,70 +95879,70 @@ declare namespace Word {
95872
95879
  */
95873
95880
  isListItem?: boolean;
95874
95881
  /**
95875
- * For EACH ITEM in the collection: Gets or sets the left indent value, in points, for the paragraph.
95882
+ * For EACH ITEM in the collection: Specifies the left indent value, in points, for the paragraph.
95876
95883
  *
95877
95884
  * @remarks
95878
95885
  * [Api set: WordApi 1.1]
95879
95886
  */
95880
95887
  leftIndent?: boolean;
95881
95888
  /**
95882
- * For EACH ITEM in the collection: Gets or sets the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
95889
+ * For EACH ITEM in the collection: Specifies the line spacing, in points, for the specified paragraph. In the Word UI, this value is divided by 12.
95883
95890
  *
95884
95891
  * @remarks
95885
95892
  * [Api set: WordApi 1.1]
95886
95893
  */
95887
95894
  lineSpacing?: boolean;
95888
95895
  /**
95889
- * For EACH ITEM in the collection: Gets or sets the amount of spacing, in grid lines, after the paragraph.
95896
+ * For EACH ITEM in the collection: Specifies the amount of spacing, in grid lines, after the paragraph.
95890
95897
  *
95891
95898
  * @remarks
95892
95899
  * [Api set: WordApi 1.1]
95893
95900
  */
95894
95901
  lineUnitAfter?: boolean;
95895
95902
  /**
95896
- * For EACH ITEM in the collection: Gets or sets the amount of spacing, in grid lines, before the paragraph.
95903
+ * For EACH ITEM in the collection: Specifies the amount of spacing, in grid lines, before the paragraph.
95897
95904
  *
95898
95905
  * @remarks
95899
95906
  * [Api set: WordApi 1.1]
95900
95907
  */
95901
95908
  lineUnitBefore?: boolean;
95902
95909
  /**
95903
- * For EACH ITEM in the collection: Gets or sets the outline level for the paragraph.
95910
+ * For EACH ITEM in the collection: Specifies the outline level for the paragraph.
95904
95911
  *
95905
95912
  * @remarks
95906
95913
  * [Api set: WordApi 1.1]
95907
95914
  */
95908
95915
  outlineLevel?: boolean;
95909
95916
  /**
95910
- * For EACH ITEM in the collection: Gets or sets the right indent value, in points, for the paragraph.
95917
+ * For EACH ITEM in the collection: Specifies the right indent value, in points, for the paragraph.
95911
95918
  *
95912
95919
  * @remarks
95913
95920
  * [Api set: WordApi 1.1]
95914
95921
  */
95915
95922
  rightIndent?: boolean;
95916
95923
  /**
95917
- * For EACH ITEM in the collection: Gets or sets the spacing, in points, after the paragraph.
95924
+ * For EACH ITEM in the collection: Specifies the spacing, in points, after the paragraph.
95918
95925
  *
95919
95926
  * @remarks
95920
95927
  * [Api set: WordApi 1.1]
95921
95928
  */
95922
95929
  spaceAfter?: boolean;
95923
95930
  /**
95924
- * For EACH ITEM in the collection: Gets or sets the spacing, in points, before the paragraph.
95931
+ * For EACH ITEM in the collection: Specifies the spacing, in points, before the paragraph.
95925
95932
  *
95926
95933
  * @remarks
95927
95934
  * [Api set: WordApi 1.1]
95928
95935
  */
95929
95936
  spaceBefore?: boolean;
95930
95937
  /**
95931
- * For EACH ITEM in the collection: Gets or sets the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
95938
+ * For EACH ITEM in the collection: Specifies the style name for the paragraph. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
95932
95939
  *
95933
95940
  * @remarks
95934
95941
  * [Api set: WordApi 1.1]
95935
95942
  */
95936
95943
  style?: boolean;
95937
95944
  /**
95938
- * For EACH ITEM in the collection: Gets or sets the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
95945
+ * For EACH ITEM in the collection: Specifies the built-in style name for the paragraph. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
95939
95946
  *
95940
95947
  * @remarks
95941
95948
  * [Api set: WordApi 1.3]
@@ -96038,14 +96045,14 @@ declare namespace Word {
96038
96045
  */
96039
96046
  isEmpty?: boolean;
96040
96047
  /**
96041
- * Gets or sets the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96048
+ * Specifies the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96042
96049
  *
96043
96050
  * @remarks
96044
96051
  * [Api set: WordApi 1.1]
96045
96052
  */
96046
96053
  style?: boolean;
96047
96054
  /**
96048
- * Gets or sets the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96055
+ * Specifies the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96049
96056
  *
96050
96057
  * @remarks
96051
96058
  * [Api set: WordApi 1.3]
@@ -96141,14 +96148,14 @@ declare namespace Word {
96141
96148
  */
96142
96149
  isEmpty?: boolean;
96143
96150
  /**
96144
- * For EACH ITEM in the collection: Gets or sets the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96151
+ * For EACH ITEM in the collection: Specifies the style name for the range. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96145
96152
  *
96146
96153
  * @remarks
96147
96154
  * [Api set: WordApi 1.1]
96148
96155
  */
96149
96156
  style?: boolean;
96150
96157
  /**
96151
- * For EACH ITEM in the collection: Gets or sets the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96158
+ * For EACH ITEM in the collection: Specifies the built-in style name for the range. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96152
96159
  *
96153
96160
  * @remarks
96154
96161
  * [Api set: WordApi 1.3]
@@ -96175,49 +96182,49 @@ declare namespace Word {
96175
96182
  */
96176
96183
  $all?: boolean;
96177
96184
  /**
96178
- * Gets or sets a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
96185
+ * Specifies a value that indicates whether to ignore all punctuation characters between words. Corresponds to the Ignore punctuation check box in the Find and Replace dialog box.
96179
96186
  *
96180
96187
  * @remarks
96181
96188
  * [Api set: WordApi 1.1]
96182
96189
  */
96183
96190
  ignorePunct?: boolean;
96184
96191
  /**
96185
- * Gets or sets a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
96192
+ * Specifies a value that indicates whether to ignore all whitespace between words. Corresponds to the Ignore whitespace characters check box in the Find and Replace dialog box.
96186
96193
  *
96187
96194
  * @remarks
96188
96195
  * [Api set: WordApi 1.1]
96189
96196
  */
96190
96197
  ignoreSpace?: boolean;
96191
96198
  /**
96192
- * Gets or sets a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
96199
+ * Specifies a value that indicates whether to perform a case sensitive search. Corresponds to the Match case check box in the Find and Replace dialog box.
96193
96200
  *
96194
96201
  * @remarks
96195
96202
  * [Api set: WordApi 1.1]
96196
96203
  */
96197
96204
  matchCase?: boolean;
96198
96205
  /**
96199
- * Gets or sets a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
96206
+ * Specifies a value that indicates whether to match words that begin with the search string. Corresponds to the Match prefix check box in the Find and Replace dialog box.
96200
96207
  *
96201
96208
  * @remarks
96202
96209
  * [Api set: WordApi 1.1]
96203
96210
  */
96204
96211
  matchPrefix?: boolean;
96205
96212
  /**
96206
- * Gets or sets a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
96213
+ * Specifies a value that indicates whether to match words that end with the search string. Corresponds to the Match suffix check box in the Find and Replace dialog box.
96207
96214
  *
96208
96215
  * @remarks
96209
96216
  * [Api set: WordApi 1.1]
96210
96217
  */
96211
96218
  matchSuffix?: boolean;
96212
96219
  /**
96213
- * Gets or sets a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
96220
+ * Specifies a value that indicates whether to find operation only entire words, not text that is part of a larger word. Corresponds to the Find whole words only check box in the Find and Replace dialog box.
96214
96221
  *
96215
96222
  * @remarks
96216
96223
  * [Api set: WordApi 1.1]
96217
96224
  */
96218
96225
  matchWholeWord?: boolean;
96219
96226
  /**
96220
- * Gets or sets a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
96227
+ * Specifies a value that indicates whether the search will be performed using special search operators. Corresponds to the Use wildcards check box in the Find and Replace dialog box.
96221
96228
  *
96222
96229
  * @remarks
96223
96230
  * [Api set: WordApi 1.1]
@@ -96281,7 +96288,7 @@ declare namespace Word {
96281
96288
  */
96282
96289
  key?: boolean;
96283
96290
  /**
96284
- * Gets or sets the value of the setting.
96291
+ * Specifies the value of the setting.
96285
96292
  *
96286
96293
  * @remarks
96287
96294
  * [Api set: WordApi 1.4]
@@ -96307,7 +96314,7 @@ declare namespace Word {
96307
96314
  */
96308
96315
  key?: boolean;
96309
96316
  /**
96310
- * For EACH ITEM in the collection: Gets or sets the value of the setting.
96317
+ * For EACH ITEM in the collection: Specifies the value of the setting.
96311
96318
  *
96312
96319
  * @remarks
96313
96320
  * [Api set: WordApi 1.4]
@@ -96382,21 +96389,21 @@ declare namespace Word {
96382
96389
  */
96383
96390
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
96384
96391
  /**
96385
- * Gets or sets the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
96392
+ * Specifies the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
96386
96393
  *
96387
96394
  * @remarks
96388
96395
  * [Api set: WordApi 1.3]
96389
96396
  */
96390
96397
  alignment?: boolean;
96391
96398
  /**
96392
- * Gets and sets the number of header rows.
96399
+ * Specifies the number of header rows.
96393
96400
  *
96394
96401
  * @remarks
96395
96402
  * [Api set: WordApi 1.3]
96396
96403
  */
96397
96404
  headerRowCount?: boolean;
96398
96405
  /**
96399
- * Gets and sets the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96406
+ * Specifies the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96400
96407
  *
96401
96408
  * @remarks
96402
96409
  * [Api set: WordApi 1.3]
@@ -96424,77 +96431,77 @@ declare namespace Word {
96424
96431
  */
96425
96432
  rowCount?: boolean;
96426
96433
  /**
96427
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96434
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96428
96435
  *
96429
96436
  * @remarks
96430
96437
  * [Api set: WordApi 1.3]
96431
96438
  */
96432
96439
  shadingColor?: boolean;
96433
96440
  /**
96434
- * Gets or sets the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96441
+ * Specifies the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96435
96442
  *
96436
96443
  * @remarks
96437
96444
  * [Api set: WordApi 1.3]
96438
96445
  */
96439
96446
  style?: boolean;
96440
96447
  /**
96441
- * Gets and sets whether the table has banded columns.
96448
+ * Specifies whether the table has banded columns.
96442
96449
  *
96443
96450
  * @remarks
96444
96451
  * [Api set: WordApi 1.3]
96445
96452
  */
96446
96453
  styleBandedColumns?: boolean;
96447
96454
  /**
96448
- * Gets and sets whether the table has banded rows.
96455
+ * Specifies whether the table has banded rows.
96449
96456
  *
96450
96457
  * @remarks
96451
96458
  * [Api set: WordApi 1.3]
96452
96459
  */
96453
96460
  styleBandedRows?: boolean;
96454
96461
  /**
96455
- * Gets or sets the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96462
+ * Specifies the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96456
96463
  *
96457
96464
  * @remarks
96458
96465
  * [Api set: WordApi 1.3]
96459
96466
  */
96460
96467
  styleBuiltIn?: boolean;
96461
96468
  /**
96462
- * Gets and sets whether the table has a first column with a special style.
96469
+ * Specifies whether the table has a first column with a special style.
96463
96470
  *
96464
96471
  * @remarks
96465
96472
  * [Api set: WordApi 1.3]
96466
96473
  */
96467
96474
  styleFirstColumn?: boolean;
96468
96475
  /**
96469
- * Gets and sets whether the table has a last column with a special style.
96476
+ * Specifies whether the table has a last column with a special style.
96470
96477
  *
96471
96478
  * @remarks
96472
96479
  * [Api set: WordApi 1.3]
96473
96480
  */
96474
96481
  styleLastColumn?: boolean;
96475
96482
  /**
96476
- * Gets and sets whether the table has a total (last) row with a special style.
96483
+ * Specifies whether the table has a total (last) row with a special style.
96477
96484
  *
96478
96485
  * @remarks
96479
96486
  * [Api set: WordApi 1.3]
96480
96487
  */
96481
96488
  styleTotalRow?: boolean;
96482
96489
  /**
96483
- * Gets and sets the text values in the table, as a 2D Javascript array.
96490
+ * Specifies the text values in the table, as a 2D JavaScript array.
96484
96491
  *
96485
96492
  * @remarks
96486
96493
  * [Api set: WordApi 1.3]
96487
96494
  */
96488
96495
  values?: boolean;
96489
96496
  /**
96490
- * Gets and sets the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
96497
+ * Specifies the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
96491
96498
  *
96492
96499
  * @remarks
96493
96500
  * [Api set: WordApi 1.3]
96494
96501
  */
96495
96502
  verticalAlignment?: boolean;
96496
96503
  /**
96497
- * Gets and sets the width of the table in points.
96504
+ * Specifies the width of the table in points.
96498
96505
  *
96499
96506
  * @remarks
96500
96507
  * [Api set: WordApi 1.3]
@@ -96569,21 +96576,21 @@ declare namespace Word {
96569
96576
  */
96570
96577
  parentTableOrNullObject?: Word.Interfaces.TableLoadOptions;
96571
96578
  /**
96572
- * For EACH ITEM in the collection: Gets or sets the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
96579
+ * For EACH ITEM in the collection: Specifies the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
96573
96580
  *
96574
96581
  * @remarks
96575
96582
  * [Api set: WordApi 1.3]
96576
96583
  */
96577
96584
  alignment?: boolean;
96578
96585
  /**
96579
- * For EACH ITEM in the collection: Gets and sets the number of header rows.
96586
+ * For EACH ITEM in the collection: Specifies the number of header rows.
96580
96587
  *
96581
96588
  * @remarks
96582
96589
  * [Api set: WordApi 1.3]
96583
96590
  */
96584
96591
  headerRowCount?: boolean;
96585
96592
  /**
96586
- * For EACH ITEM in the collection: Gets and sets the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96593
+ * For EACH ITEM in the collection: Specifies the horizontal alignment of every cell in the table. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96587
96594
  *
96588
96595
  * @remarks
96589
96596
  * [Api set: WordApi 1.3]
@@ -96611,77 +96618,77 @@ declare namespace Word {
96611
96618
  */
96612
96619
  rowCount?: boolean;
96613
96620
  /**
96614
- * For EACH ITEM in the collection: Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96621
+ * For EACH ITEM in the collection: Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96615
96622
  *
96616
96623
  * @remarks
96617
96624
  * [Api set: WordApi 1.3]
96618
96625
  */
96619
96626
  shadingColor?: boolean;
96620
96627
  /**
96621
- * For EACH ITEM in the collection: Gets or sets the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96628
+ * For EACH ITEM in the collection: Specifies the style name for the table. Use this property for custom styles and localized style names. To use the built-in styles that are portable between locales, see the "styleBuiltIn" property.
96622
96629
  *
96623
96630
  * @remarks
96624
96631
  * [Api set: WordApi 1.3]
96625
96632
  */
96626
96633
  style?: boolean;
96627
96634
  /**
96628
- * For EACH ITEM in the collection: Gets and sets whether the table has banded columns.
96635
+ * For EACH ITEM in the collection: Specifies whether the table has banded columns.
96629
96636
  *
96630
96637
  * @remarks
96631
96638
  * [Api set: WordApi 1.3]
96632
96639
  */
96633
96640
  styleBandedColumns?: boolean;
96634
96641
  /**
96635
- * For EACH ITEM in the collection: Gets and sets whether the table has banded rows.
96642
+ * For EACH ITEM in the collection: Specifies whether the table has banded rows.
96636
96643
  *
96637
96644
  * @remarks
96638
96645
  * [Api set: WordApi 1.3]
96639
96646
  */
96640
96647
  styleBandedRows?: boolean;
96641
96648
  /**
96642
- * For EACH ITEM in the collection: Gets or sets the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96649
+ * For EACH ITEM in the collection: Specifies the built-in style name for the table. Use this property for built-in styles that are portable between locales. To use custom styles or localized style names, see the "style" property.
96643
96650
  *
96644
96651
  * @remarks
96645
96652
  * [Api set: WordApi 1.3]
96646
96653
  */
96647
96654
  styleBuiltIn?: boolean;
96648
96655
  /**
96649
- * For EACH ITEM in the collection: Gets and sets whether the table has a first column with a special style.
96656
+ * For EACH ITEM in the collection: Specifies whether the table has a first column with a special style.
96650
96657
  *
96651
96658
  * @remarks
96652
96659
  * [Api set: WordApi 1.3]
96653
96660
  */
96654
96661
  styleFirstColumn?: boolean;
96655
96662
  /**
96656
- * For EACH ITEM in the collection: Gets and sets whether the table has a last column with a special style.
96663
+ * For EACH ITEM in the collection: Specifies whether the table has a last column with a special style.
96657
96664
  *
96658
96665
  * @remarks
96659
96666
  * [Api set: WordApi 1.3]
96660
96667
  */
96661
96668
  styleLastColumn?: boolean;
96662
96669
  /**
96663
- * For EACH ITEM in the collection: Gets and sets whether the table has a total (last) row with a special style.
96670
+ * For EACH ITEM in the collection: Specifies whether the table has a total (last) row with a special style.
96664
96671
  *
96665
96672
  * @remarks
96666
96673
  * [Api set: WordApi 1.3]
96667
96674
  */
96668
96675
  styleTotalRow?: boolean;
96669
96676
  /**
96670
- * For EACH ITEM in the collection: Gets and sets the text values in the table, as a 2D Javascript array.
96677
+ * For EACH ITEM in the collection: Specifies the text values in the table, as a 2D JavaScript array.
96671
96678
  *
96672
96679
  * @remarks
96673
96680
  * [Api set: WordApi 1.3]
96674
96681
  */
96675
96682
  values?: boolean;
96676
96683
  /**
96677
- * For EACH ITEM in the collection: Gets and sets the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
96684
+ * For EACH ITEM in the collection: Specifies the vertical alignment of every cell in the table. The value can be 'Top', 'Center', or 'Bottom'.
96678
96685
  *
96679
96686
  * @remarks
96680
96687
  * [Api set: WordApi 1.3]
96681
96688
  */
96682
96689
  verticalAlignment?: boolean;
96683
96690
  /**
96684
- * For EACH ITEM in the collection: Gets and sets the width of the table in points.
96691
+ * For EACH ITEM in the collection: Specifies the width of the table in points.
96685
96692
  *
96686
96693
  * @remarks
96687
96694
  * [Api set: WordApi 1.3]
@@ -96721,7 +96728,7 @@ declare namespace Word {
96721
96728
  */
96722
96729
  cellCount?: boolean;
96723
96730
  /**
96724
- * Gets and sets the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96731
+ * Specifies the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96725
96732
  *
96726
96733
  * @remarks
96727
96734
  * [Api set: WordApi 1.3]
@@ -96735,7 +96742,7 @@ declare namespace Word {
96735
96742
  */
96736
96743
  isHeader?: boolean;
96737
96744
  /**
96738
- * Gets and sets the preferred height of the row in points.
96745
+ * Specifies the preferred height of the row in points.
96739
96746
  *
96740
96747
  * @remarks
96741
96748
  * [Api set: WordApi 1.3]
@@ -96749,21 +96756,21 @@ declare namespace Word {
96749
96756
  */
96750
96757
  rowIndex?: boolean;
96751
96758
  /**
96752
- * Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96759
+ * Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96753
96760
  *
96754
96761
  * @remarks
96755
96762
  * [Api set: WordApi 1.3]
96756
96763
  */
96757
96764
  shadingColor?: boolean;
96758
96765
  /**
96759
- * Gets and sets the text values in the row, as a 2D Javascript array.
96766
+ * Specifies the text values in the row, as a 2D JavaScript array.
96760
96767
  *
96761
96768
  * @remarks
96762
96769
  * [Api set: WordApi 1.3]
96763
96770
  */
96764
96771
  values?: boolean;
96765
96772
  /**
96766
- * Gets and sets the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
96773
+ * Specifies the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
96767
96774
  *
96768
96775
  * @remarks
96769
96776
  * [Api set: WordApi 1.3]
@@ -96803,7 +96810,7 @@ declare namespace Word {
96803
96810
  */
96804
96811
  cellCount?: boolean;
96805
96812
  /**
96806
- * For EACH ITEM in the collection: Gets and sets the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96813
+ * For EACH ITEM in the collection: Specifies the horizontal alignment of every cell in the row. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96807
96814
  *
96808
96815
  * @remarks
96809
96816
  * [Api set: WordApi 1.3]
@@ -96817,7 +96824,7 @@ declare namespace Word {
96817
96824
  */
96818
96825
  isHeader?: boolean;
96819
96826
  /**
96820
- * For EACH ITEM in the collection: Gets and sets the preferred height of the row in points.
96827
+ * For EACH ITEM in the collection: Specifies the preferred height of the row in points.
96821
96828
  *
96822
96829
  * @remarks
96823
96830
  * [Api set: WordApi 1.3]
@@ -96831,21 +96838,21 @@ declare namespace Word {
96831
96838
  */
96832
96839
  rowIndex?: boolean;
96833
96840
  /**
96834
- * For EACH ITEM in the collection: Gets and sets the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96841
+ * For EACH ITEM in the collection: Specifies the shading color. Color is specified in "#RRGGBB" format or by using the color name.
96835
96842
  *
96836
96843
  * @remarks
96837
96844
  * [Api set: WordApi 1.3]
96838
96845
  */
96839
96846
  shadingColor?: boolean;
96840
96847
  /**
96841
- * For EACH ITEM in the collection: Gets and sets the text values in the row, as a 2D Javascript array.
96848
+ * For EACH ITEM in the collection: Specifies the text values in the row, as a 2D JavaScript array.
96842
96849
  *
96843
96850
  * @remarks
96844
96851
  * [Api set: WordApi 1.3]
96845
96852
  */
96846
96853
  values?: boolean;
96847
96854
  /**
96848
- * For EACH ITEM in the collection: Gets and sets the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
96855
+ * For EACH ITEM in the collection: Specifies the vertical alignment of the cells in the row. The value can be 'Top', 'Center', or 'Bottom'.
96849
96856
  *
96850
96857
  * @remarks
96851
96858
  * [Api set: WordApi 1.3]
@@ -96892,14 +96899,14 @@ declare namespace Word {
96892
96899
  */
96893
96900
  cellIndex?: boolean;
96894
96901
  /**
96895
- * Gets and sets the width of the cell's column in points. This is applicable to uniform tables.
96902
+ * Specifies the width of the cell's column in points. This is applicable to uniform tables.
96896
96903
  *
96897
96904
  * @remarks
96898
96905
  * [Api set: WordApi 1.3]
96899
96906
  */
96900
96907
  columnWidth?: boolean;
96901
96908
  /**
96902
- * Gets and sets the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96909
+ * Specifies the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96903
96910
  *
96904
96911
  * @remarks
96905
96912
  * [Api set: WordApi 1.3]
@@ -96913,21 +96920,21 @@ declare namespace Word {
96913
96920
  */
96914
96921
  rowIndex?: boolean;
96915
96922
  /**
96916
- * Gets or sets the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
96923
+ * Specifies the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
96917
96924
  *
96918
96925
  * @remarks
96919
96926
  * [Api set: WordApi 1.3]
96920
96927
  */
96921
96928
  shadingColor?: boolean;
96922
96929
  /**
96923
- * Gets and sets the text of the cell.
96930
+ * Specifies the text of the cell.
96924
96931
  *
96925
96932
  * @remarks
96926
96933
  * [Api set: WordApi 1.3]
96927
96934
  */
96928
96935
  value?: boolean;
96929
96936
  /**
96930
- * Gets and sets the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
96937
+ * Specifies the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
96931
96938
  *
96932
96939
  * @remarks
96933
96940
  * [Api set: WordApi 1.3]
@@ -96981,14 +96988,14 @@ declare namespace Word {
96981
96988
  */
96982
96989
  cellIndex?: boolean;
96983
96990
  /**
96984
- * For EACH ITEM in the collection: Gets and sets the width of the cell's column in points. This is applicable to uniform tables.
96991
+ * For EACH ITEM in the collection: Specifies the width of the cell's column in points. This is applicable to uniform tables.
96985
96992
  *
96986
96993
  * @remarks
96987
96994
  * [Api set: WordApi 1.3]
96988
96995
  */
96989
96996
  columnWidth?: boolean;
96990
96997
  /**
96991
- * For EACH ITEM in the collection: Gets and sets the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96998
+ * For EACH ITEM in the collection: Specifies the horizontal alignment of the cell. The value can be 'Left', 'Centered', 'Right', or 'Justified'.
96992
96999
  *
96993
97000
  * @remarks
96994
97001
  * [Api set: WordApi 1.3]
@@ -97002,21 +97009,21 @@ declare namespace Word {
97002
97009
  */
97003
97010
  rowIndex?: boolean;
97004
97011
  /**
97005
- * For EACH ITEM in the collection: Gets or sets the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
97012
+ * For EACH ITEM in the collection: Specifies the shading color of the cell. Color is specified in "#RRGGBB" format or by using the color name.
97006
97013
  *
97007
97014
  * @remarks
97008
97015
  * [Api set: WordApi 1.3]
97009
97016
  */
97010
97017
  shadingColor?: boolean;
97011
97018
  /**
97012
- * For EACH ITEM in the collection: Gets and sets the text of the cell.
97019
+ * For EACH ITEM in the collection: Specifies the text of the cell.
97013
97020
  *
97014
97021
  * @remarks
97015
97022
  * [Api set: WordApi 1.3]
97016
97023
  */
97017
97024
  value?: boolean;
97018
97025
  /**
97019
- * For EACH ITEM in the collection: Gets and sets the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
97026
+ * For EACH ITEM in the collection: Specifies the vertical alignment of the cell. The value can be 'Top', 'Center', or 'Bottom'.
97020
97027
  *
97021
97028
  * @remarks
97022
97029
  * [Api set: WordApi 1.3]
@@ -97042,21 +97049,21 @@ declare namespace Word {
97042
97049
  */
97043
97050
  $all?: boolean;
97044
97051
  /**
97045
- * Gets or sets the table border color.
97052
+ * Specifies the table border color.
97046
97053
  *
97047
97054
  * @remarks
97048
97055
  * [Api set: WordApi 1.3]
97049
97056
  */
97050
97057
  color?: boolean;
97051
97058
  /**
97052
- * Gets or sets the type of the table border.
97059
+ * Specifies the type of the table border.
97053
97060
  *
97054
97061
  * @remarks
97055
97062
  * [Api set: WordApi 1.3]
97056
97063
  */
97057
97064
  type?: boolean;
97058
97065
  /**
97059
- * Gets or sets the width, in points, of the table border. Not applicable to table border types that have fixed widths.
97066
+ * Specifies the width, in points, of the table border. Not applicable to table border types that have fixed widths.
97060
97067
  *
97061
97068
  * @remarks
97062
97069
  * [Api set: WordApi 1.3]