@types/office-js-preview 1.0.500 → 1.0.501
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js-preview/README.md +1 -1
- office-js-preview/index.d.ts +432 -653
- office-js-preview/package.json +2 -2
office-js-preview/index.d.ts
CHANGED
|
@@ -290,15 +290,15 @@ declare namespace Office {
|
|
|
290
290
|
*/
|
|
291
291
|
function isSetSupported(name: string, minVersion?: string): boolean;
|
|
292
292
|
/**
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
293
|
+
* Ensures that the Office JavaScript APIs are ready to be called by the add-in. If the framework hasn't initialized yet, the callback or promise
|
|
294
|
+
* will wait until the Office application is ready to accept API calls. Note that though this API is intended to be used inside an Office add-in, it can
|
|
295
|
+
* also be used outside the add-in. In that case, once Office.js determines that it is running outside of an Office application, it will call
|
|
296
|
+
* the callback and resolve the promise with "null" for both the application and platform.
|
|
297
|
+
*
|
|
298
|
+
* @param callback - An optional callback function, that will receive the application and platform info.
|
|
299
|
+
* Alternatively, rather than use a callback, an add-in may simply wait for the Promise returned by the function to resolve.
|
|
300
|
+
* @returns A Promise that contains the application and platform info, once initialization is completed.
|
|
301
|
+
*/
|
|
302
302
|
function onReady(callback?: (info: { host: HostType, platform: PlatformType }) => any): Promise<{ host: HostType, platform: PlatformType }>;
|
|
303
303
|
/**
|
|
304
304
|
* Returns a promise of an object described in the expression. Callback is invoked only if the function fails.
|
|
@@ -91098,8 +91098,7 @@ declare namespace Word {
|
|
|
91098
91098
|
* Represents the Border object for text, a paragraph, or a table.
|
|
91099
91099
|
*
|
|
91100
91100
|
* @remarks
|
|
91101
|
-
* [Api set:
|
|
91102
|
-
* @beta
|
|
91101
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91103
91102
|
*/
|
|
91104
91103
|
class Border extends OfficeExtension.ClientObject {
|
|
91105
91104
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -91108,40 +91107,35 @@ declare namespace Word {
|
|
|
91108
91107
|
* Specifies the color for the border. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
91109
91108
|
*
|
|
91110
91109
|
* @remarks
|
|
91111
|
-
* [Api set:
|
|
91112
|
-
* @beta
|
|
91110
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91113
91111
|
*/
|
|
91114
91112
|
color: string;
|
|
91115
91113
|
/**
|
|
91116
91114
|
* Gets the location of the border.
|
|
91117
91115
|
*
|
|
91118
91116
|
* @remarks
|
|
91119
|
-
* [Api set:
|
|
91120
|
-
* @beta
|
|
91117
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91121
91118
|
*/
|
|
91122
91119
|
readonly location: Word.BorderLocation | "Top" | "Left" | "Bottom" | "Right" | "InsideHorizontal" | "InsideVertical" | "Inside" | "Outside" | "All";
|
|
91123
91120
|
/**
|
|
91124
91121
|
* Specifies the border type for the border.
|
|
91125
91122
|
*
|
|
91126
91123
|
* @remarks
|
|
91127
|
-
* [Api set:
|
|
91128
|
-
* @beta
|
|
91124
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91129
91125
|
*/
|
|
91130
91126
|
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";
|
|
91131
91127
|
/**
|
|
91132
91128
|
* Specifies whether the border is visible.
|
|
91133
91129
|
*
|
|
91134
91130
|
* @remarks
|
|
91135
|
-
* [Api set:
|
|
91136
|
-
* @beta
|
|
91131
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91137
91132
|
*/
|
|
91138
91133
|
visible: boolean;
|
|
91139
91134
|
/**
|
|
91140
91135
|
* Specifies the width for the border.
|
|
91141
91136
|
*
|
|
91142
91137
|
* @remarks
|
|
91143
|
-
* [Api set:
|
|
91144
|
-
* @beta
|
|
91138
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91145
91139
|
*/
|
|
91146
91140
|
width: Word.BorderWidth | "None" | "Pt025" | "Pt050" | "Pt075" | "Pt100" | "Pt150" | "Pt225" | "Pt300" | "Pt450" | "Pt600" | "Mixed";
|
|
91147
91141
|
/**
|
|
@@ -91191,8 +91185,7 @@ declare namespace Word {
|
|
|
91191
91185
|
* Represents the collection of border styles.
|
|
91192
91186
|
*
|
|
91193
91187
|
* @remarks
|
|
91194
|
-
* [Api set:
|
|
91195
|
-
* @beta
|
|
91188
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91196
91189
|
*/
|
|
91197
91190
|
class BorderCollection extends OfficeExtension.ClientObject {
|
|
91198
91191
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -91203,80 +91196,70 @@ declare namespace Word {
|
|
|
91203
91196
|
* Specifies the 24-bit color of the inside borders. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
91204
91197
|
*
|
|
91205
91198
|
* @remarks
|
|
91206
|
-
* [Api set:
|
|
91207
|
-
* @beta
|
|
91199
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91208
91200
|
*/
|
|
91209
91201
|
insideBorderColor: string;
|
|
91210
91202
|
/**
|
|
91211
91203
|
* Specifies the border type of the inside borders.
|
|
91212
91204
|
*
|
|
91213
91205
|
* @remarks
|
|
91214
|
-
* [Api set:
|
|
91215
|
-
* @beta
|
|
91206
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91216
91207
|
*/
|
|
91217
91208
|
insideBorderType: 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";
|
|
91218
91209
|
/**
|
|
91219
91210
|
* Specifies the width of the inside borders.
|
|
91220
91211
|
*
|
|
91221
91212
|
* @remarks
|
|
91222
|
-
* [Api set:
|
|
91223
|
-
* @beta
|
|
91213
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91224
91214
|
*/
|
|
91225
91215
|
insideBorderWidth: Word.BorderWidth | "None" | "Pt025" | "Pt050" | "Pt075" | "Pt100" | "Pt150" | "Pt225" | "Pt300" | "Pt450" | "Pt600" | "Mixed";
|
|
91226
91216
|
/**
|
|
91227
91217
|
* Specifies the 24-bit color of the outside borders. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
91228
91218
|
*
|
|
91229
91219
|
* @remarks
|
|
91230
|
-
* [Api set:
|
|
91231
|
-
* @beta
|
|
91220
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91232
91221
|
*/
|
|
91233
91222
|
outsideBorderColor: string;
|
|
91234
91223
|
/**
|
|
91235
91224
|
* Specifies the border type of the outside borders.
|
|
91236
91225
|
*
|
|
91237
91226
|
* @remarks
|
|
91238
|
-
* [Api set:
|
|
91239
|
-
* @beta
|
|
91227
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91240
91228
|
*/
|
|
91241
91229
|
outsideBorderType: 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";
|
|
91242
91230
|
/**
|
|
91243
91231
|
* Specifies the width of the outside borders.
|
|
91244
91232
|
*
|
|
91245
91233
|
* @remarks
|
|
91246
|
-
* [Api set:
|
|
91247
|
-
* @beta
|
|
91234
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91248
91235
|
*/
|
|
91249
91236
|
outsideBorderWidth: Word.BorderWidth | "None" | "Pt025" | "Pt050" | "Pt075" | "Pt100" | "Pt150" | "Pt225" | "Pt300" | "Pt450" | "Pt600" | "Mixed";
|
|
91250
91237
|
/**
|
|
91251
91238
|
* Gets the border that has the specified location.
|
|
91252
91239
|
*
|
|
91253
91240
|
* @remarks
|
|
91254
|
-
* [Api set:
|
|
91255
|
-
* @beta
|
|
91241
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91256
91242
|
*/
|
|
91257
91243
|
getByLocation(borderLocation: Word.BorderLocation.top | Word.BorderLocation.left | Word.BorderLocation.bottom | Word.BorderLocation.right | Word.BorderLocation.insideHorizontal | Word.BorderLocation.insideVertical | "Top" | "Left" | "Bottom" | "Right" | "InsideHorizontal" | "InsideVertical"): Word.Border;
|
|
91258
91244
|
/**
|
|
91259
91245
|
* Gets the first border in this collection. Throws an `ItemNotFound` error if this collection is empty.
|
|
91260
91246
|
*
|
|
91261
91247
|
* @remarks
|
|
91262
|
-
* [Api set:
|
|
91263
|
-
* @beta
|
|
91248
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91264
91249
|
*/
|
|
91265
91250
|
getFirst(): Word.Border;
|
|
91266
91251
|
/**
|
|
91267
91252
|
* Gets the first border in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
91268
91253
|
*
|
|
91269
91254
|
* @remarks
|
|
91270
|
-
* [Api set:
|
|
91271
|
-
* @beta
|
|
91255
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91272
91256
|
*/
|
|
91273
91257
|
getFirstOrNullObject(): Word.Border;
|
|
91274
91258
|
/**
|
|
91275
91259
|
* Gets a Border object by its index in the collection.
|
|
91276
91260
|
*
|
|
91277
91261
|
* @remarks
|
|
91278
|
-
* [Api set:
|
|
91279
|
-
* @beta
|
|
91262
|
+
* [Api set: WordApiDesktop 1.1]
|
|
91280
91263
|
*
|
|
91281
91264
|
* @param index A number that identifies the index location of a Border object.
|
|
91282
91265
|
*/
|
|
@@ -93486,8 +93469,7 @@ declare namespace Word {
|
|
|
93486
93469
|
* Displays revision marks that indicate where the specified document differs from another document.
|
|
93487
93470
|
*
|
|
93488
93471
|
* @remarks
|
|
93489
|
-
* [Api set:
|
|
93490
|
-
* @beta
|
|
93472
|
+
* [Api set: WordApiDesktop 1.1]
|
|
93491
93473
|
*
|
|
93492
93474
|
* @param filePath Required. The path of the document with which the specified document is compared.
|
|
93493
93475
|
* @param documentCompareOptions Optional. The additional options that specifies the behavior of comparing document.
|
|
@@ -94387,8 +94369,7 @@ declare namespace Word {
|
|
|
94387
94369
|
* Specifies whether the field codes are displayed for the specified field. `true` if the field codes are displayed, `false` otherwise.
|
|
94388
94370
|
*
|
|
94389
94371
|
* @remarks
|
|
94390
|
-
* [Api set:
|
|
94391
|
-
* @beta
|
|
94372
|
+
* [Api set: WordApiDesktop 1.1]
|
|
94392
94373
|
*/
|
|
94393
94374
|
showCodes: boolean;
|
|
94394
94375
|
/**
|
|
@@ -94786,8 +94767,7 @@ declare namespace Word {
|
|
|
94786
94767
|
* Gets the format of the inline image.
|
|
94787
94768
|
*
|
|
94788
94769
|
* @remarks
|
|
94789
|
-
* [Api set:
|
|
94790
|
-
* @beta
|
|
94770
|
+
* [Api set: WordApiDesktop 1.1]
|
|
94791
94771
|
*/
|
|
94792
94772
|
readonly imageFormat: Word.ImageFormat | "Unsupported" | "Undefined" | "Bmp" | "Jpeg" | "Gif" | "Tiff" | "Png" | "Icon" | "Exif" | "Wmf" | "Emf" | "Pict" | "Pdf" | "Svg";
|
|
94793
94773
|
/**
|
|
@@ -95079,8 +95059,7 @@ declare namespace Word {
|
|
|
95079
95059
|
* Gets the font of the bullet, number, or picture at the specified level in the list.
|
|
95080
95060
|
*
|
|
95081
95061
|
* @remarks
|
|
95082
|
-
* [Api set:
|
|
95083
|
-
* @beta
|
|
95062
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95084
95063
|
*
|
|
95085
95064
|
* @param level Required. The level in the list.
|
|
95086
95065
|
*/
|
|
@@ -95098,8 +95077,7 @@ declare namespace Word {
|
|
|
95098
95077
|
* Gets the Base64-encoded string representation of the picture at the specified level in the list.
|
|
95099
95078
|
*
|
|
95100
95079
|
* @remarks
|
|
95101
|
-
* [Api set:
|
|
95102
|
-
* @beta
|
|
95080
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95103
95081
|
*
|
|
95104
95082
|
* @param level Required. The level in the list.
|
|
95105
95083
|
*/
|
|
@@ -95215,8 +95193,7 @@ declare namespace Word {
|
|
|
95215
95193
|
* Sets the picture at the specified level in the list.
|
|
95216
95194
|
*
|
|
95217
95195
|
* @remarks
|
|
95218
|
-
* [Api set:
|
|
95219
|
-
* @beta
|
|
95196
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95220
95197
|
*
|
|
95221
95198
|
* @param level Required. The level in the list.
|
|
95222
95199
|
* @param base64EncodedImage Optional. The Base64-encoded image to be set. If not given, the default picture is set.
|
|
@@ -95455,8 +95432,7 @@ declare namespace Word {
|
|
|
95455
95432
|
* Represents a list level.
|
|
95456
95433
|
*
|
|
95457
95434
|
* @remarks
|
|
95458
|
-
* [Api set:
|
|
95459
|
-
* @beta
|
|
95435
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95460
95436
|
*/
|
|
95461
95437
|
class ListLevel extends OfficeExtension.ClientObject {
|
|
95462
95438
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -95465,88 +95441,77 @@ declare namespace Word {
|
|
|
95465
95441
|
* Gets a Font object that represents the character formatting of the specified object.
|
|
95466
95442
|
*
|
|
95467
95443
|
* @remarks
|
|
95468
|
-
* [Api set:
|
|
95469
|
-
* @beta
|
|
95444
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95470
95445
|
*/
|
|
95471
95446
|
readonly font: Word.Font;
|
|
95472
95447
|
/**
|
|
95473
95448
|
* Specifies the horizontal alignment of the list level. The value can be 'Left', 'Centered', or 'Right'.
|
|
95474
95449
|
*
|
|
95475
95450
|
* @remarks
|
|
95476
|
-
* [Api set:
|
|
95477
|
-
* @beta
|
|
95451
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95478
95452
|
*/
|
|
95479
95453
|
alignment: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
|
|
95480
95454
|
/**
|
|
95481
95455
|
* Specifies the name of the style that's linked to the specified list level object.
|
|
95482
95456
|
*
|
|
95483
95457
|
* @remarks
|
|
95484
|
-
* [Api set:
|
|
95485
|
-
* @beta
|
|
95458
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95486
95459
|
*/
|
|
95487
95460
|
linkedStyle: string;
|
|
95488
95461
|
/**
|
|
95489
95462
|
* Specifies the number format for the specified list level.
|
|
95490
95463
|
*
|
|
95491
95464
|
* @remarks
|
|
95492
|
-
* [Api set:
|
|
95493
|
-
* @beta
|
|
95465
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95494
95466
|
*/
|
|
95495
95467
|
numberFormat: string;
|
|
95496
95468
|
/**
|
|
95497
95469
|
* Specifies the position (in points) of the number or bullet for the specified list level object.
|
|
95498
95470
|
*
|
|
95499
95471
|
* @remarks
|
|
95500
|
-
* [Api set:
|
|
95501
|
-
* @beta
|
|
95472
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95502
95473
|
*/
|
|
95503
95474
|
numberPosition: number;
|
|
95504
95475
|
/**
|
|
95505
95476
|
* Specifies the number style for the list level object.
|
|
95506
95477
|
*
|
|
95507
95478
|
* @remarks
|
|
95508
|
-
* [Api set:
|
|
95509
|
-
* @beta
|
|
95479
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95510
95480
|
*/
|
|
95511
95481
|
numberStyle: Word.ListBuiltInNumberStyle | "None" | "Arabic" | "UpperRoman" | "LowerRoman" | "UpperLetter" | "LowerLetter" | "Ordinal" | "CardinalText" | "OrdinalText" | "Kanji" | "KanjiDigit" | "AiueoHalfWidth" | "IrohaHalfWidth" | "ArabicFullWidth" | "KanjiTraditional" | "KanjiTraditional2" | "NumberInCircle" | "Aiueo" | "Iroha" | "ArabicLZ" | "Bullet" | "Ganada" | "Chosung" | "GBNum1" | "GBNum2" | "GBNum3" | "GBNum4" | "Zodiac1" | "Zodiac2" | "Zodiac3" | "TradChinNum1" | "TradChinNum2" | "TradChinNum3" | "TradChinNum4" | "SimpChinNum1" | "SimpChinNum2" | "SimpChinNum3" | "SimpChinNum4" | "HanjaRead" | "HanjaReadDigit" | "Hangul" | "Hanja" | "Hebrew1" | "Arabic1" | "Hebrew2" | "Arabic2" | "HindiLetter1" | "HindiLetter2" | "HindiArabic" | "HindiCardinalText" | "ThaiLetter" | "ThaiArabic" | "ThaiCardinalText" | "VietCardinalText" | "LowercaseRussian" | "UppercaseRussian" | "LowercaseGreek" | "UppercaseGreek" | "ArabicLZ2" | "ArabicLZ3" | "ArabicLZ4" | "LowercaseTurkish" | "UppercaseTurkish" | "LowercaseBulgarian" | "UppercaseBulgarian" | "PictureBullet" | "Legal" | "LegalLZ";
|
|
95512
95482
|
/**
|
|
95513
95483
|
* Specifies the list level that must appear before the specified list level restarts numbering at 1.
|
|
95514
95484
|
*
|
|
95515
95485
|
* @remarks
|
|
95516
|
-
* [Api set:
|
|
95517
|
-
* @beta
|
|
95486
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95518
95487
|
*/
|
|
95519
95488
|
resetOnHigher: number;
|
|
95520
95489
|
/**
|
|
95521
95490
|
* Specifies the starting number for the specified list level object.
|
|
95522
95491
|
*
|
|
95523
95492
|
* @remarks
|
|
95524
|
-
* [Api set:
|
|
95525
|
-
* @beta
|
|
95493
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95526
95494
|
*/
|
|
95527
95495
|
startAt: number;
|
|
95528
95496
|
/**
|
|
95529
95497
|
* Specifies the tab position for the specified list level object.
|
|
95530
95498
|
*
|
|
95531
95499
|
* @remarks
|
|
95532
|
-
* [Api set:
|
|
95533
|
-
* @beta
|
|
95500
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95534
95501
|
*/
|
|
95535
95502
|
tabPosition: number;
|
|
95536
95503
|
/**
|
|
95537
95504
|
* Specifies the position (in points) for the second line of wrapping text for the specified list level object.
|
|
95538
95505
|
*
|
|
95539
95506
|
* @remarks
|
|
95540
|
-
* [Api set:
|
|
95541
|
-
* @beta
|
|
95507
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95542
95508
|
*/
|
|
95543
95509
|
textPosition: number;
|
|
95544
95510
|
/**
|
|
95545
95511
|
* Specifies the character inserted after the number for the specified list level.
|
|
95546
95512
|
*
|
|
95547
95513
|
* @remarks
|
|
95548
|
-
* [Api set:
|
|
95549
|
-
* @beta
|
|
95514
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95550
95515
|
*/
|
|
95551
95516
|
trailingCharacter: Word.TrailingCharacter | "TrailingTab" | "TrailingSpace" | "TrailingNone";
|
|
95552
95517
|
/**
|
|
@@ -95596,8 +95561,7 @@ declare namespace Word {
|
|
|
95596
95561
|
* Contains a collection of {@link Word.ListLevel} objects.
|
|
95597
95562
|
*
|
|
95598
95563
|
* @remarks
|
|
95599
|
-
* [Api set:
|
|
95600
|
-
* @beta
|
|
95564
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95601
95565
|
*/
|
|
95602
95566
|
class ListLevelCollection extends OfficeExtension.ClientObject {
|
|
95603
95567
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -95608,16 +95572,14 @@ declare namespace Word {
|
|
|
95608
95572
|
* Gets the first list level in this collection. Throws an `ItemNotFound` error if this collection is empty.
|
|
95609
95573
|
*
|
|
95610
95574
|
* @remarks
|
|
95611
|
-
* [Api set:
|
|
95612
|
-
* @beta
|
|
95575
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95613
95576
|
*/
|
|
95614
95577
|
getFirst(): Word.ListLevel;
|
|
95615
95578
|
/**
|
|
95616
95579
|
* Gets the first list level in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
95617
95580
|
*
|
|
95618
95581
|
* @remarks
|
|
95619
|
-
* [Api set:
|
|
95620
|
-
* @beta
|
|
95582
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95621
95583
|
*/
|
|
95622
95584
|
getFirstOrNullObject(): Word.ListLevel;
|
|
95623
95585
|
/**
|
|
@@ -95656,8 +95618,7 @@ declare namespace Word {
|
|
|
95656
95618
|
* Represents a ListTemplate.
|
|
95657
95619
|
*
|
|
95658
95620
|
* @remarks
|
|
95659
|
-
* [Api set:
|
|
95660
|
-
* @beta
|
|
95621
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95661
95622
|
*/
|
|
95662
95623
|
class ListTemplate extends OfficeExtension.ClientObject {
|
|
95663
95624
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -95666,16 +95627,14 @@ declare namespace Word {
|
|
|
95666
95627
|
* Gets a ListLevels collection that represents all the levels for the specified ListTemplate.
|
|
95667
95628
|
*
|
|
95668
95629
|
* @remarks
|
|
95669
|
-
* [Api set:
|
|
95670
|
-
* @beta
|
|
95630
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95671
95631
|
*/
|
|
95672
95632
|
readonly listLevels: Word.ListLevelCollection;
|
|
95673
95633
|
/**
|
|
95674
95634
|
* Specifies whether the specified ListTemplate object is outline numbered.
|
|
95675
95635
|
*
|
|
95676
95636
|
* @remarks
|
|
95677
|
-
* [Api set:
|
|
95678
|
-
* @beta
|
|
95637
|
+
* [Api set: WordApiDesktop 1.1]
|
|
95679
95638
|
*/
|
|
95680
95639
|
outlineNumbered: boolean;
|
|
95681
95640
|
/**
|
|
@@ -96595,7 +96554,7 @@ declare namespace Word {
|
|
|
96595
96554
|
*/
|
|
96596
96555
|
untrack(): Word.ParagraphCollection;
|
|
96597
96556
|
/**
|
|
96598
|
-
* Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in
|
|
96557
|
+
* Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to `JSON.stringify()`. (`JSON.stringify`, in turn, calls the `toJSON` method of the object that is passed to it.)
|
|
96599
96558
|
* Whereas the original `Word.ParagraphCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.ParagraphCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
|
|
96600
96559
|
*/
|
|
96601
96560
|
toJSON(): Word.Interfaces.ParagraphCollectionData;
|
|
@@ -97661,16 +97620,14 @@ declare namespace Word {
|
|
|
97661
97620
|
* Specifies the options to be included in a compare document operation.
|
|
97662
97621
|
*
|
|
97663
97622
|
* @remarks
|
|
97664
|
-
* [Api set:
|
|
97665
|
-
* @beta
|
|
97623
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97666
97624
|
*/
|
|
97667
97625
|
interface DocumentCompareOptions {
|
|
97668
97626
|
/**
|
|
97669
97627
|
* True adds the document to the list of recently used files on the File menu. The default value is True.
|
|
97670
97628
|
*
|
|
97671
97629
|
* @remarks
|
|
97672
|
-
* [Api set:
|
|
97673
|
-
* @beta
|
|
97630
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97674
97631
|
*/
|
|
97675
97632
|
addToRecentFiles?: boolean;
|
|
97676
97633
|
/**
|
|
@@ -97678,48 +97635,42 @@ declare namespace Word {
|
|
|
97678
97635
|
If unspecified, the value defaults to the author name of the revised document or the string "Comparison" if no author information is present.
|
|
97679
97636
|
*
|
|
97680
97637
|
* @remarks
|
|
97681
|
-
* [Api set:
|
|
97682
|
-
* @beta
|
|
97638
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97683
97639
|
*/
|
|
97684
97640
|
authorName?: string;
|
|
97685
97641
|
/**
|
|
97686
97642
|
* The target document for the comparison. Default value is 'CompareTargetCurrent'.
|
|
97687
97643
|
*
|
|
97688
97644
|
* @remarks
|
|
97689
|
-
* [Api set:
|
|
97690
|
-
* @beta
|
|
97645
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97691
97646
|
*/
|
|
97692
97647
|
compareTarget?: Word.CompareTarget | "CompareTargetCurrent" | "CompareTargetSelected" | "CompareTargetNew";
|
|
97693
97648
|
/**
|
|
97694
97649
|
* True (default) for the comparison to include detection of format changes.
|
|
97695
97650
|
*
|
|
97696
97651
|
* @remarks
|
|
97697
|
-
* [Api set:
|
|
97698
|
-
* @beta
|
|
97652
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97699
97653
|
*/
|
|
97700
97654
|
detectFormatChanges?: boolean;
|
|
97701
97655
|
/**
|
|
97702
97656
|
* True compares the documents without notifying a user of problems. The default value is False.
|
|
97703
97657
|
*
|
|
97704
97658
|
* @remarks
|
|
97705
|
-
* [Api set:
|
|
97706
|
-
* @beta
|
|
97659
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97707
97660
|
*/
|
|
97708
97661
|
ignoreAllComparisonWarnings?: boolean;
|
|
97709
97662
|
/**
|
|
97710
97663
|
* True removes date and time stamp information from tracked changes in the returned Document object. The default value is False.
|
|
97711
97664
|
*
|
|
97712
97665
|
* @remarks
|
|
97713
|
-
* [Api set:
|
|
97714
|
-
* @beta
|
|
97666
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97715
97667
|
*/
|
|
97716
97668
|
removeDateAndTime?: boolean;
|
|
97717
97669
|
/**
|
|
97718
97670
|
* True removes all user information from comments, revisions, and the properties dialog box in the returned Document object. The default value is False.
|
|
97719
97671
|
*
|
|
97720
97672
|
* @remarks
|
|
97721
|
-
* [Api set:
|
|
97722
|
-
* @beta
|
|
97673
|
+
* [Api set: WordApiDesktop 1.1]
|
|
97723
97674
|
*/
|
|
97724
97675
|
removePersonalInformation?: boolean;
|
|
97725
97676
|
}
|
|
@@ -98137,8 +98088,7 @@ declare namespace Word {
|
|
|
98137
98088
|
* Specifies a BorderCollection object that represents all the borders for the specified style.
|
|
98138
98089
|
*
|
|
98139
98090
|
* @remarks
|
|
98140
|
-
* [Api set:
|
|
98141
|
-
* @beta
|
|
98091
|
+
* [Api set: WordApiDesktop 1.1]
|
|
98142
98092
|
*/
|
|
98143
98093
|
readonly borders: Word.BorderCollection;
|
|
98144
98094
|
/**
|
|
@@ -98152,8 +98102,7 @@ declare namespace Word {
|
|
|
98152
98102
|
* Gets a ListTemplate object that represents the list formatting for the specified Style object.
|
|
98153
98103
|
*
|
|
98154
98104
|
* @remarks
|
|
98155
|
-
* [Api set:
|
|
98156
|
-
* @beta
|
|
98105
|
+
* [Api set: WordApiDesktop 1.1]
|
|
98157
98106
|
*/
|
|
98158
98107
|
readonly listTemplate: Word.ListTemplate;
|
|
98159
98108
|
/**
|
|
@@ -98336,16 +98285,14 @@ declare namespace Word {
|
|
|
98336
98285
|
* Specifies the color for the foreground of the object. You can provide the value in the '#RRGGBB' format or the color name.
|
|
98337
98286
|
*
|
|
98338
98287
|
* @remarks
|
|
98339
|
-
* [Api set:
|
|
98340
|
-
* @beta
|
|
98288
|
+
* [Api set: WordApiDesktop 1.1]
|
|
98341
98289
|
*/
|
|
98342
98290
|
foregroundPatternColor: string;
|
|
98343
98291
|
/**
|
|
98344
98292
|
* Specifies the shading texture of the object. To learn more about how to apply backgrounds like textures, see {@link https://support.microsoft.com/office/db481e61-7af6-4063-bbcd-b276054a5515 | Add, change, or delete the background color in Word}.
|
|
98345
98293
|
*
|
|
98346
98294
|
* @remarks
|
|
98347
|
-
* [Api set:
|
|
98348
|
-
* @beta
|
|
98295
|
+
* [Api set: WordApiDesktop 1.1]
|
|
98349
98296
|
*/
|
|
98350
98297
|
texture: Word.ShadingTextureType | "DarkDiagonalDown" | "DarkDiagonalUp" | "DarkGrid" | "DarkHorizontal" | "DarkTrellis" | "DarkVertical" | "LightDiagonalDown" | "LightDiagonalUp" | "LightGrid" | "LightHorizontal" | "LightTrellis" | "LightVertical" | "None" | "Percent10" | "Percent12Pt5" | "Percent15" | "Percent20" | "Percent25" | "Percent30" | "Percent35" | "Percent37Pt5" | "Percent40" | "Percent45" | "Percent5" | "Percent50" | "Percent55" | "Percent60" | "Percent62Pt5" | "Percent65" | "Percent70" | "Percent75" | "Percent80" | "Percent85" | "Percent87Pt5" | "Percent90" | "Percent95" | "Solid";
|
|
98351
98298
|
/**
|
|
@@ -98940,16 +98887,14 @@ declare namespace Word {
|
|
|
98940
98887
|
* Specifies the table's alignment against the page margin.
|
|
98941
98888
|
*
|
|
98942
98889
|
* @remarks
|
|
98943
|
-
* [Api set:
|
|
98944
|
-
* @beta
|
|
98890
|
+
* [Api set: WordApiDesktop 1.1]
|
|
98945
98891
|
*/
|
|
98946
98892
|
alignment: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
|
|
98947
98893
|
/**
|
|
98948
98894
|
* Specifies whether lines in tables formatted with a specified style break across pages.
|
|
98949
98895
|
*
|
|
98950
98896
|
* @remarks
|
|
98951
|
-
* [Api set:
|
|
98952
|
-
* @beta
|
|
98897
|
+
* [Api set: WordApiDesktop 1.1]
|
|
98953
98898
|
*/
|
|
98954
98899
|
allowBreakAcrossPage: boolean;
|
|
98955
98900
|
/**
|
|
@@ -99270,8 +99215,7 @@ declare namespace Word {
|
|
|
99270
99215
|
* Inserts a content control on the row.
|
|
99271
99216
|
*
|
|
99272
99217
|
* @remarks
|
|
99273
|
-
* [Api set:
|
|
99274
|
-
* @beta
|
|
99218
|
+
* [Api set: WordApiDesktop 1.1]
|
|
99275
99219
|
*/
|
|
99276
99220
|
insertContentControl(): Word.ContentControl;
|
|
99277
99221
|
/**
|
|
@@ -101157,78 +101101,77 @@ declare namespace Word {
|
|
|
101157
101101
|
}
|
|
101158
101102
|
/**
|
|
101159
101103
|
* @remarks
|
|
101160
|
-
* [Api set:
|
|
101161
|
-
* @beta
|
|
101104
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101162
101105
|
*/
|
|
101163
101106
|
enum ImageFormat {
|
|
101164
101107
|
/**
|
|
101165
101108
|
* @remarks
|
|
101166
|
-
* [Api set:
|
|
101109
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101167
101110
|
*/
|
|
101168
101111
|
unsupported = "Unsupported",
|
|
101169
101112
|
/**
|
|
101170
101113
|
* @remarks
|
|
101171
|
-
* [Api set:
|
|
101114
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101172
101115
|
*/
|
|
101173
101116
|
undefined = "Undefined",
|
|
101174
101117
|
/**
|
|
101175
101118
|
* @remarks
|
|
101176
|
-
* [Api set:
|
|
101119
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101177
101120
|
*/
|
|
101178
101121
|
bmp = "Bmp",
|
|
101179
101122
|
/**
|
|
101180
101123
|
* @remarks
|
|
101181
|
-
* [Api set:
|
|
101124
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101182
101125
|
*/
|
|
101183
101126
|
jpeg = "Jpeg",
|
|
101184
101127
|
/**
|
|
101185
101128
|
* @remarks
|
|
101186
|
-
* [Api set:
|
|
101129
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101187
101130
|
*/
|
|
101188
101131
|
gif = "Gif",
|
|
101189
101132
|
/**
|
|
101190
101133
|
* @remarks
|
|
101191
|
-
* [Api set:
|
|
101134
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101192
101135
|
*/
|
|
101193
101136
|
tiff = "Tiff",
|
|
101194
101137
|
/**
|
|
101195
101138
|
* @remarks
|
|
101196
|
-
* [Api set:
|
|
101139
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101197
101140
|
*/
|
|
101198
101141
|
png = "Png",
|
|
101199
101142
|
/**
|
|
101200
101143
|
* @remarks
|
|
101201
|
-
* [Api set:
|
|
101144
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101202
101145
|
*/
|
|
101203
101146
|
icon = "Icon",
|
|
101204
101147
|
/**
|
|
101205
101148
|
* @remarks
|
|
101206
|
-
* [Api set:
|
|
101149
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101207
101150
|
*/
|
|
101208
101151
|
exif = "Exif",
|
|
101209
101152
|
/**
|
|
101210
101153
|
* @remarks
|
|
101211
|
-
* [Api set:
|
|
101154
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101212
101155
|
*/
|
|
101213
101156
|
wmf = "Wmf",
|
|
101214
101157
|
/**
|
|
101215
101158
|
* @remarks
|
|
101216
|
-
* [Api set:
|
|
101159
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101217
101160
|
*/
|
|
101218
101161
|
emf = "Emf",
|
|
101219
101162
|
/**
|
|
101220
101163
|
* @remarks
|
|
101221
|
-
* [Api set:
|
|
101164
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101222
101165
|
*/
|
|
101223
101166
|
pict = "Pict",
|
|
101224
101167
|
/**
|
|
101225
101168
|
* @remarks
|
|
101226
|
-
* [Api set:
|
|
101169
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101227
101170
|
*/
|
|
101228
101171
|
pdf = "Pdf",
|
|
101229
101172
|
/**
|
|
101230
101173
|
* @remarks
|
|
101231
|
-
* [Api set:
|
|
101174
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101232
101175
|
*/
|
|
101233
101176
|
svg = "Svg",
|
|
101234
101177
|
}
|
|
@@ -101445,85 +101388,73 @@ declare namespace Word {
|
|
|
101445
101388
|
* Represents the width of a style's border.
|
|
101446
101389
|
*
|
|
101447
101390
|
* @remarks
|
|
101448
|
-
* [Api set:
|
|
101449
|
-
* @beta
|
|
101391
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101450
101392
|
*/
|
|
101451
101393
|
enum BorderWidth {
|
|
101452
101394
|
/**
|
|
101453
101395
|
* None width.
|
|
101454
101396
|
* @remarks
|
|
101455
|
-
* [Api set:
|
|
101456
|
-
* @beta
|
|
101397
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101457
101398
|
*/
|
|
101458
101399
|
none = "None",
|
|
101459
101400
|
/**
|
|
101460
101401
|
* 0.25 point.
|
|
101461
101402
|
* @remarks
|
|
101462
|
-
* [Api set:
|
|
101463
|
-
* @beta
|
|
101403
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101464
101404
|
*/
|
|
101465
101405
|
pt025 = "Pt025",
|
|
101466
101406
|
/**
|
|
101467
101407
|
* 0.50 point.
|
|
101468
101408
|
* @remarks
|
|
101469
|
-
* [Api set:
|
|
101470
|
-
* @beta
|
|
101409
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101471
101410
|
*/
|
|
101472
101411
|
pt050 = "Pt050",
|
|
101473
101412
|
/**
|
|
101474
101413
|
* 0.75 point.
|
|
101475
101414
|
* @remarks
|
|
101476
|
-
* [Api set:
|
|
101477
|
-
* @beta
|
|
101415
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101478
101416
|
*/
|
|
101479
101417
|
pt075 = "Pt075",
|
|
101480
101418
|
/**
|
|
101481
101419
|
* 1.00 point. This is the default.
|
|
101482
101420
|
* @remarks
|
|
101483
|
-
* [Api set:
|
|
101484
|
-
* @beta
|
|
101421
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101485
101422
|
*/
|
|
101486
101423
|
pt100 = "Pt100",
|
|
101487
101424
|
/**
|
|
101488
101425
|
* 1.50 points.
|
|
101489
101426
|
* @remarks
|
|
101490
|
-
* [Api set:
|
|
101491
|
-
* @beta
|
|
101427
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101492
101428
|
*/
|
|
101493
101429
|
pt150 = "Pt150",
|
|
101494
101430
|
/**
|
|
101495
101431
|
* 2.25 points.
|
|
101496
101432
|
* @remarks
|
|
101497
|
-
* [Api set:
|
|
101498
|
-
* @beta
|
|
101433
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101499
101434
|
*/
|
|
101500
101435
|
pt225 = "Pt225",
|
|
101501
101436
|
/**
|
|
101502
101437
|
* 3.00 points.
|
|
101503
101438
|
* @remarks
|
|
101504
|
-
* [Api set:
|
|
101505
|
-
* @beta
|
|
101439
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101506
101440
|
*/
|
|
101507
101441
|
pt300 = "Pt300",
|
|
101508
101442
|
/**
|
|
101509
101443
|
* 4.50 points.
|
|
101510
101444
|
* @remarks
|
|
101511
|
-
* [Api set:
|
|
101512
|
-
* @beta
|
|
101445
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101513
101446
|
*/
|
|
101514
101447
|
pt450 = "Pt450",
|
|
101515
101448
|
/**
|
|
101516
101449
|
* 6.00 points.
|
|
101517
101450
|
* @remarks
|
|
101518
|
-
* [Api set:
|
|
101519
|
-
* @beta
|
|
101451
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101520
101452
|
*/
|
|
101521
101453
|
pt600 = "Pt600",
|
|
101522
101454
|
/**
|
|
101523
101455
|
* Mixed width.
|
|
101524
101456
|
* @remarks
|
|
101525
|
-
* [Api set:
|
|
101526
|
-
* @beta
|
|
101457
|
+
* [Api set: WordApiDesktop 1.1]
|
|
101527
101458
|
*/
|
|
101528
101459
|
mixed = "Mixed",
|
|
101529
101460
|
}
|
|
@@ -103291,376 +103222,371 @@ declare namespace Word {
|
|
|
103291
103222
|
* Represents the character inserted after the list item mark.
|
|
103292
103223
|
*
|
|
103293
103224
|
* @remarks
|
|
103294
|
-
* [Api set:
|
|
103295
|
-
* @beta
|
|
103225
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103296
103226
|
*/
|
|
103297
103227
|
enum TrailingCharacter {
|
|
103298
103228
|
/**
|
|
103299
103229
|
* A tab is inserted.
|
|
103300
103230
|
* @remarks
|
|
103301
|
-
* [Api set:
|
|
103302
|
-
* @beta
|
|
103231
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103303
103232
|
*/
|
|
103304
103233
|
trailingTab = "TrailingTab",
|
|
103305
103234
|
/**
|
|
103306
103235
|
* A space is inserted. Default.
|
|
103307
103236
|
* @remarks
|
|
103308
|
-
* [Api set:
|
|
103309
|
-
* @beta
|
|
103237
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103310
103238
|
*/
|
|
103311
103239
|
trailingSpace = "TrailingSpace",
|
|
103312
103240
|
/**
|
|
103313
103241
|
* No character is inserted.
|
|
103314
103242
|
* @remarks
|
|
103315
|
-
* [Api set:
|
|
103316
|
-
* @beta
|
|
103243
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103317
103244
|
*/
|
|
103318
103245
|
trailingNone = "TrailingNone",
|
|
103319
103246
|
}
|
|
103320
103247
|
/**
|
|
103321
103248
|
* @remarks
|
|
103322
|
-
* [Api set:
|
|
103323
|
-
* @beta
|
|
103249
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103324
103250
|
*/
|
|
103325
103251
|
enum ListBuiltInNumberStyle {
|
|
103326
103252
|
/**
|
|
103327
103253
|
* @remarks
|
|
103328
|
-
* [Api set:
|
|
103254
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103329
103255
|
*/
|
|
103330
103256
|
none = "None",
|
|
103331
103257
|
/**
|
|
103332
103258
|
* @remarks
|
|
103333
|
-
* [Api set:
|
|
103259
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103334
103260
|
*/
|
|
103335
103261
|
arabic = "Arabic",
|
|
103336
103262
|
/**
|
|
103337
103263
|
* @remarks
|
|
103338
|
-
* [Api set:
|
|
103264
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103339
103265
|
*/
|
|
103340
103266
|
upperRoman = "UpperRoman",
|
|
103341
103267
|
/**
|
|
103342
103268
|
* @remarks
|
|
103343
|
-
* [Api set:
|
|
103269
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103344
103270
|
*/
|
|
103345
103271
|
lowerRoman = "LowerRoman",
|
|
103346
103272
|
/**
|
|
103347
103273
|
* @remarks
|
|
103348
|
-
* [Api set:
|
|
103274
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103349
103275
|
*/
|
|
103350
103276
|
upperLetter = "UpperLetter",
|
|
103351
103277
|
/**
|
|
103352
103278
|
* @remarks
|
|
103353
|
-
* [Api set:
|
|
103279
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103354
103280
|
*/
|
|
103355
103281
|
lowerLetter = "LowerLetter",
|
|
103356
103282
|
/**
|
|
103357
103283
|
* @remarks
|
|
103358
|
-
* [Api set:
|
|
103284
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103359
103285
|
*/
|
|
103360
103286
|
ordinal = "Ordinal",
|
|
103361
103287
|
/**
|
|
103362
103288
|
* @remarks
|
|
103363
|
-
* [Api set:
|
|
103289
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103364
103290
|
*/
|
|
103365
103291
|
cardinalText = "CardinalText",
|
|
103366
103292
|
/**
|
|
103367
103293
|
* @remarks
|
|
103368
|
-
* [Api set:
|
|
103294
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103369
103295
|
*/
|
|
103370
103296
|
ordinalText = "OrdinalText",
|
|
103371
103297
|
/**
|
|
103372
103298
|
* @remarks
|
|
103373
|
-
* [Api set:
|
|
103299
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103374
103300
|
*/
|
|
103375
103301
|
kanji = "Kanji",
|
|
103376
103302
|
/**
|
|
103377
103303
|
* @remarks
|
|
103378
|
-
* [Api set:
|
|
103304
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103379
103305
|
*/
|
|
103380
103306
|
kanjiDigit = "KanjiDigit",
|
|
103381
103307
|
/**
|
|
103382
103308
|
* @remarks
|
|
103383
|
-
* [Api set:
|
|
103309
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103384
103310
|
*/
|
|
103385
103311
|
aiueoHalfWidth = "AiueoHalfWidth",
|
|
103386
103312
|
/**
|
|
103387
103313
|
* @remarks
|
|
103388
|
-
* [Api set:
|
|
103314
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103389
103315
|
*/
|
|
103390
103316
|
irohaHalfWidth = "IrohaHalfWidth",
|
|
103391
103317
|
/**
|
|
103392
103318
|
* @remarks
|
|
103393
|
-
* [Api set:
|
|
103319
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103394
103320
|
*/
|
|
103395
103321
|
arabicFullWidth = "ArabicFullWidth",
|
|
103396
103322
|
/**
|
|
103397
103323
|
* @remarks
|
|
103398
|
-
* [Api set:
|
|
103324
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103399
103325
|
*/
|
|
103400
103326
|
kanjiTraditional = "KanjiTraditional",
|
|
103401
103327
|
/**
|
|
103402
103328
|
* @remarks
|
|
103403
|
-
* [Api set:
|
|
103329
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103404
103330
|
*/
|
|
103405
103331
|
kanjiTraditional2 = "KanjiTraditional2",
|
|
103406
103332
|
/**
|
|
103407
103333
|
* @remarks
|
|
103408
|
-
* [Api set:
|
|
103334
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103409
103335
|
*/
|
|
103410
103336
|
numberInCircle = "NumberInCircle",
|
|
103411
103337
|
/**
|
|
103412
103338
|
* @remarks
|
|
103413
|
-
* [Api set:
|
|
103339
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103414
103340
|
*/
|
|
103415
103341
|
aiueo = "Aiueo",
|
|
103416
103342
|
/**
|
|
103417
103343
|
* @remarks
|
|
103418
|
-
* [Api set:
|
|
103344
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103419
103345
|
*/
|
|
103420
103346
|
iroha = "Iroha",
|
|
103421
103347
|
/**
|
|
103422
103348
|
* @remarks
|
|
103423
|
-
* [Api set:
|
|
103349
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103424
103350
|
*/
|
|
103425
103351
|
arabicLZ = "ArabicLZ",
|
|
103426
103352
|
/**
|
|
103427
103353
|
* @remarks
|
|
103428
|
-
* [Api set:
|
|
103354
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103429
103355
|
*/
|
|
103430
103356
|
bullet = "Bullet",
|
|
103431
103357
|
/**
|
|
103432
103358
|
* @remarks
|
|
103433
|
-
* [Api set:
|
|
103359
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103434
103360
|
*/
|
|
103435
103361
|
ganada = "Ganada",
|
|
103436
103362
|
/**
|
|
103437
103363
|
* @remarks
|
|
103438
|
-
* [Api set:
|
|
103364
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103439
103365
|
*/
|
|
103440
103366
|
chosung = "Chosung",
|
|
103441
103367
|
/**
|
|
103442
103368
|
* @remarks
|
|
103443
|
-
* [Api set:
|
|
103369
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103444
103370
|
*/
|
|
103445
103371
|
gbnum1 = "GBNum1",
|
|
103446
103372
|
/**
|
|
103447
103373
|
* @remarks
|
|
103448
|
-
* [Api set:
|
|
103374
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103449
103375
|
*/
|
|
103450
103376
|
gbnum2 = "GBNum2",
|
|
103451
103377
|
/**
|
|
103452
103378
|
* @remarks
|
|
103453
|
-
* [Api set:
|
|
103379
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103454
103380
|
*/
|
|
103455
103381
|
gbnum3 = "GBNum3",
|
|
103456
103382
|
/**
|
|
103457
103383
|
* @remarks
|
|
103458
|
-
* [Api set:
|
|
103384
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103459
103385
|
*/
|
|
103460
103386
|
gbnum4 = "GBNum4",
|
|
103461
103387
|
/**
|
|
103462
103388
|
* @remarks
|
|
103463
|
-
* [Api set:
|
|
103389
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103464
103390
|
*/
|
|
103465
103391
|
zodiac1 = "Zodiac1",
|
|
103466
103392
|
/**
|
|
103467
103393
|
* @remarks
|
|
103468
|
-
* [Api set:
|
|
103394
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103469
103395
|
*/
|
|
103470
103396
|
zodiac2 = "Zodiac2",
|
|
103471
103397
|
/**
|
|
103472
103398
|
* @remarks
|
|
103473
|
-
* [Api set:
|
|
103399
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103474
103400
|
*/
|
|
103475
103401
|
zodiac3 = "Zodiac3",
|
|
103476
103402
|
/**
|
|
103477
103403
|
* @remarks
|
|
103478
|
-
* [Api set:
|
|
103404
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103479
103405
|
*/
|
|
103480
103406
|
tradChinNum1 = "TradChinNum1",
|
|
103481
103407
|
/**
|
|
103482
103408
|
* @remarks
|
|
103483
|
-
* [Api set:
|
|
103409
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103484
103410
|
*/
|
|
103485
103411
|
tradChinNum2 = "TradChinNum2",
|
|
103486
103412
|
/**
|
|
103487
103413
|
* @remarks
|
|
103488
|
-
* [Api set:
|
|
103414
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103489
103415
|
*/
|
|
103490
103416
|
tradChinNum3 = "TradChinNum3",
|
|
103491
103417
|
/**
|
|
103492
103418
|
* @remarks
|
|
103493
|
-
* [Api set:
|
|
103419
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103494
103420
|
*/
|
|
103495
103421
|
tradChinNum4 = "TradChinNum4",
|
|
103496
103422
|
/**
|
|
103497
103423
|
* @remarks
|
|
103498
|
-
* [Api set:
|
|
103424
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103499
103425
|
*/
|
|
103500
103426
|
simpChinNum1 = "SimpChinNum1",
|
|
103501
103427
|
/**
|
|
103502
103428
|
* @remarks
|
|
103503
|
-
* [Api set:
|
|
103429
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103504
103430
|
*/
|
|
103505
103431
|
simpChinNum2 = "SimpChinNum2",
|
|
103506
103432
|
/**
|
|
103507
103433
|
* @remarks
|
|
103508
|
-
* [Api set:
|
|
103434
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103509
103435
|
*/
|
|
103510
103436
|
simpChinNum3 = "SimpChinNum3",
|
|
103511
103437
|
/**
|
|
103512
103438
|
* @remarks
|
|
103513
|
-
* [Api set:
|
|
103439
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103514
103440
|
*/
|
|
103515
103441
|
simpChinNum4 = "SimpChinNum4",
|
|
103516
103442
|
/**
|
|
103517
103443
|
* @remarks
|
|
103518
|
-
* [Api set:
|
|
103444
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103519
103445
|
*/
|
|
103520
103446
|
hanjaRead = "HanjaRead",
|
|
103521
103447
|
/**
|
|
103522
103448
|
* @remarks
|
|
103523
|
-
* [Api set:
|
|
103449
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103524
103450
|
*/
|
|
103525
103451
|
hanjaReadDigit = "HanjaReadDigit",
|
|
103526
103452
|
/**
|
|
103527
103453
|
* @remarks
|
|
103528
|
-
* [Api set:
|
|
103454
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103529
103455
|
*/
|
|
103530
103456
|
hangul = "Hangul",
|
|
103531
103457
|
/**
|
|
103532
103458
|
* @remarks
|
|
103533
|
-
* [Api set:
|
|
103459
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103534
103460
|
*/
|
|
103535
103461
|
hanja = "Hanja",
|
|
103536
103462
|
/**
|
|
103537
103463
|
* @remarks
|
|
103538
|
-
* [Api set:
|
|
103464
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103539
103465
|
*/
|
|
103540
103466
|
hebrew1 = "Hebrew1",
|
|
103541
103467
|
/**
|
|
103542
103468
|
* @remarks
|
|
103543
|
-
* [Api set:
|
|
103469
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103544
103470
|
*/
|
|
103545
103471
|
arabic1 = "Arabic1",
|
|
103546
103472
|
/**
|
|
103547
103473
|
* @remarks
|
|
103548
|
-
* [Api set:
|
|
103474
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103549
103475
|
*/
|
|
103550
103476
|
hebrew2 = "Hebrew2",
|
|
103551
103477
|
/**
|
|
103552
103478
|
* @remarks
|
|
103553
|
-
* [Api set:
|
|
103479
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103554
103480
|
*/
|
|
103555
103481
|
arabic2 = "Arabic2",
|
|
103556
103482
|
/**
|
|
103557
103483
|
* @remarks
|
|
103558
|
-
* [Api set:
|
|
103484
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103559
103485
|
*/
|
|
103560
103486
|
hindiLetter1 = "HindiLetter1",
|
|
103561
103487
|
/**
|
|
103562
103488
|
* @remarks
|
|
103563
|
-
* [Api set:
|
|
103489
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103564
103490
|
*/
|
|
103565
103491
|
hindiLetter2 = "HindiLetter2",
|
|
103566
103492
|
/**
|
|
103567
103493
|
* @remarks
|
|
103568
|
-
* [Api set:
|
|
103494
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103569
103495
|
*/
|
|
103570
103496
|
hindiArabic = "HindiArabic",
|
|
103571
103497
|
/**
|
|
103572
103498
|
* @remarks
|
|
103573
|
-
* [Api set:
|
|
103499
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103574
103500
|
*/
|
|
103575
103501
|
hindiCardinalText = "HindiCardinalText",
|
|
103576
103502
|
/**
|
|
103577
103503
|
* @remarks
|
|
103578
|
-
* [Api set:
|
|
103504
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103579
103505
|
*/
|
|
103580
103506
|
thaiLetter = "ThaiLetter",
|
|
103581
103507
|
/**
|
|
103582
103508
|
* @remarks
|
|
103583
|
-
* [Api set:
|
|
103509
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103584
103510
|
*/
|
|
103585
103511
|
thaiArabic = "ThaiArabic",
|
|
103586
103512
|
/**
|
|
103587
103513
|
* @remarks
|
|
103588
|
-
* [Api set:
|
|
103514
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103589
103515
|
*/
|
|
103590
103516
|
thaiCardinalText = "ThaiCardinalText",
|
|
103591
103517
|
/**
|
|
103592
103518
|
* @remarks
|
|
103593
|
-
* [Api set:
|
|
103519
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103594
103520
|
*/
|
|
103595
103521
|
vietCardinalText = "VietCardinalText",
|
|
103596
103522
|
/**
|
|
103597
103523
|
* @remarks
|
|
103598
|
-
* [Api set:
|
|
103524
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103599
103525
|
*/
|
|
103600
103526
|
lowercaseRussian = "LowercaseRussian",
|
|
103601
103527
|
/**
|
|
103602
103528
|
* @remarks
|
|
103603
|
-
* [Api set:
|
|
103529
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103604
103530
|
*/
|
|
103605
103531
|
uppercaseRussian = "UppercaseRussian",
|
|
103606
103532
|
/**
|
|
103607
103533
|
* @remarks
|
|
103608
|
-
* [Api set:
|
|
103534
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103609
103535
|
*/
|
|
103610
103536
|
lowercaseGreek = "LowercaseGreek",
|
|
103611
103537
|
/**
|
|
103612
103538
|
* @remarks
|
|
103613
|
-
* [Api set:
|
|
103539
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103614
103540
|
*/
|
|
103615
103541
|
uppercaseGreek = "UppercaseGreek",
|
|
103616
103542
|
/**
|
|
103617
103543
|
* @remarks
|
|
103618
|
-
* [Api set:
|
|
103544
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103619
103545
|
*/
|
|
103620
103546
|
arabicLZ2 = "ArabicLZ2",
|
|
103621
103547
|
/**
|
|
103622
103548
|
* @remarks
|
|
103623
|
-
* [Api set:
|
|
103549
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103624
103550
|
*/
|
|
103625
103551
|
arabicLZ3 = "ArabicLZ3",
|
|
103626
103552
|
/**
|
|
103627
103553
|
* @remarks
|
|
103628
|
-
* [Api set:
|
|
103554
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103629
103555
|
*/
|
|
103630
103556
|
arabicLZ4 = "ArabicLZ4",
|
|
103631
103557
|
/**
|
|
103632
103558
|
* @remarks
|
|
103633
|
-
* [Api set:
|
|
103559
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103634
103560
|
*/
|
|
103635
103561
|
lowercaseTurkish = "LowercaseTurkish",
|
|
103636
103562
|
/**
|
|
103637
103563
|
* @remarks
|
|
103638
|
-
* [Api set:
|
|
103564
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103639
103565
|
*/
|
|
103640
103566
|
uppercaseTurkish = "UppercaseTurkish",
|
|
103641
103567
|
/**
|
|
103642
103568
|
* @remarks
|
|
103643
|
-
* [Api set:
|
|
103569
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103644
103570
|
*/
|
|
103645
103571
|
lowercaseBulgarian = "LowercaseBulgarian",
|
|
103646
103572
|
/**
|
|
103647
103573
|
* @remarks
|
|
103648
|
-
* [Api set:
|
|
103574
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103649
103575
|
*/
|
|
103650
103576
|
uppercaseBulgarian = "UppercaseBulgarian",
|
|
103651
103577
|
/**
|
|
103652
103578
|
* @remarks
|
|
103653
|
-
* [Api set:
|
|
103579
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103654
103580
|
*/
|
|
103655
103581
|
pictureBullet = "PictureBullet",
|
|
103656
103582
|
/**
|
|
103657
103583
|
* @remarks
|
|
103658
|
-
* [Api set:
|
|
103584
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103659
103585
|
*/
|
|
103660
103586
|
legal = "Legal",
|
|
103661
103587
|
/**
|
|
103662
103588
|
* @remarks
|
|
103663
|
-
* [Api set:
|
|
103589
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103664
103590
|
*/
|
|
103665
103591
|
legalLZ = "LegalLZ",
|
|
103666
103592
|
}
|
|
@@ -103668,267 +103594,229 @@ declare namespace Word {
|
|
|
103668
103594
|
* Represents the shading texture. To learn more about how to apply backgrounds like textures, see {@link https://support.microsoft.com/office/db481e61-7af6-4063-bbcd-b276054a5515 | Add, change, or delete the background color in Word}.
|
|
103669
103595
|
*
|
|
103670
103596
|
* @remarks
|
|
103671
|
-
* [Api set:
|
|
103672
|
-
* @beta
|
|
103597
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103673
103598
|
*/
|
|
103674
103599
|
enum ShadingTextureType {
|
|
103675
103600
|
/**
|
|
103676
103601
|
* Represents dark diagonal-down texture.
|
|
103677
103602
|
* @remarks
|
|
103678
|
-
* [Api set:
|
|
103679
|
-
* @beta
|
|
103603
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103680
103604
|
*/
|
|
103681
103605
|
darkDiagonalDown = "DarkDiagonalDown",
|
|
103682
103606
|
/**
|
|
103683
103607
|
* Represents dark diagonal-up texture.
|
|
103684
103608
|
* @remarks
|
|
103685
|
-
* [Api set:
|
|
103686
|
-
* @beta
|
|
103609
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103687
103610
|
*/
|
|
103688
103611
|
darkDiagonalUp = "DarkDiagonalUp",
|
|
103689
103612
|
/**
|
|
103690
103613
|
* Represents dark horizontal-cross texture.
|
|
103691
103614
|
* @remarks
|
|
103692
|
-
* [Api set:
|
|
103693
|
-
* @beta
|
|
103615
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103694
103616
|
*/
|
|
103695
103617
|
darkGrid = "DarkGrid",
|
|
103696
103618
|
/**
|
|
103697
103619
|
* Represents dark horizontal texture.
|
|
103698
103620
|
* @remarks
|
|
103699
|
-
* [Api set:
|
|
103700
|
-
* @beta
|
|
103621
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103701
103622
|
*/
|
|
103702
103623
|
darkHorizontal = "DarkHorizontal",
|
|
103703
103624
|
/**
|
|
103704
103625
|
* Represents dark diagonal-cross texture.
|
|
103705
103626
|
* @remarks
|
|
103706
|
-
* [Api set:
|
|
103707
|
-
* @beta
|
|
103627
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103708
103628
|
*/
|
|
103709
103629
|
darkTrellis = "DarkTrellis",
|
|
103710
103630
|
/**
|
|
103711
103631
|
* Represents dark vertical texture.
|
|
103712
103632
|
* @remarks
|
|
103713
|
-
* [Api set:
|
|
103714
|
-
* @beta
|
|
103633
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103715
103634
|
*/
|
|
103716
103635
|
darkVertical = "DarkVertical",
|
|
103717
103636
|
/**
|
|
103718
103637
|
* Represents light diagonal-down texture.
|
|
103719
103638
|
* @remarks
|
|
103720
|
-
* [Api set:
|
|
103721
|
-
* @beta
|
|
103639
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103722
103640
|
*/
|
|
103723
103641
|
lightDiagonalDown = "LightDiagonalDown",
|
|
103724
103642
|
/**
|
|
103725
103643
|
* Represents light diagonal-up texture.
|
|
103726
103644
|
* @remarks
|
|
103727
|
-
* [Api set:
|
|
103728
|
-
* @beta
|
|
103645
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103729
103646
|
*/
|
|
103730
103647
|
lightDiagonalUp = "LightDiagonalUp",
|
|
103731
103648
|
/**
|
|
103732
103649
|
* Represents light horizontal-cross texture.
|
|
103733
103650
|
* @remarks
|
|
103734
|
-
* [Api set:
|
|
103735
|
-
* @beta
|
|
103651
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103736
103652
|
*/
|
|
103737
103653
|
lightGrid = "LightGrid",
|
|
103738
103654
|
/**
|
|
103739
103655
|
* Represents light horizontal texture.
|
|
103740
103656
|
* @remarks
|
|
103741
|
-
* [Api set:
|
|
103742
|
-
* @beta
|
|
103657
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103743
103658
|
*/
|
|
103744
103659
|
lightHorizontal = "LightHorizontal",
|
|
103745
103660
|
/**
|
|
103746
103661
|
* Represents light diagonal-cross texture.
|
|
103747
103662
|
* @remarks
|
|
103748
|
-
* [Api set:
|
|
103749
|
-
* @beta
|
|
103663
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103750
103664
|
*/
|
|
103751
103665
|
lightTrellis = "LightTrellis",
|
|
103752
103666
|
/**
|
|
103753
103667
|
* Represents light vertical texture.
|
|
103754
103668
|
* @remarks
|
|
103755
|
-
* [Api set:
|
|
103756
|
-
* @beta
|
|
103669
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103757
103670
|
*/
|
|
103758
103671
|
lightVertical = "LightVertical",
|
|
103759
103672
|
/**
|
|
103760
103673
|
* Represents that there's no texture.
|
|
103761
103674
|
* @remarks
|
|
103762
|
-
* [Api set:
|
|
103763
|
-
* @beta
|
|
103675
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103764
103676
|
*/
|
|
103765
103677
|
none = "None",
|
|
103766
103678
|
/**
|
|
103767
103679
|
* Represents 10 percent texture.
|
|
103768
103680
|
* @remarks
|
|
103769
|
-
* [Api set:
|
|
103770
|
-
* @beta
|
|
103681
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103771
103682
|
*/
|
|
103772
103683
|
percent10 = "Percent10",
|
|
103773
103684
|
/**
|
|
103774
103685
|
* Represents 12.5 percent texture.
|
|
103775
103686
|
* @remarks
|
|
103776
|
-
* [Api set:
|
|
103777
|
-
* @beta
|
|
103687
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103778
103688
|
*/
|
|
103779
103689
|
percent12Pt5 = "Percent12Pt5",
|
|
103780
103690
|
/**
|
|
103781
103691
|
* Represents 15 percent texture.
|
|
103782
103692
|
* @remarks
|
|
103783
|
-
* [Api set:
|
|
103784
|
-
* @beta
|
|
103693
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103785
103694
|
*/
|
|
103786
103695
|
percent15 = "Percent15",
|
|
103787
103696
|
/**
|
|
103788
103697
|
* Represents 20 percent texture.
|
|
103789
103698
|
* @remarks
|
|
103790
|
-
* [Api set:
|
|
103791
|
-
* @beta
|
|
103699
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103792
103700
|
*/
|
|
103793
103701
|
percent20 = "Percent20",
|
|
103794
103702
|
/**
|
|
103795
103703
|
* Represents 25 percent texture.
|
|
103796
103704
|
* @remarks
|
|
103797
|
-
* [Api set:
|
|
103798
|
-
* @beta
|
|
103705
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103799
103706
|
*/
|
|
103800
103707
|
percent25 = "Percent25",
|
|
103801
103708
|
/**
|
|
103802
103709
|
* Represents 30 percent texture.
|
|
103803
103710
|
* @remarks
|
|
103804
|
-
* [Api set:
|
|
103805
|
-
* @beta
|
|
103711
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103806
103712
|
*/
|
|
103807
103713
|
percent30 = "Percent30",
|
|
103808
103714
|
/**
|
|
103809
103715
|
* Represents 35 percent texture.
|
|
103810
103716
|
* @remarks
|
|
103811
|
-
* [Api set:
|
|
103812
|
-
* @beta
|
|
103717
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103813
103718
|
*/
|
|
103814
103719
|
percent35 = "Percent35",
|
|
103815
103720
|
/**
|
|
103816
103721
|
* Represents 37.5 percent texture.
|
|
103817
103722
|
* @remarks
|
|
103818
|
-
* [Api set:
|
|
103819
|
-
* @beta
|
|
103723
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103820
103724
|
*/
|
|
103821
103725
|
percent37Pt5 = "Percent37Pt5",
|
|
103822
103726
|
/**
|
|
103823
103727
|
* Represents 40 percent texture.
|
|
103824
103728
|
* @remarks
|
|
103825
|
-
* [Api set:
|
|
103826
|
-
* @beta
|
|
103729
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103827
103730
|
*/
|
|
103828
103731
|
percent40 = "Percent40",
|
|
103829
103732
|
/**
|
|
103830
103733
|
* Represents 45 percent texture.
|
|
103831
103734
|
* @remarks
|
|
103832
|
-
* [Api set:
|
|
103833
|
-
* @beta
|
|
103735
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103834
103736
|
*/
|
|
103835
103737
|
percent45 = "Percent45",
|
|
103836
103738
|
/**
|
|
103837
103739
|
* Represents 5 percent texture.
|
|
103838
103740
|
* @remarks
|
|
103839
|
-
* [Api set:
|
|
103840
|
-
* @beta
|
|
103741
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103841
103742
|
*/
|
|
103842
103743
|
percent5 = "Percent5",
|
|
103843
103744
|
/**
|
|
103844
103745
|
* Represents 50 percent texture.
|
|
103845
103746
|
* @remarks
|
|
103846
|
-
* [Api set:
|
|
103847
|
-
* @beta
|
|
103747
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103848
103748
|
*/
|
|
103849
103749
|
percent50 = "Percent50",
|
|
103850
103750
|
/**
|
|
103851
103751
|
* Represents 55 percent texture.
|
|
103852
103752
|
* @remarks
|
|
103853
|
-
* [Api set:
|
|
103854
|
-
* @beta
|
|
103753
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103855
103754
|
*/
|
|
103856
103755
|
percent55 = "Percent55",
|
|
103857
103756
|
/**
|
|
103858
103757
|
* Represents 60 percent texture.
|
|
103859
103758
|
* @remarks
|
|
103860
|
-
* [Api set:
|
|
103861
|
-
* @beta
|
|
103759
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103862
103760
|
*/
|
|
103863
103761
|
percent60 = "Percent60",
|
|
103864
103762
|
/**
|
|
103865
103763
|
* Represents 62.5 percent texture.
|
|
103866
103764
|
* @remarks
|
|
103867
|
-
* [Api set:
|
|
103868
|
-
* @beta
|
|
103765
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103869
103766
|
*/
|
|
103870
103767
|
percent62Pt5 = "Percent62Pt5",
|
|
103871
103768
|
/**
|
|
103872
103769
|
* Represents 65 percent texture.
|
|
103873
103770
|
* @remarks
|
|
103874
|
-
* [Api set:
|
|
103875
|
-
* @beta
|
|
103771
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103876
103772
|
*/
|
|
103877
103773
|
percent65 = "Percent65",
|
|
103878
103774
|
/**
|
|
103879
103775
|
* Represents 70 percent texture.
|
|
103880
103776
|
* @remarks
|
|
103881
|
-
* [Api set:
|
|
103882
|
-
* @beta
|
|
103777
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103883
103778
|
*/
|
|
103884
103779
|
percent70 = "Percent70",
|
|
103885
103780
|
/**
|
|
103886
103781
|
* Represents 75 percent texture.
|
|
103887
103782
|
* @remarks
|
|
103888
|
-
* [Api set:
|
|
103889
|
-
* @beta
|
|
103783
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103890
103784
|
*/
|
|
103891
103785
|
percent75 = "Percent75",
|
|
103892
103786
|
/**
|
|
103893
103787
|
* Represents 80 percent texture.
|
|
103894
103788
|
* @remarks
|
|
103895
|
-
* [Api set:
|
|
103896
|
-
* @beta
|
|
103789
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103897
103790
|
*/
|
|
103898
103791
|
percent80 = "Percent80",
|
|
103899
103792
|
/**
|
|
103900
103793
|
* Represents 85 percent texture.
|
|
103901
103794
|
* @remarks
|
|
103902
|
-
* [Api set:
|
|
103903
|
-
* @beta
|
|
103795
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103904
103796
|
*/
|
|
103905
103797
|
percent85 = "Percent85",
|
|
103906
103798
|
/**
|
|
103907
103799
|
* Represents 87.5 percent texture.
|
|
103908
103800
|
* @remarks
|
|
103909
|
-
* [Api set:
|
|
103910
|
-
* @beta
|
|
103801
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103911
103802
|
*/
|
|
103912
103803
|
percent87Pt5 = "Percent87Pt5",
|
|
103913
103804
|
/**
|
|
103914
103805
|
* Represents 90 percent texture.
|
|
103915
103806
|
* @remarks
|
|
103916
|
-
* [Api set:
|
|
103917
|
-
* @beta
|
|
103807
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103918
103808
|
*/
|
|
103919
103809
|
percent90 = "Percent90",
|
|
103920
103810
|
/**
|
|
103921
103811
|
* Represents 95 percent texture.
|
|
103922
103812
|
* @remarks
|
|
103923
|
-
* [Api set:
|
|
103924
|
-
* @beta
|
|
103813
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103925
103814
|
*/
|
|
103926
103815
|
percent95 = "Percent95",
|
|
103927
103816
|
/**
|
|
103928
103817
|
* Represents solid texture.
|
|
103929
103818
|
* @remarks
|
|
103930
|
-
* [Api set:
|
|
103931
|
-
* @beta
|
|
103819
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103932
103820
|
*/
|
|
103933
103821
|
solid = "Solid",
|
|
103934
103822
|
}
|
|
@@ -103936,29 +103824,25 @@ declare namespace Word {
|
|
|
103936
103824
|
* Specifies the target document for displaying document comparison differences.
|
|
103937
103825
|
*
|
|
103938
103826
|
* @remarks
|
|
103939
|
-
* [Api set:
|
|
103940
|
-
* @beta
|
|
103827
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103941
103828
|
*/
|
|
103942
103829
|
enum CompareTarget {
|
|
103943
103830
|
/**
|
|
103944
103831
|
* Places comparison differences in the current document.
|
|
103945
103832
|
* @remarks
|
|
103946
|
-
* [Api set:
|
|
103947
|
-
* @beta
|
|
103833
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103948
103834
|
*/
|
|
103949
103835
|
compareTargetCurrent = "CompareTargetCurrent",
|
|
103950
103836
|
/**
|
|
103951
103837
|
* Places comparison differences in the target document.
|
|
103952
103838
|
* @remarks
|
|
103953
|
-
* [Api set:
|
|
103954
|
-
* @beta
|
|
103839
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103955
103840
|
*/
|
|
103956
103841
|
compareTargetSelected = "CompareTargetSelected",
|
|
103957
103842
|
/**
|
|
103958
103843
|
* Places comparison differences in a new document.
|
|
103959
103844
|
* @remarks
|
|
103960
|
-
* [Api set:
|
|
103961
|
-
* @beta
|
|
103845
|
+
* [Api set: WordApiDesktop 1.1]
|
|
103962
103846
|
*/
|
|
103963
103847
|
compareTargetNew = "CompareTargetNew",
|
|
103964
103848
|
}
|
|
@@ -103974,16 +103858,16 @@ declare namespace Word {
|
|
|
103974
103858
|
}
|
|
103975
103859
|
namespace Interfaces {
|
|
103976
103860
|
/**
|
|
103977
|
-
|
|
103978
|
-
|
|
103861
|
+
* Provides ways to load properties of only a subset of members of a collection.
|
|
103862
|
+
*/
|
|
103979
103863
|
interface CollectionLoadOptions {
|
|
103980
103864
|
/**
|
|
103981
|
-
|
|
103982
|
-
|
|
103865
|
+
* Specify the number of items in the queried collection to be included in the result.
|
|
103866
|
+
*/
|
|
103983
103867
|
$top?: number;
|
|
103984
103868
|
/**
|
|
103985
|
-
|
|
103986
|
-
|
|
103869
|
+
* Specify the number of items in the collection that are to be skipped and not included in the result. If top is specified, the selection of result will start after skipping the specified number of items.
|
|
103870
|
+
*/
|
|
103987
103871
|
$skip?: number;
|
|
103988
103872
|
}
|
|
103989
103873
|
/** An interface for updating data on the `AnnotationCollection` object, for use in `annotationCollection.set({ ... })`. */
|
|
@@ -103993,11 +103877,11 @@ declare namespace Word {
|
|
|
103993
103877
|
/** An interface for updating data on the `Body` object, for use in `body.set({ ... })`. */
|
|
103994
103878
|
interface BodyUpdateData {
|
|
103995
103879
|
/**
|
|
103996
|
-
|
|
103997
|
-
|
|
103998
|
-
|
|
103999
|
-
|
|
104000
|
-
|
|
103880
|
+
* Gets the text format of the body. Use this to get and set font name, size, color and other properties.
|
|
103881
|
+
*
|
|
103882
|
+
* @remarks
|
|
103883
|
+
* [Api set: WordApi 1.1]
|
|
103884
|
+
*/
|
|
104001
103885
|
font?: Word.Interfaces.FontUpdateData;
|
|
104002
103886
|
/**
|
|
104003
103887
|
* 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.
|
|
@@ -104020,32 +103904,28 @@ declare namespace Word {
|
|
|
104020
103904
|
* Specifies the color for the border. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
104021
103905
|
*
|
|
104022
103906
|
* @remarks
|
|
104023
|
-
* [Api set:
|
|
104024
|
-
* @beta
|
|
103907
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104025
103908
|
*/
|
|
104026
103909
|
color?: string;
|
|
104027
103910
|
/**
|
|
104028
103911
|
* Specifies the border type for the border.
|
|
104029
103912
|
*
|
|
104030
103913
|
* @remarks
|
|
104031
|
-
* [Api set:
|
|
104032
|
-
* @beta
|
|
103914
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104033
103915
|
*/
|
|
104034
103916
|
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";
|
|
104035
103917
|
/**
|
|
104036
103918
|
* Specifies whether the border is visible.
|
|
104037
103919
|
*
|
|
104038
103920
|
* @remarks
|
|
104039
|
-
* [Api set:
|
|
104040
|
-
* @beta
|
|
103921
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104041
103922
|
*/
|
|
104042
103923
|
visible?: boolean;
|
|
104043
103924
|
/**
|
|
104044
103925
|
* Specifies the width for the border.
|
|
104045
103926
|
*
|
|
104046
103927
|
* @remarks
|
|
104047
|
-
* [Api set:
|
|
104048
|
-
* @beta
|
|
103928
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104049
103929
|
*/
|
|
104050
103930
|
width?: Word.BorderWidth | "None" | "Pt025" | "Pt050" | "Pt075" | "Pt100" | "Pt150" | "Pt225" | "Pt300" | "Pt450" | "Pt600" | "Mixed";
|
|
104051
103931
|
}
|
|
@@ -104055,48 +103935,42 @@ declare namespace Word {
|
|
|
104055
103935
|
* Specifies the 24-bit color of the inside borders. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
104056
103936
|
*
|
|
104057
103937
|
* @remarks
|
|
104058
|
-
* [Api set:
|
|
104059
|
-
* @beta
|
|
103938
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104060
103939
|
*/
|
|
104061
103940
|
insideBorderColor?: string;
|
|
104062
103941
|
/**
|
|
104063
103942
|
* Specifies the border type of the inside borders.
|
|
104064
103943
|
*
|
|
104065
103944
|
* @remarks
|
|
104066
|
-
* [Api set:
|
|
104067
|
-
* @beta
|
|
103945
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104068
103946
|
*/
|
|
104069
103947
|
insideBorderType?: 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";
|
|
104070
103948
|
/**
|
|
104071
103949
|
* Specifies the width of the inside borders.
|
|
104072
103950
|
*
|
|
104073
103951
|
* @remarks
|
|
104074
|
-
* [Api set:
|
|
104075
|
-
* @beta
|
|
103952
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104076
103953
|
*/
|
|
104077
103954
|
insideBorderWidth?: Word.BorderWidth | "None" | "Pt025" | "Pt050" | "Pt075" | "Pt100" | "Pt150" | "Pt225" | "Pt300" | "Pt450" | "Pt600" | "Mixed";
|
|
104078
103955
|
/**
|
|
104079
103956
|
* Specifies the 24-bit color of the outside borders. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
104080
103957
|
*
|
|
104081
103958
|
* @remarks
|
|
104082
|
-
* [Api set:
|
|
104083
|
-
* @beta
|
|
103959
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104084
103960
|
*/
|
|
104085
103961
|
outsideBorderColor?: string;
|
|
104086
103962
|
/**
|
|
104087
103963
|
* Specifies the border type of the outside borders.
|
|
104088
103964
|
*
|
|
104089
103965
|
* @remarks
|
|
104090
|
-
* [Api set:
|
|
104091
|
-
* @beta
|
|
103966
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104092
103967
|
*/
|
|
104093
103968
|
outsideBorderType?: 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";
|
|
104094
103969
|
/**
|
|
104095
103970
|
* Specifies the width of the outside borders.
|
|
104096
103971
|
*
|
|
104097
103972
|
* @remarks
|
|
104098
|
-
* [Api set:
|
|
104099
|
-
* @beta
|
|
103973
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104100
103974
|
*/
|
|
104101
103975
|
outsideBorderWidth?: Word.BorderWidth | "None" | "Pt025" | "Pt050" | "Pt075" | "Pt100" | "Pt150" | "Pt225" | "Pt300" | "Pt450" | "Pt600" | "Mixed";
|
|
104102
103976
|
items?: Word.Interfaces.BorderData[];
|
|
@@ -104180,18 +104054,18 @@ declare namespace Word {
|
|
|
104180
104054
|
/** An interface for updating data on the `CommentReply` object, for use in `commentReply.set({ ... })`. */
|
|
104181
104055
|
interface CommentReplyUpdateData {
|
|
104182
104056
|
/**
|
|
104183
|
-
|
|
104184
|
-
|
|
104185
|
-
|
|
104186
|
-
|
|
104187
|
-
|
|
104057
|
+
* Specifies the commentReply's content range.
|
|
104058
|
+
*
|
|
104059
|
+
* @remarks
|
|
104060
|
+
* [Api set: WordApi 1.4]
|
|
104061
|
+
*/
|
|
104188
104062
|
contentRange?: Word.Interfaces.CommentContentRangeUpdateData;
|
|
104189
104063
|
/**
|
|
104190
|
-
|
|
104191
|
-
|
|
104192
|
-
|
|
104193
|
-
|
|
104194
|
-
|
|
104064
|
+
* Gets the parent comment of this reply.
|
|
104065
|
+
*
|
|
104066
|
+
* @remarks
|
|
104067
|
+
* [Api set: WordApi 1.4]
|
|
104068
|
+
*/
|
|
104195
104069
|
parentComment?: Word.Interfaces.CommentUpdateData;
|
|
104196
104070
|
/**
|
|
104197
104071
|
* Specifies the comment reply's content. The string is plain text.
|
|
@@ -104494,8 +104368,7 @@ declare namespace Word {
|
|
|
104494
104368
|
* Specifies whether the field codes are displayed for the specified field. `true` if the field codes are displayed, `false` otherwise.
|
|
104495
104369
|
*
|
|
104496
104370
|
* @remarks
|
|
104497
|
-
* [Api set:
|
|
104498
|
-
* @beta
|
|
104371
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104499
104372
|
*/
|
|
104500
104373
|
showCodes?: boolean;
|
|
104501
104374
|
}
|
|
@@ -104660,88 +104533,77 @@ declare namespace Word {
|
|
|
104660
104533
|
* Gets a Font object that represents the character formatting of the specified object.
|
|
104661
104534
|
*
|
|
104662
104535
|
* @remarks
|
|
104663
|
-
* [Api set:
|
|
104664
|
-
* @beta
|
|
104536
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104665
104537
|
*/
|
|
104666
104538
|
font?: Word.Interfaces.FontUpdateData;
|
|
104667
104539
|
/**
|
|
104668
104540
|
* Specifies the horizontal alignment of the list level. The value can be 'Left', 'Centered', or 'Right'.
|
|
104669
104541
|
*
|
|
104670
104542
|
* @remarks
|
|
104671
|
-
* [Api set:
|
|
104672
|
-
* @beta
|
|
104543
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104673
104544
|
*/
|
|
104674
104545
|
alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
|
|
104675
104546
|
/**
|
|
104676
104547
|
* Specifies the name of the style that's linked to the specified list level object.
|
|
104677
104548
|
*
|
|
104678
104549
|
* @remarks
|
|
104679
|
-
* [Api set:
|
|
104680
|
-
* @beta
|
|
104550
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104681
104551
|
*/
|
|
104682
104552
|
linkedStyle?: string;
|
|
104683
104553
|
/**
|
|
104684
104554
|
* Specifies the number format for the specified list level.
|
|
104685
104555
|
*
|
|
104686
104556
|
* @remarks
|
|
104687
|
-
* [Api set:
|
|
104688
|
-
* @beta
|
|
104557
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104689
104558
|
*/
|
|
104690
104559
|
numberFormat?: string;
|
|
104691
104560
|
/**
|
|
104692
104561
|
* Specifies the position (in points) of the number or bullet for the specified list level object.
|
|
104693
104562
|
*
|
|
104694
104563
|
* @remarks
|
|
104695
|
-
* [Api set:
|
|
104696
|
-
* @beta
|
|
104564
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104697
104565
|
*/
|
|
104698
104566
|
numberPosition?: number;
|
|
104699
104567
|
/**
|
|
104700
104568
|
* Specifies the number style for the list level object.
|
|
104701
104569
|
*
|
|
104702
104570
|
* @remarks
|
|
104703
|
-
* [Api set:
|
|
104704
|
-
* @beta
|
|
104571
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104705
104572
|
*/
|
|
104706
104573
|
numberStyle?: Word.ListBuiltInNumberStyle | "None" | "Arabic" | "UpperRoman" | "LowerRoman" | "UpperLetter" | "LowerLetter" | "Ordinal" | "CardinalText" | "OrdinalText" | "Kanji" | "KanjiDigit" | "AiueoHalfWidth" | "IrohaHalfWidth" | "ArabicFullWidth" | "KanjiTraditional" | "KanjiTraditional2" | "NumberInCircle" | "Aiueo" | "Iroha" | "ArabicLZ" | "Bullet" | "Ganada" | "Chosung" | "GBNum1" | "GBNum2" | "GBNum3" | "GBNum4" | "Zodiac1" | "Zodiac2" | "Zodiac3" | "TradChinNum1" | "TradChinNum2" | "TradChinNum3" | "TradChinNum4" | "SimpChinNum1" | "SimpChinNum2" | "SimpChinNum3" | "SimpChinNum4" | "HanjaRead" | "HanjaReadDigit" | "Hangul" | "Hanja" | "Hebrew1" | "Arabic1" | "Hebrew2" | "Arabic2" | "HindiLetter1" | "HindiLetter2" | "HindiArabic" | "HindiCardinalText" | "ThaiLetter" | "ThaiArabic" | "ThaiCardinalText" | "VietCardinalText" | "LowercaseRussian" | "UppercaseRussian" | "LowercaseGreek" | "UppercaseGreek" | "ArabicLZ2" | "ArabicLZ3" | "ArabicLZ4" | "LowercaseTurkish" | "UppercaseTurkish" | "LowercaseBulgarian" | "UppercaseBulgarian" | "PictureBullet" | "Legal" | "LegalLZ";
|
|
104707
104574
|
/**
|
|
104708
104575
|
* Specifies the list level that must appear before the specified list level restarts numbering at 1.
|
|
104709
104576
|
*
|
|
104710
104577
|
* @remarks
|
|
104711
|
-
* [Api set:
|
|
104712
|
-
* @beta
|
|
104578
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104713
104579
|
*/
|
|
104714
104580
|
resetOnHigher?: number;
|
|
104715
104581
|
/**
|
|
104716
104582
|
* Specifies the starting number for the specified list level object.
|
|
104717
104583
|
*
|
|
104718
104584
|
* @remarks
|
|
104719
|
-
* [Api set:
|
|
104720
|
-
* @beta
|
|
104585
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104721
104586
|
*/
|
|
104722
104587
|
startAt?: number;
|
|
104723
104588
|
/**
|
|
104724
104589
|
* Specifies the tab position for the specified list level object.
|
|
104725
104590
|
*
|
|
104726
104591
|
* @remarks
|
|
104727
|
-
* [Api set:
|
|
104728
|
-
* @beta
|
|
104592
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104729
104593
|
*/
|
|
104730
104594
|
tabPosition?: number;
|
|
104731
104595
|
/**
|
|
104732
104596
|
* Specifies the position (in points) for the second line of wrapping text for the specified list level object.
|
|
104733
104597
|
*
|
|
104734
104598
|
* @remarks
|
|
104735
|
-
* [Api set:
|
|
104736
|
-
* @beta
|
|
104599
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104737
104600
|
*/
|
|
104738
104601
|
textPosition?: number;
|
|
104739
104602
|
/**
|
|
104740
104603
|
* Specifies the character inserted after the number for the specified list level.
|
|
104741
104604
|
*
|
|
104742
104605
|
* @remarks
|
|
104743
|
-
* [Api set:
|
|
104744
|
-
* @beta
|
|
104606
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104745
104607
|
*/
|
|
104746
104608
|
trailingCharacter?: Word.TrailingCharacter | "TrailingTab" | "TrailingSpace" | "TrailingNone";
|
|
104747
104609
|
}
|
|
@@ -104755,8 +104617,7 @@ declare namespace Word {
|
|
|
104755
104617
|
* Specifies whether the specified ListTemplate object is outline numbered.
|
|
104756
104618
|
*
|
|
104757
104619
|
* @remarks
|
|
104758
|
-
* [Api set:
|
|
104759
|
-
* @beta
|
|
104620
|
+
* [Api set: WordApiDesktop 1.1]
|
|
104760
104621
|
*/
|
|
104761
104622
|
outlineNumbered?: boolean;
|
|
104762
104623
|
}
|
|
@@ -104798,11 +104659,11 @@ declare namespace Word {
|
|
|
104798
104659
|
*/
|
|
104799
104660
|
listItem?: Word.Interfaces.ListItemUpdateData;
|
|
104800
104661
|
/**
|
|
104801
|
-
|
|
104802
|
-
|
|
104803
|
-
|
|
104804
|
-
|
|
104805
|
-
|
|
104662
|
+
* Gets the ListItem for the paragraph. If the paragraph isn't part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
104663
|
+
*
|
|
104664
|
+
* @remarks
|
|
104665
|
+
* [Api set: WordApi 1.3]
|
|
104666
|
+
*/
|
|
104806
104667
|
listItemOrNullObject?: Word.Interfaces.ListItemUpdateData;
|
|
104807
104668
|
/**
|
|
104808
104669
|
* Specifies the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
|
|
@@ -105119,8 +104980,7 @@ declare namespace Word {
|
|
|
105119
104980
|
* Specifies a BorderCollection object that represents all the borders for the specified style.
|
|
105120
104981
|
*
|
|
105121
104982
|
* @remarks
|
|
105122
|
-
* [Api set:
|
|
105123
|
-
* @beta
|
|
104983
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105124
104984
|
*/
|
|
105125
104985
|
borders?: Word.Interfaces.BorderCollectionUpdateData;
|
|
105126
104986
|
/**
|
|
@@ -105134,8 +104994,7 @@ declare namespace Word {
|
|
|
105134
104994
|
* Gets a ListTemplate object that represents the list formatting for the specified Style object.
|
|
105135
104995
|
*
|
|
105136
104996
|
* @remarks
|
|
105137
|
-
* [Api set:
|
|
105138
|
-
* @beta
|
|
104997
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105139
104998
|
*/
|
|
105140
104999
|
listTemplate?: Word.Interfaces.ListTemplateUpdateData;
|
|
105141
105000
|
/**
|
|
@@ -105219,16 +105078,14 @@ declare namespace Word {
|
|
|
105219
105078
|
* Specifies the color for the foreground of the object. You can provide the value in the '#RRGGBB' format or the color name.
|
|
105220
105079
|
*
|
|
105221
105080
|
* @remarks
|
|
105222
|
-
* [Api set:
|
|
105223
|
-
* @beta
|
|
105081
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105224
105082
|
*/
|
|
105225
105083
|
foregroundPatternColor?: string;
|
|
105226
105084
|
/**
|
|
105227
105085
|
* Specifies the shading texture of the object. To learn more about how to apply backgrounds like textures, see {@link https://support.microsoft.com/office/db481e61-7af6-4063-bbcd-b276054a5515 | Add, change, or delete the background color in Word}.
|
|
105228
105086
|
*
|
|
105229
105087
|
* @remarks
|
|
105230
|
-
* [Api set:
|
|
105231
|
-
* @beta
|
|
105088
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105232
105089
|
*/
|
|
105233
105090
|
texture?: Word.ShadingTextureType | "DarkDiagonalDown" | "DarkDiagonalUp" | "DarkGrid" | "DarkHorizontal" | "DarkTrellis" | "DarkVertical" | "LightDiagonalDown" | "LightDiagonalUp" | "LightGrid" | "LightHorizontal" | "LightTrellis" | "LightVertical" | "None" | "Percent10" | "Percent12Pt5" | "Percent15" | "Percent20" | "Percent25" | "Percent30" | "Percent35" | "Percent37Pt5" | "Percent40" | "Percent45" | "Percent5" | "Percent50" | "Percent55" | "Percent60" | "Percent62Pt5" | "Percent65" | "Percent70" | "Percent75" | "Percent80" | "Percent85" | "Percent87Pt5" | "Percent90" | "Percent95" | "Solid";
|
|
105234
105091
|
}
|
|
@@ -105346,16 +105203,14 @@ declare namespace Word {
|
|
|
105346
105203
|
* Specifies the table's alignment against the page margin.
|
|
105347
105204
|
*
|
|
105348
105205
|
* @remarks
|
|
105349
|
-
* [Api set:
|
|
105350
|
-
* @beta
|
|
105206
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105351
105207
|
*/
|
|
105352
105208
|
alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
|
|
105353
105209
|
/**
|
|
105354
105210
|
* Specifies whether lines in tables formatted with a specified style break across pages.
|
|
105355
105211
|
*
|
|
105356
105212
|
* @remarks
|
|
105357
|
-
* [Api set:
|
|
105358
|
-
* @beta
|
|
105213
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105359
105214
|
*/
|
|
105360
105215
|
allowBreakAcrossPage?: boolean;
|
|
105361
105216
|
/**
|
|
@@ -105643,40 +105498,35 @@ declare namespace Word {
|
|
|
105643
105498
|
* Specifies the color for the border. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
105644
105499
|
*
|
|
105645
105500
|
* @remarks
|
|
105646
|
-
* [Api set:
|
|
105647
|
-
* @beta
|
|
105501
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105648
105502
|
*/
|
|
105649
105503
|
color?: string;
|
|
105650
105504
|
/**
|
|
105651
105505
|
* Gets the location of the border.
|
|
105652
105506
|
*
|
|
105653
105507
|
* @remarks
|
|
105654
|
-
* [Api set:
|
|
105655
|
-
* @beta
|
|
105508
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105656
105509
|
*/
|
|
105657
105510
|
location?: Word.BorderLocation | "Top" | "Left" | "Bottom" | "Right" | "InsideHorizontal" | "InsideVertical" | "Inside" | "Outside" | "All";
|
|
105658
105511
|
/**
|
|
105659
105512
|
* Specifies the border type for the border.
|
|
105660
105513
|
*
|
|
105661
105514
|
* @remarks
|
|
105662
|
-
* [Api set:
|
|
105663
|
-
* @beta
|
|
105515
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105664
105516
|
*/
|
|
105665
105517
|
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";
|
|
105666
105518
|
/**
|
|
105667
105519
|
* Specifies whether the border is visible.
|
|
105668
105520
|
*
|
|
105669
105521
|
* @remarks
|
|
105670
|
-
* [Api set:
|
|
105671
|
-
* @beta
|
|
105522
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105672
105523
|
*/
|
|
105673
105524
|
visible?: boolean;
|
|
105674
105525
|
/**
|
|
105675
105526
|
* Specifies the width for the border.
|
|
105676
105527
|
*
|
|
105677
105528
|
* @remarks
|
|
105678
|
-
* [Api set:
|
|
105679
|
-
* @beta
|
|
105529
|
+
* [Api set: WordApiDesktop 1.1]
|
|
105680
105530
|
*/
|
|
105681
105531
|
width?: Word.BorderWidth | "None" | "Pt025" | "Pt050" | "Pt075" | "Pt100" | "Pt150" | "Pt225" | "Pt300" | "Pt450" | "Pt600" | "Mixed";
|
|
105682
105532
|
}
|
|
@@ -106419,8 +106269,7 @@ declare namespace Word {
|
|
|
106419
106269
|
* Specifies whether the field codes are displayed for the specified field. `true` if the field codes are displayed, `false` otherwise.
|
|
106420
106270
|
*
|
|
106421
106271
|
* @remarks
|
|
106422
|
-
* [Api set:
|
|
106423
|
-
* @beta
|
|
106272
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106424
106273
|
*/
|
|
106425
106274
|
showCodes?: boolean;
|
|
106426
106275
|
/**
|
|
@@ -106557,8 +106406,7 @@ declare namespace Word {
|
|
|
106557
106406
|
* Gets the format of the inline image.
|
|
106558
106407
|
*
|
|
106559
106408
|
* @remarks
|
|
106560
|
-
* [Api set:
|
|
106561
|
-
* @beta
|
|
106409
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106562
106410
|
*/
|
|
106563
106411
|
imageFormat?: Word.ImageFormat | "Unsupported" | "Undefined" | "Bmp" | "Jpeg" | "Gif" | "Tiff" | "Png" | "Icon" | "Exif" | "Wmf" | "Emf" | "Pict" | "Pdf" | "Svg";
|
|
106564
106412
|
/**
|
|
@@ -106642,91 +106490,80 @@ declare namespace Word {
|
|
|
106642
106490
|
/** An interface describing the data returned by calling `listLevel.toJSON()`. */
|
|
106643
106491
|
interface ListLevelData {
|
|
106644
106492
|
/**
|
|
106645
|
-
|
|
106646
|
-
|
|
106647
|
-
|
|
106648
|
-
|
|
106649
|
-
|
|
106650
|
-
*/
|
|
106493
|
+
* Gets a Font object that represents the character formatting of the specified object.
|
|
106494
|
+
*
|
|
106495
|
+
* @remarks
|
|
106496
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106497
|
+
*/
|
|
106651
106498
|
font?: Word.Interfaces.FontData;
|
|
106652
106499
|
/**
|
|
106653
106500
|
* Specifies the horizontal alignment of the list level. The value can be 'Left', 'Centered', or 'Right'.
|
|
106654
106501
|
*
|
|
106655
106502
|
* @remarks
|
|
106656
|
-
* [Api set:
|
|
106657
|
-
* @beta
|
|
106503
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106658
106504
|
*/
|
|
106659
106505
|
alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
|
|
106660
106506
|
/**
|
|
106661
106507
|
* Specifies the name of the style that's linked to the specified list level object.
|
|
106662
106508
|
*
|
|
106663
106509
|
* @remarks
|
|
106664
|
-
* [Api set:
|
|
106665
|
-
* @beta
|
|
106510
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106666
106511
|
*/
|
|
106667
106512
|
linkedStyle?: string;
|
|
106668
106513
|
/**
|
|
106669
106514
|
* Specifies the number format for the specified list level.
|
|
106670
106515
|
*
|
|
106671
106516
|
* @remarks
|
|
106672
|
-
* [Api set:
|
|
106673
|
-
* @beta
|
|
106517
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106674
106518
|
*/
|
|
106675
106519
|
numberFormat?: string;
|
|
106676
106520
|
/**
|
|
106677
106521
|
* Specifies the position (in points) of the number or bullet for the specified list level object.
|
|
106678
106522
|
*
|
|
106679
106523
|
* @remarks
|
|
106680
|
-
* [Api set:
|
|
106681
|
-
* @beta
|
|
106524
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106682
106525
|
*/
|
|
106683
106526
|
numberPosition?: number;
|
|
106684
106527
|
/**
|
|
106685
106528
|
* Specifies the number style for the list level object.
|
|
106686
106529
|
*
|
|
106687
106530
|
* @remarks
|
|
106688
|
-
* [Api set:
|
|
106689
|
-
* @beta
|
|
106531
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106690
106532
|
*/
|
|
106691
106533
|
numberStyle?: Word.ListBuiltInNumberStyle | "None" | "Arabic" | "UpperRoman" | "LowerRoman" | "UpperLetter" | "LowerLetter" | "Ordinal" | "CardinalText" | "OrdinalText" | "Kanji" | "KanjiDigit" | "AiueoHalfWidth" | "IrohaHalfWidth" | "ArabicFullWidth" | "KanjiTraditional" | "KanjiTraditional2" | "NumberInCircle" | "Aiueo" | "Iroha" | "ArabicLZ" | "Bullet" | "Ganada" | "Chosung" | "GBNum1" | "GBNum2" | "GBNum3" | "GBNum4" | "Zodiac1" | "Zodiac2" | "Zodiac3" | "TradChinNum1" | "TradChinNum2" | "TradChinNum3" | "TradChinNum4" | "SimpChinNum1" | "SimpChinNum2" | "SimpChinNum3" | "SimpChinNum4" | "HanjaRead" | "HanjaReadDigit" | "Hangul" | "Hanja" | "Hebrew1" | "Arabic1" | "Hebrew2" | "Arabic2" | "HindiLetter1" | "HindiLetter2" | "HindiArabic" | "HindiCardinalText" | "ThaiLetter" | "ThaiArabic" | "ThaiCardinalText" | "VietCardinalText" | "LowercaseRussian" | "UppercaseRussian" | "LowercaseGreek" | "UppercaseGreek" | "ArabicLZ2" | "ArabicLZ3" | "ArabicLZ4" | "LowercaseTurkish" | "UppercaseTurkish" | "LowercaseBulgarian" | "UppercaseBulgarian" | "PictureBullet" | "Legal" | "LegalLZ";
|
|
106692
106534
|
/**
|
|
106693
106535
|
* Specifies the list level that must appear before the specified list level restarts numbering at 1.
|
|
106694
106536
|
*
|
|
106695
106537
|
* @remarks
|
|
106696
|
-
* [Api set:
|
|
106697
|
-
* @beta
|
|
106538
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106698
106539
|
*/
|
|
106699
106540
|
resetOnHigher?: number;
|
|
106700
106541
|
/**
|
|
106701
106542
|
* Specifies the starting number for the specified list level object.
|
|
106702
106543
|
*
|
|
106703
106544
|
* @remarks
|
|
106704
|
-
* [Api set:
|
|
106705
|
-
* @beta
|
|
106545
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106706
106546
|
*/
|
|
106707
106547
|
startAt?: number;
|
|
106708
106548
|
/**
|
|
106709
106549
|
* Specifies the tab position for the specified list level object.
|
|
106710
106550
|
*
|
|
106711
106551
|
* @remarks
|
|
106712
|
-
* [Api set:
|
|
106713
|
-
* @beta
|
|
106552
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106714
106553
|
*/
|
|
106715
106554
|
tabPosition?: number;
|
|
106716
106555
|
/**
|
|
106717
106556
|
* Specifies the position (in points) for the second line of wrapping text for the specified list level object.
|
|
106718
106557
|
*
|
|
106719
106558
|
* @remarks
|
|
106720
|
-
* [Api set:
|
|
106721
|
-
* @beta
|
|
106559
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106722
106560
|
*/
|
|
106723
106561
|
textPosition?: number;
|
|
106724
106562
|
/**
|
|
106725
106563
|
* Specifies the character inserted after the number for the specified list level.
|
|
106726
106564
|
*
|
|
106727
106565
|
* @remarks
|
|
106728
|
-
* [Api set:
|
|
106729
|
-
* @beta
|
|
106566
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106730
106567
|
*/
|
|
106731
106568
|
trailingCharacter?: Word.TrailingCharacter | "TrailingTab" | "TrailingSpace" | "TrailingNone";
|
|
106732
106569
|
}
|
|
@@ -106737,37 +106574,35 @@ declare namespace Word {
|
|
|
106737
106574
|
/** An interface describing the data returned by calling `listTemplate.toJSON()`. */
|
|
106738
106575
|
interface ListTemplateData {
|
|
106739
106576
|
/**
|
|
106740
|
-
|
|
106741
|
-
|
|
106742
|
-
|
|
106743
|
-
|
|
106744
|
-
|
|
106745
|
-
*/
|
|
106577
|
+
* Gets a ListLevels collection that represents all the levels for the specified ListTemplate.
|
|
106578
|
+
*
|
|
106579
|
+
* @remarks
|
|
106580
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106581
|
+
*/
|
|
106746
106582
|
listLevels?: Word.Interfaces.ListLevelData[];
|
|
106747
106583
|
/**
|
|
106748
106584
|
* Specifies whether the specified ListTemplate object is outline numbered.
|
|
106749
106585
|
*
|
|
106750
106586
|
* @remarks
|
|
106751
|
-
* [Api set:
|
|
106752
|
-
* @beta
|
|
106587
|
+
* [Api set: WordApiDesktop 1.1]
|
|
106753
106588
|
*/
|
|
106754
106589
|
outlineNumbered?: boolean;
|
|
106755
106590
|
}
|
|
106756
106591
|
/** An interface describing the data returned by calling `noteItem.toJSON()`. */
|
|
106757
106592
|
interface NoteItemData {
|
|
106758
106593
|
/**
|
|
106759
|
-
|
|
106760
|
-
|
|
106761
|
-
|
|
106762
|
-
|
|
106763
|
-
|
|
106594
|
+
* Represents the body object of the note item. It's the portion of the text within the footnote or endnote.
|
|
106595
|
+
*
|
|
106596
|
+
* @remarks
|
|
106597
|
+
* [Api set: WordApi 1.5]
|
|
106598
|
+
*/
|
|
106764
106599
|
body?: Word.Interfaces.BodyData;
|
|
106765
106600
|
/**
|
|
106766
|
-
|
|
106767
|
-
|
|
106768
|
-
|
|
106769
|
-
|
|
106770
|
-
|
|
106601
|
+
* Represents a footnote or endnote reference in the main document.
|
|
106602
|
+
*
|
|
106603
|
+
* @remarks
|
|
106604
|
+
* [Api set: WordApi 1.5]
|
|
106605
|
+
*/
|
|
106771
106606
|
reference?: Word.Interfaces.RangeData;
|
|
106772
106607
|
/**
|
|
106773
106608
|
* Represents the note item type: footnote or endnote.
|
|
@@ -106784,39 +106619,39 @@ declare namespace Word {
|
|
|
106784
106619
|
/** An interface describing the data returned by calling `paragraph.toJSON()`. */
|
|
106785
106620
|
interface ParagraphData {
|
|
106786
106621
|
/**
|
|
106787
|
-
|
|
106788
|
-
|
|
106789
|
-
|
|
106790
|
-
|
|
106791
|
-
|
|
106622
|
+
* Gets the collection of fields in the paragraph.
|
|
106623
|
+
*
|
|
106624
|
+
* @remarks
|
|
106625
|
+
* [Api set: WordApi 1.4]
|
|
106626
|
+
*/
|
|
106792
106627
|
fields?: Word.Interfaces.FieldData[];
|
|
106793
106628
|
/**
|
|
106794
|
-
|
|
106795
|
-
|
|
106796
|
-
|
|
106797
|
-
|
|
106798
|
-
|
|
106629
|
+
* Gets the text format of the paragraph. Use this to get and set font name, size, color, and other properties.
|
|
106630
|
+
*
|
|
106631
|
+
* @remarks
|
|
106632
|
+
* [Api set: WordApi 1.1]
|
|
106633
|
+
*/
|
|
106799
106634
|
font?: Word.Interfaces.FontData;
|
|
106800
106635
|
/**
|
|
106801
|
-
|
|
106802
|
-
|
|
106803
|
-
|
|
106804
|
-
|
|
106805
|
-
|
|
106636
|
+
* Gets the collection of InlinePicture objects in the paragraph. The collection doesn't include floating images.
|
|
106637
|
+
*
|
|
106638
|
+
* @remarks
|
|
106639
|
+
* [Api set: WordApi 1.1]
|
|
106640
|
+
*/
|
|
106806
106641
|
inlinePictures?: Word.Interfaces.InlinePictureData[];
|
|
106807
106642
|
/**
|
|
106808
|
-
|
|
106809
|
-
|
|
106810
|
-
|
|
106811
|
-
|
|
106812
|
-
|
|
106643
|
+
* Gets the ListItem for the paragraph. Throws an `ItemNotFound` error if the paragraph isn't part of a list.
|
|
106644
|
+
*
|
|
106645
|
+
* @remarks
|
|
106646
|
+
* [Api set: WordApi 1.3]
|
|
106647
|
+
*/
|
|
106813
106648
|
listItem?: Word.Interfaces.ListItemData;
|
|
106814
106649
|
/**
|
|
106815
|
-
|
|
106816
|
-
|
|
106817
|
-
|
|
106818
|
-
|
|
106819
|
-
|
|
106650
|
+
* Gets the ListItem for the paragraph. If the paragraph isn't part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
106651
|
+
*
|
|
106652
|
+
* @remarks
|
|
106653
|
+
* [Api set: WordApi 1.3]
|
|
106654
|
+
*/
|
|
106820
106655
|
listItemOrNullObject?: Word.Interfaces.ListItemData;
|
|
106821
106656
|
/**
|
|
106822
106657
|
* Specifies the alignment for a paragraph. The value can be 'left', 'centered', 'right', or 'justified'.
|
|
@@ -107046,25 +106881,25 @@ declare namespace Word {
|
|
|
107046
106881
|
/** An interface describing the data returned by calling `range.toJSON()`. */
|
|
107047
106882
|
interface RangeData {
|
|
107048
106883
|
/**
|
|
107049
|
-
|
|
107050
|
-
|
|
107051
|
-
|
|
107052
|
-
|
|
107053
|
-
|
|
106884
|
+
* Gets the collection of field objects in the range.
|
|
106885
|
+
*
|
|
106886
|
+
* @remarks
|
|
106887
|
+
* [Api set: WordApi 1.4]
|
|
106888
|
+
*/
|
|
107054
106889
|
fields?: Word.Interfaces.FieldData[];
|
|
107055
106890
|
/**
|
|
107056
|
-
|
|
107057
|
-
|
|
107058
|
-
|
|
107059
|
-
|
|
107060
|
-
|
|
106891
|
+
* Gets the text format of the range. Use this to get and set font name, size, color, and other properties.
|
|
106892
|
+
*
|
|
106893
|
+
* @remarks
|
|
106894
|
+
* [Api set: WordApi 1.1]
|
|
106895
|
+
*/
|
|
107061
106896
|
font?: Word.Interfaces.FontData;
|
|
107062
106897
|
/**
|
|
107063
|
-
|
|
107064
|
-
|
|
107065
|
-
|
|
107066
|
-
|
|
107067
|
-
|
|
106898
|
+
* Gets the collection of inline picture objects in the range.
|
|
106899
|
+
*
|
|
106900
|
+
* @remarks
|
|
106901
|
+
* [Api set: WordApi 1.2]
|
|
106902
|
+
*/
|
|
107068
106903
|
inlinePictures?: Word.Interfaces.InlinePictureData[];
|
|
107069
106904
|
/**
|
|
107070
106905
|
* Gets the first hyperlink in the range, or sets a hyperlink on the range. All hyperlinks in the range are deleted when you set a new hyperlink on the range. Use a '#' to separate the address part from the optional location part.
|
|
@@ -107161,11 +106996,11 @@ declare namespace Word {
|
|
|
107161
106996
|
/** An interface describing the data returned by calling `section.toJSON()`. */
|
|
107162
106997
|
interface SectionData {
|
|
107163
106998
|
/**
|
|
107164
|
-
|
|
107165
|
-
|
|
107166
|
-
|
|
107167
|
-
|
|
107168
|
-
|
|
106999
|
+
* Gets the body object of the section. This doesn't include the header/footer and other section metadata.
|
|
107000
|
+
*
|
|
107001
|
+
* @remarks
|
|
107002
|
+
* [Api set: WordApi 1.1]
|
|
107003
|
+
*/
|
|
107169
107004
|
body?: Word.Interfaces.BodyData;
|
|
107170
107005
|
}
|
|
107171
107006
|
/** An interface describing the data returned by calling `sectionCollection.toJSON()`. */
|
|
@@ -107203,8 +107038,7 @@ declare namespace Word {
|
|
|
107203
107038
|
* Specifies a BorderCollection object that represents all the borders for the specified style.
|
|
107204
107039
|
*
|
|
107205
107040
|
* @remarks
|
|
107206
|
-
* [Api set:
|
|
107207
|
-
* @beta
|
|
107041
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107208
107042
|
*/
|
|
107209
107043
|
borders?: Word.Interfaces.BorderData[];
|
|
107210
107044
|
/**
|
|
@@ -107218,8 +107052,7 @@ declare namespace Word {
|
|
|
107218
107052
|
* Gets a ListTemplate object that represents the list formatting for the specified Style object.
|
|
107219
107053
|
*
|
|
107220
107054
|
* @remarks
|
|
107221
|
-
* [Api set:
|
|
107222
|
-
* @beta
|
|
107055
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107223
107056
|
*/
|
|
107224
107057
|
listTemplate?: Word.Interfaces.ListTemplateData;
|
|
107225
107058
|
/**
|
|
@@ -107346,48 +107179,46 @@ declare namespace Word {
|
|
|
107346
107179
|
* Specifies the color for the foreground of the object. You can provide the value in the '#RRGGBB' format or the color name.
|
|
107347
107180
|
*
|
|
107348
107181
|
* @remarks
|
|
107349
|
-
* [Api set:
|
|
107350
|
-
* @beta
|
|
107182
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107351
107183
|
*/
|
|
107352
107184
|
foregroundPatternColor?: string;
|
|
107353
107185
|
/**
|
|
107354
107186
|
* Specifies the shading texture of the object. To learn more about how to apply backgrounds like textures, see {@link https://support.microsoft.com/office/db481e61-7af6-4063-bbcd-b276054a5515 | Add, change, or delete the background color in Word}.
|
|
107355
107187
|
*
|
|
107356
107188
|
* @remarks
|
|
107357
|
-
* [Api set:
|
|
107358
|
-
* @beta
|
|
107189
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107359
107190
|
*/
|
|
107360
107191
|
texture?: Word.ShadingTextureType | "DarkDiagonalDown" | "DarkDiagonalUp" | "DarkGrid" | "DarkHorizontal" | "DarkTrellis" | "DarkVertical" | "LightDiagonalDown" | "LightDiagonalUp" | "LightGrid" | "LightHorizontal" | "LightTrellis" | "LightVertical" | "None" | "Percent10" | "Percent12Pt5" | "Percent15" | "Percent20" | "Percent25" | "Percent30" | "Percent35" | "Percent37Pt5" | "Percent40" | "Percent45" | "Percent5" | "Percent50" | "Percent55" | "Percent60" | "Percent62Pt5" | "Percent65" | "Percent70" | "Percent75" | "Percent80" | "Percent85" | "Percent87Pt5" | "Percent90" | "Percent95" | "Solid";
|
|
107361
107192
|
}
|
|
107362
107193
|
/** An interface describing the data returned by calling `table.toJSON()`. */
|
|
107363
107194
|
interface TableData {
|
|
107364
107195
|
/**
|
|
107365
|
-
|
|
107366
|
-
|
|
107367
|
-
|
|
107368
|
-
|
|
107369
|
-
|
|
107196
|
+
* Gets the collection of field objects in the table.
|
|
107197
|
+
*
|
|
107198
|
+
* @remarks
|
|
107199
|
+
* [Api set: WordApi 1.4]
|
|
107200
|
+
*/
|
|
107370
107201
|
fields?: Word.Interfaces.FieldData[];
|
|
107371
107202
|
/**
|
|
107372
|
-
|
|
107373
|
-
|
|
107374
|
-
|
|
107375
|
-
|
|
107376
|
-
|
|
107203
|
+
* Gets the font. Use this to get and set font name, size, color, and other properties.
|
|
107204
|
+
*
|
|
107205
|
+
* @remarks
|
|
107206
|
+
* [Api set: WordApi 1.3]
|
|
107207
|
+
*/
|
|
107377
107208
|
font?: Word.Interfaces.FontData;
|
|
107378
107209
|
/**
|
|
107379
|
-
|
|
107380
|
-
|
|
107381
|
-
|
|
107382
|
-
|
|
107383
|
-
|
|
107210
|
+
* Gets all of the table rows.
|
|
107211
|
+
*
|
|
107212
|
+
* @remarks
|
|
107213
|
+
* [Api set: WordApi 1.3]
|
|
107214
|
+
*/
|
|
107384
107215
|
rows?: Word.Interfaces.TableRowData[];
|
|
107385
107216
|
/**
|
|
107386
|
-
|
|
107387
|
-
|
|
107388
|
-
|
|
107389
|
-
|
|
107390
|
-
|
|
107217
|
+
* Gets the child tables nested one level deeper.
|
|
107218
|
+
*
|
|
107219
|
+
* @remarks
|
|
107220
|
+
* [Api set: WordApi 1.3]
|
|
107221
|
+
*/
|
|
107391
107222
|
tables?: Word.Interfaces.TableData[];
|
|
107392
107223
|
/**
|
|
107393
107224
|
* Specifies the alignment of the table against the page column. The value can be 'Left', 'Centered', or 'Right'.
|
|
@@ -107515,16 +107346,14 @@ declare namespace Word {
|
|
|
107515
107346
|
* Specifies the table's alignment against the page margin.
|
|
107516
107347
|
*
|
|
107517
107348
|
* @remarks
|
|
107518
|
-
* [Api set:
|
|
107519
|
-
* @beta
|
|
107349
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107520
107350
|
*/
|
|
107521
107351
|
alignment?: Word.Alignment | "Mixed" | "Unknown" | "Left" | "Centered" | "Right" | "Justified";
|
|
107522
107352
|
/**
|
|
107523
107353
|
* Specifies whether lines in tables formatted with a specified style break across pages.
|
|
107524
107354
|
*
|
|
107525
107355
|
* @remarks
|
|
107526
|
-
* [Api set:
|
|
107527
|
-
* @beta
|
|
107356
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107528
107357
|
*/
|
|
107529
107358
|
allowBreakAcrossPage?: boolean;
|
|
107530
107359
|
/**
|
|
@@ -107654,11 +107483,11 @@ declare namespace Word {
|
|
|
107654
107483
|
/** An interface describing the data returned by calling `tableCell.toJSON()`. */
|
|
107655
107484
|
interface TableCellData {
|
|
107656
107485
|
/**
|
|
107657
|
-
|
|
107658
|
-
|
|
107659
|
-
|
|
107660
|
-
|
|
107661
|
-
|
|
107486
|
+
* Gets the body object of the cell.
|
|
107487
|
+
*
|
|
107488
|
+
* @remarks
|
|
107489
|
+
* [Api set: WordApi 1.3]
|
|
107490
|
+
*/
|
|
107662
107491
|
body?: Word.Interfaces.BodyData;
|
|
107663
107492
|
/**
|
|
107664
107493
|
* Gets the index of the cell in its row.
|
|
@@ -107818,11 +107647,11 @@ declare namespace Word {
|
|
|
107818
107647
|
*/
|
|
107819
107648
|
$all?: boolean;
|
|
107820
107649
|
/**
|
|
107821
|
-
|
|
107822
|
-
|
|
107823
|
-
|
|
107824
|
-
|
|
107825
|
-
|
|
107650
|
+
* Gets the critique annotation object.
|
|
107651
|
+
*
|
|
107652
|
+
* @remarks
|
|
107653
|
+
* [Api set: WordApi 1.7]
|
|
107654
|
+
*/
|
|
107826
107655
|
critiqueAnnotation?: Word.Interfaces.CritiqueAnnotationLoadOptions;
|
|
107827
107656
|
/**
|
|
107828
107657
|
* Gets the unique identifier, which is meant to be used for easier tracking of Annotation objects.
|
|
@@ -107965,8 +107794,7 @@ declare namespace Word {
|
|
|
107965
107794
|
* Represents the Border object for text, a paragraph, or a table.
|
|
107966
107795
|
*
|
|
107967
107796
|
* @remarks
|
|
107968
|
-
* [Api set:
|
|
107969
|
-
* @beta
|
|
107797
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107970
107798
|
*/
|
|
107971
107799
|
interface BorderLoadOptions {
|
|
107972
107800
|
/**
|
|
@@ -107977,40 +107805,35 @@ declare namespace Word {
|
|
|
107977
107805
|
* Specifies the color for the border. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
107978
107806
|
*
|
|
107979
107807
|
* @remarks
|
|
107980
|
-
* [Api set:
|
|
107981
|
-
* @beta
|
|
107808
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107982
107809
|
*/
|
|
107983
107810
|
color?: boolean;
|
|
107984
107811
|
/**
|
|
107985
107812
|
* Gets the location of the border.
|
|
107986
107813
|
*
|
|
107987
107814
|
* @remarks
|
|
107988
|
-
* [Api set:
|
|
107989
|
-
* @beta
|
|
107815
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107990
107816
|
*/
|
|
107991
107817
|
location?: boolean;
|
|
107992
107818
|
/**
|
|
107993
107819
|
* Specifies the border type for the border.
|
|
107994
107820
|
*
|
|
107995
107821
|
* @remarks
|
|
107996
|
-
* [Api set:
|
|
107997
|
-
* @beta
|
|
107822
|
+
* [Api set: WordApiDesktop 1.1]
|
|
107998
107823
|
*/
|
|
107999
107824
|
type?: boolean;
|
|
108000
107825
|
/**
|
|
108001
107826
|
* Specifies whether the border is visible.
|
|
108002
107827
|
*
|
|
108003
107828
|
* @remarks
|
|
108004
|
-
* [Api set:
|
|
108005
|
-
* @beta
|
|
107829
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108006
107830
|
*/
|
|
108007
107831
|
visible?: boolean;
|
|
108008
107832
|
/**
|
|
108009
107833
|
* Specifies the width for the border.
|
|
108010
107834
|
*
|
|
108011
107835
|
* @remarks
|
|
108012
|
-
* [Api set:
|
|
108013
|
-
* @beta
|
|
107836
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108014
107837
|
*/
|
|
108015
107838
|
width?: boolean;
|
|
108016
107839
|
}
|
|
@@ -108018,8 +107841,7 @@ declare namespace Word {
|
|
|
108018
107841
|
* Represents the collection of border styles.
|
|
108019
107842
|
*
|
|
108020
107843
|
* @remarks
|
|
108021
|
-
* [Api set:
|
|
108022
|
-
* @beta
|
|
107844
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108023
107845
|
*/
|
|
108024
107846
|
interface BorderCollectionLoadOptions {
|
|
108025
107847
|
/**
|
|
@@ -108030,40 +107852,35 @@ declare namespace Word {
|
|
|
108030
107852
|
* For EACH ITEM in the collection: Specifies the color for the border. Color is specified in ‘#RRGGBB’ format or by using the color name.
|
|
108031
107853
|
*
|
|
108032
107854
|
* @remarks
|
|
108033
|
-
* [Api set:
|
|
108034
|
-
* @beta
|
|
107855
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108035
107856
|
*/
|
|
108036
107857
|
color?: boolean;
|
|
108037
107858
|
/**
|
|
108038
107859
|
* For EACH ITEM in the collection: Gets the location of the border.
|
|
108039
107860
|
*
|
|
108040
107861
|
* @remarks
|
|
108041
|
-
* [Api set:
|
|
108042
|
-
* @beta
|
|
107862
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108043
107863
|
*/
|
|
108044
107864
|
location?: boolean;
|
|
108045
107865
|
/**
|
|
108046
107866
|
* For EACH ITEM in the collection: Specifies the border type for the border.
|
|
108047
107867
|
*
|
|
108048
107868
|
* @remarks
|
|
108049
|
-
* [Api set:
|
|
108050
|
-
* @beta
|
|
107869
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108051
107870
|
*/
|
|
108052
107871
|
type?: boolean;
|
|
108053
107872
|
/**
|
|
108054
107873
|
* For EACH ITEM in the collection: Specifies whether the border is visible.
|
|
108055
107874
|
*
|
|
108056
107875
|
* @remarks
|
|
108057
|
-
* [Api set:
|
|
108058
|
-
* @beta
|
|
107876
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108059
107877
|
*/
|
|
108060
107878
|
visible?: boolean;
|
|
108061
107879
|
/**
|
|
108062
107880
|
* For EACH ITEM in the collection: Specifies the width for the border.
|
|
108063
107881
|
*
|
|
108064
107882
|
* @remarks
|
|
108065
|
-
* [Api set:
|
|
108066
|
-
* @beta
|
|
107883
|
+
* [Api set: WordApiDesktop 1.1]
|
|
108067
107884
|
*/
|
|
108068
107885
|
width?: boolean;
|
|
108069
107886
|
}
|
|
@@ -109268,8 +109085,7 @@ declare namespace Word {
|
|
|
109268
109085
|
* Specifies whether the field codes are displayed for the specified field. `true` if the field codes are displayed, `false` otherwise.
|
|
109269
109086
|
*
|
|
109270
109087
|
* @remarks
|
|
109271
|
-
* [Api set:
|
|
109272
|
-
* @beta
|
|
109088
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109273
109089
|
*/
|
|
109274
109090
|
showCodes?: boolean;
|
|
109275
109091
|
/**
|
|
@@ -109387,8 +109203,7 @@ declare namespace Word {
|
|
|
109387
109203
|
* For EACH ITEM in the collection: Specifies whether the field codes are displayed for the specified field. `true` if the field codes are displayed, `false` otherwise.
|
|
109388
109204
|
*
|
|
109389
109205
|
* @remarks
|
|
109390
|
-
* [Api set:
|
|
109391
|
-
* @beta
|
|
109206
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109392
109207
|
*/
|
|
109393
109208
|
showCodes?: boolean;
|
|
109394
109209
|
/**
|
|
@@ -109588,8 +109403,7 @@ declare namespace Word {
|
|
|
109588
109403
|
* Gets the format of the inline image.
|
|
109589
109404
|
*
|
|
109590
109405
|
* @remarks
|
|
109591
|
-
* [Api set:
|
|
109592
|
-
* @beta
|
|
109406
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109593
109407
|
*/
|
|
109594
109408
|
imageFormat?: boolean;
|
|
109595
109409
|
/**
|
|
@@ -109699,8 +109513,7 @@ declare namespace Word {
|
|
|
109699
109513
|
* For EACH ITEM in the collection: Gets the format of the inline image.
|
|
109700
109514
|
*
|
|
109701
109515
|
* @remarks
|
|
109702
|
-
* [Api set:
|
|
109703
|
-
* @beta
|
|
109516
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109704
109517
|
*/
|
|
109705
109518
|
imageFormat?: boolean;
|
|
109706
109519
|
/**
|
|
@@ -109821,8 +109634,7 @@ declare namespace Word {
|
|
|
109821
109634
|
* Represents a list level.
|
|
109822
109635
|
*
|
|
109823
109636
|
* @remarks
|
|
109824
|
-
* [Api set:
|
|
109825
|
-
* @beta
|
|
109637
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109826
109638
|
*/
|
|
109827
109639
|
interface ListLevelLoadOptions {
|
|
109828
109640
|
/**
|
|
@@ -109833,88 +109645,77 @@ declare namespace Word {
|
|
|
109833
109645
|
* Gets a Font object that represents the character formatting of the specified object.
|
|
109834
109646
|
*
|
|
109835
109647
|
* @remarks
|
|
109836
|
-
* [Api set:
|
|
109837
|
-
* @beta
|
|
109648
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109838
109649
|
*/
|
|
109839
109650
|
font?: Word.Interfaces.FontLoadOptions;
|
|
109840
109651
|
/**
|
|
109841
109652
|
* Specifies the horizontal alignment of the list level. The value can be 'Left', 'Centered', or 'Right'.
|
|
109842
109653
|
*
|
|
109843
109654
|
* @remarks
|
|
109844
|
-
* [Api set:
|
|
109845
|
-
* @beta
|
|
109655
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109846
109656
|
*/
|
|
109847
109657
|
alignment?: boolean;
|
|
109848
109658
|
/**
|
|
109849
109659
|
* Specifies the name of the style that's linked to the specified list level object.
|
|
109850
109660
|
*
|
|
109851
109661
|
* @remarks
|
|
109852
|
-
* [Api set:
|
|
109853
|
-
* @beta
|
|
109662
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109854
109663
|
*/
|
|
109855
109664
|
linkedStyle?: boolean;
|
|
109856
109665
|
/**
|
|
109857
109666
|
* Specifies the number format for the specified list level.
|
|
109858
109667
|
*
|
|
109859
109668
|
* @remarks
|
|
109860
|
-
* [Api set:
|
|
109861
|
-
* @beta
|
|
109669
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109862
109670
|
*/
|
|
109863
109671
|
numberFormat?: boolean;
|
|
109864
109672
|
/**
|
|
109865
109673
|
* Specifies the position (in points) of the number or bullet for the specified list level object.
|
|
109866
109674
|
*
|
|
109867
109675
|
* @remarks
|
|
109868
|
-
* [Api set:
|
|
109869
|
-
* @beta
|
|
109676
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109870
109677
|
*/
|
|
109871
109678
|
numberPosition?: boolean;
|
|
109872
109679
|
/**
|
|
109873
109680
|
* Specifies the number style for the list level object.
|
|
109874
109681
|
*
|
|
109875
109682
|
* @remarks
|
|
109876
|
-
* [Api set:
|
|
109877
|
-
* @beta
|
|
109683
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109878
109684
|
*/
|
|
109879
109685
|
numberStyle?: boolean;
|
|
109880
109686
|
/**
|
|
109881
109687
|
* Specifies the list level that must appear before the specified list level restarts numbering at 1.
|
|
109882
109688
|
*
|
|
109883
109689
|
* @remarks
|
|
109884
|
-
* [Api set:
|
|
109885
|
-
* @beta
|
|
109690
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109886
109691
|
*/
|
|
109887
109692
|
resetOnHigher?: boolean;
|
|
109888
109693
|
/**
|
|
109889
109694
|
* Specifies the starting number for the specified list level object.
|
|
109890
109695
|
*
|
|
109891
109696
|
* @remarks
|
|
109892
|
-
* [Api set:
|
|
109893
|
-
* @beta
|
|
109697
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109894
109698
|
*/
|
|
109895
109699
|
startAt?: boolean;
|
|
109896
109700
|
/**
|
|
109897
109701
|
* Specifies the tab position for the specified list level object.
|
|
109898
109702
|
*
|
|
109899
109703
|
* @remarks
|
|
109900
|
-
* [Api set:
|
|
109901
|
-
* @beta
|
|
109704
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109902
109705
|
*/
|
|
109903
109706
|
tabPosition?: boolean;
|
|
109904
109707
|
/**
|
|
109905
109708
|
* Specifies the position (in points) for the second line of wrapping text for the specified list level object.
|
|
109906
109709
|
*
|
|
109907
109710
|
* @remarks
|
|
109908
|
-
* [Api set:
|
|
109909
|
-
* @beta
|
|
109711
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109910
109712
|
*/
|
|
109911
109713
|
textPosition?: boolean;
|
|
109912
109714
|
/**
|
|
109913
109715
|
* Specifies the character inserted after the number for the specified list level.
|
|
109914
109716
|
*
|
|
109915
109717
|
* @remarks
|
|
109916
|
-
* [Api set:
|
|
109917
|
-
* @beta
|
|
109718
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109918
109719
|
*/
|
|
109919
109720
|
trailingCharacter?: boolean;
|
|
109920
109721
|
}
|
|
@@ -109922,8 +109723,7 @@ declare namespace Word {
|
|
|
109922
109723
|
* Contains a collection of {@link Word.ListLevel} objects.
|
|
109923
109724
|
*
|
|
109924
109725
|
* @remarks
|
|
109925
|
-
* [Api set:
|
|
109926
|
-
* @beta
|
|
109726
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109927
109727
|
*/
|
|
109928
109728
|
interface ListLevelCollectionLoadOptions {
|
|
109929
109729
|
/**
|
|
@@ -109934,88 +109734,77 @@ declare namespace Word {
|
|
|
109934
109734
|
* For EACH ITEM in the collection: Gets a Font object that represents the character formatting of the specified object.
|
|
109935
109735
|
*
|
|
109936
109736
|
* @remarks
|
|
109937
|
-
* [Api set:
|
|
109938
|
-
* @beta
|
|
109737
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109939
109738
|
*/
|
|
109940
109739
|
font?: Word.Interfaces.FontLoadOptions;
|
|
109941
109740
|
/**
|
|
109942
109741
|
* For EACH ITEM in the collection: Specifies the horizontal alignment of the list level. The value can be 'Left', 'Centered', or 'Right'.
|
|
109943
109742
|
*
|
|
109944
109743
|
* @remarks
|
|
109945
|
-
* [Api set:
|
|
109946
|
-
* @beta
|
|
109744
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109947
109745
|
*/
|
|
109948
109746
|
alignment?: boolean;
|
|
109949
109747
|
/**
|
|
109950
109748
|
* For EACH ITEM in the collection: Specifies the name of the style that's linked to the specified list level object.
|
|
109951
109749
|
*
|
|
109952
109750
|
* @remarks
|
|
109953
|
-
* [Api set:
|
|
109954
|
-
* @beta
|
|
109751
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109955
109752
|
*/
|
|
109956
109753
|
linkedStyle?: boolean;
|
|
109957
109754
|
/**
|
|
109958
109755
|
* For EACH ITEM in the collection: Specifies the number format for the specified list level.
|
|
109959
109756
|
*
|
|
109960
109757
|
* @remarks
|
|
109961
|
-
* [Api set:
|
|
109962
|
-
* @beta
|
|
109758
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109963
109759
|
*/
|
|
109964
109760
|
numberFormat?: boolean;
|
|
109965
109761
|
/**
|
|
109966
109762
|
* For EACH ITEM in the collection: Specifies the position (in points) of the number or bullet for the specified list level object.
|
|
109967
109763
|
*
|
|
109968
109764
|
* @remarks
|
|
109969
|
-
* [Api set:
|
|
109970
|
-
* @beta
|
|
109765
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109971
109766
|
*/
|
|
109972
109767
|
numberPosition?: boolean;
|
|
109973
109768
|
/**
|
|
109974
109769
|
* For EACH ITEM in the collection: Specifies the number style for the list level object.
|
|
109975
109770
|
*
|
|
109976
109771
|
* @remarks
|
|
109977
|
-
* [Api set:
|
|
109978
|
-
* @beta
|
|
109772
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109979
109773
|
*/
|
|
109980
109774
|
numberStyle?: boolean;
|
|
109981
109775
|
/**
|
|
109982
109776
|
* For EACH ITEM in the collection: Specifies the list level that must appear before the specified list level restarts numbering at 1.
|
|
109983
109777
|
*
|
|
109984
109778
|
* @remarks
|
|
109985
|
-
* [Api set:
|
|
109986
|
-
* @beta
|
|
109779
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109987
109780
|
*/
|
|
109988
109781
|
resetOnHigher?: boolean;
|
|
109989
109782
|
/**
|
|
109990
109783
|
* For EACH ITEM in the collection: Specifies the starting number for the specified list level object.
|
|
109991
109784
|
*
|
|
109992
109785
|
* @remarks
|
|
109993
|
-
* [Api set:
|
|
109994
|
-
* @beta
|
|
109786
|
+
* [Api set: WordApiDesktop 1.1]
|
|
109995
109787
|
*/
|
|
109996
109788
|
startAt?: boolean;
|
|
109997
109789
|
/**
|
|
109998
109790
|
* For EACH ITEM in the collection: Specifies the tab position for the specified list level object.
|
|
109999
109791
|
*
|
|
110000
109792
|
* @remarks
|
|
110001
|
-
* [Api set:
|
|
110002
|
-
* @beta
|
|
109793
|
+
* [Api set: WordApiDesktop 1.1]
|
|
110003
109794
|
*/
|
|
110004
109795
|
tabPosition?: boolean;
|
|
110005
109796
|
/**
|
|
110006
109797
|
* For EACH ITEM in the collection: Specifies the position (in points) for the second line of wrapping text for the specified list level object.
|
|
110007
109798
|
*
|
|
110008
109799
|
* @remarks
|
|
110009
|
-
* [Api set:
|
|
110010
|
-
* @beta
|
|
109800
|
+
* [Api set: WordApiDesktop 1.1]
|
|
110011
109801
|
*/
|
|
110012
109802
|
textPosition?: boolean;
|
|
110013
109803
|
/**
|
|
110014
109804
|
* For EACH ITEM in the collection: Specifies the character inserted after the number for the specified list level.
|
|
110015
109805
|
*
|
|
110016
109806
|
* @remarks
|
|
110017
|
-
* [Api set:
|
|
110018
|
-
* @beta
|
|
109807
|
+
* [Api set: WordApiDesktop 1.1]
|
|
110019
109808
|
*/
|
|
110020
109809
|
trailingCharacter?: boolean;
|
|
110021
109810
|
}
|
|
@@ -110023,8 +109812,7 @@ declare namespace Word {
|
|
|
110023
109812
|
* Represents a ListTemplate.
|
|
110024
109813
|
*
|
|
110025
109814
|
* @remarks
|
|
110026
|
-
* [Api set:
|
|
110027
|
-
* @beta
|
|
109815
|
+
* [Api set: WordApiDesktop 1.1]
|
|
110028
109816
|
*/
|
|
110029
109817
|
interface ListTemplateLoadOptions {
|
|
110030
109818
|
/**
|
|
@@ -110035,8 +109823,7 @@ declare namespace Word {
|
|
|
110035
109823
|
* Specifies whether the specified ListTemplate object is outline numbered.
|
|
110036
109824
|
*
|
|
110037
109825
|
* @remarks
|
|
110038
|
-
* [Api set:
|
|
110039
|
-
* @beta
|
|
109826
|
+
* [Api set: WordApiDesktop 1.1]
|
|
110040
109827
|
*/
|
|
110041
109828
|
outlineNumbered?: boolean;
|
|
110042
109829
|
}
|
|
@@ -111019,8 +110806,7 @@ declare namespace Word {
|
|
|
111019
110806
|
* For EACH ITEM in the collection: Specifies a BorderCollection object that represents all the borders for the specified style.
|
|
111020
110807
|
*
|
|
111021
110808
|
* @remarks
|
|
111022
|
-
* [Api set:
|
|
111023
|
-
* @beta
|
|
110809
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111024
110810
|
*/
|
|
111025
110811
|
borders?: Word.Interfaces.BorderCollectionLoadOptions;
|
|
111026
110812
|
/**
|
|
@@ -111034,8 +110820,7 @@ declare namespace Word {
|
|
|
111034
110820
|
* For EACH ITEM in the collection: Gets a ListTemplate object that represents the list formatting for the specified Style object.
|
|
111035
110821
|
*
|
|
111036
110822
|
* @remarks
|
|
111037
|
-
* [Api set:
|
|
111038
|
-
* @beta
|
|
110823
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111039
110824
|
*/
|
|
111040
110825
|
listTemplate?: Word.Interfaces.ListTemplateLoadOptions;
|
|
111041
110826
|
/**
|
|
@@ -111164,8 +110949,7 @@ declare namespace Word {
|
|
|
111164
110949
|
* Specifies a BorderCollection object that represents all the borders for the specified style.
|
|
111165
110950
|
*
|
|
111166
110951
|
* @remarks
|
|
111167
|
-
* [Api set:
|
|
111168
|
-
* @beta
|
|
110952
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111169
110953
|
*/
|
|
111170
110954
|
borders?: Word.Interfaces.BorderCollectionLoadOptions;
|
|
111171
110955
|
/**
|
|
@@ -111179,8 +110963,7 @@ declare namespace Word {
|
|
|
111179
110963
|
* Gets a ListTemplate object that represents the list formatting for the specified Style object.
|
|
111180
110964
|
*
|
|
111181
110965
|
* @remarks
|
|
111182
|
-
* [Api set:
|
|
111183
|
-
* @beta
|
|
110966
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111184
110967
|
*/
|
|
111185
110968
|
listTemplate?: Word.Interfaces.ListTemplateLoadOptions;
|
|
111186
110969
|
/**
|
|
@@ -111316,16 +111099,14 @@ declare namespace Word {
|
|
|
111316
111099
|
* Specifies the color for the foreground of the object. You can provide the value in the '#RRGGBB' format or the color name.
|
|
111317
111100
|
*
|
|
111318
111101
|
* @remarks
|
|
111319
|
-
* [Api set:
|
|
111320
|
-
* @beta
|
|
111102
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111321
111103
|
*/
|
|
111322
111104
|
foregroundPatternColor?: boolean;
|
|
111323
111105
|
/**
|
|
111324
111106
|
* Specifies the shading texture of the object. To learn more about how to apply backgrounds like textures, see {@link https://support.microsoft.com/office/db481e61-7af6-4063-bbcd-b276054a5515 | Add, change, or delete the background color in Word}.
|
|
111325
111107
|
*
|
|
111326
111108
|
* @remarks
|
|
111327
|
-
* [Api set:
|
|
111328
|
-
* @beta
|
|
111109
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111329
111110
|
*/
|
|
111330
111111
|
texture?: boolean;
|
|
111331
111112
|
}
|
|
@@ -111531,16 +111312,14 @@ declare namespace Word {
|
|
|
111531
111312
|
* Specifies the table's alignment against the page margin.
|
|
111532
111313
|
*
|
|
111533
111314
|
* @remarks
|
|
111534
|
-
* [Api set:
|
|
111535
|
-
* @beta
|
|
111315
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111536
111316
|
*/
|
|
111537
111317
|
alignment?: boolean;
|
|
111538
111318
|
/**
|
|
111539
111319
|
* Specifies whether lines in tables formatted with a specified style break across pages.
|
|
111540
111320
|
*
|
|
111541
111321
|
* @remarks
|
|
111542
|
-
* [Api set:
|
|
111543
|
-
* @beta
|
|
111322
|
+
* [Api set: WordApiDesktop 1.1]
|
|
111544
111323
|
*/
|
|
111545
111324
|
allowBreakAcrossPage?: boolean;
|
|
111546
111325
|
/**
|