@types/office-js-preview 1.0.443 → 1.0.444
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 +148 -225
- office-js-preview/package.json +2 -2
office-js-preview/index.d.ts
CHANGED
|
@@ -89248,43 +89248,37 @@ declare namespace Word {
|
|
|
89248
89248
|
* Represents the color scheme of a critique in the document, affecting underline and highlight.
|
|
89249
89249
|
*
|
|
89250
89250
|
* @remarks
|
|
89251
|
-
* [Api set: WordApi
|
|
89252
|
-
* @beta
|
|
89251
|
+
* [Api set: WordApi 1.7]
|
|
89253
89252
|
*/
|
|
89254
89253
|
enum CritiqueColorScheme {
|
|
89255
89254
|
/**
|
|
89256
89255
|
* Red color.
|
|
89257
89256
|
* @remarks
|
|
89258
|
-
* [Api set: WordApi
|
|
89259
|
-
* @beta
|
|
89257
|
+
* [Api set: WordApi 1.7]
|
|
89260
89258
|
*/
|
|
89261
89259
|
red = "Red",
|
|
89262
89260
|
/**
|
|
89263
89261
|
* Green color.
|
|
89264
89262
|
* @remarks
|
|
89265
|
-
* [Api set: WordApi
|
|
89266
|
-
* @beta
|
|
89263
|
+
* [Api set: WordApi 1.7]
|
|
89267
89264
|
*/
|
|
89268
89265
|
green = "Green",
|
|
89269
89266
|
/**
|
|
89270
89267
|
* Blue color.
|
|
89271
89268
|
* @remarks
|
|
89272
|
-
* [Api set: WordApi
|
|
89273
|
-
* @beta
|
|
89269
|
+
* [Api set: WordApi 1.7]
|
|
89274
89270
|
*/
|
|
89275
89271
|
blue = "Blue",
|
|
89276
89272
|
/**
|
|
89277
89273
|
* Lavender color.
|
|
89278
89274
|
* @remarks
|
|
89279
|
-
* [Api set: WordApi
|
|
89280
|
-
* @beta
|
|
89275
|
+
* [Api set: WordApi 1.7]
|
|
89281
89276
|
*/
|
|
89282
89277
|
lavender = "Lavender",
|
|
89283
89278
|
/**
|
|
89284
89279
|
* Berry color.
|
|
89285
89280
|
* @remarks
|
|
89286
|
-
* [Api set: WordApi
|
|
89287
|
-
* @beta
|
|
89281
|
+
* [Api set: WordApi 1.7]
|
|
89288
89282
|
*/
|
|
89289
89283
|
berry = "Berry",
|
|
89290
89284
|
}
|
|
@@ -89333,24 +89327,21 @@ declare namespace Word {
|
|
|
89333
89327
|
* Critique that will be rendered as underline for the specified part of paragraph in the document.
|
|
89334
89328
|
*
|
|
89335
89329
|
* @remarks
|
|
89336
|
-
* [Api set: WordApi
|
|
89337
|
-
* @beta
|
|
89330
|
+
* [Api set: WordApi 1.7]
|
|
89338
89331
|
*/
|
|
89339
89332
|
interface Critique {
|
|
89340
89333
|
/**
|
|
89341
89334
|
* Gets the color scheme of the critique.
|
|
89342
89335
|
*
|
|
89343
89336
|
* @remarks
|
|
89344
|
-
* [Api set: WordApi
|
|
89345
|
-
* @beta
|
|
89337
|
+
* [Api set: WordApi 1.7]
|
|
89346
89338
|
*/
|
|
89347
89339
|
colorScheme: Word.CritiqueColorScheme | "Red" | "Green" | "Blue" | "Lavender" | "Berry";
|
|
89348
89340
|
/**
|
|
89349
89341
|
* Gets the length of the critique inside paragraph.
|
|
89350
89342
|
*
|
|
89351
89343
|
* @remarks
|
|
89352
|
-
* [Api set: WordApi
|
|
89353
|
-
* @beta
|
|
89344
|
+
* [Api set: WordApi 1.7]
|
|
89354
89345
|
*/
|
|
89355
89346
|
length: number;
|
|
89356
89347
|
/**
|
|
@@ -89365,8 +89356,7 @@ declare namespace Word {
|
|
|
89365
89356
|
* Gets the start index of the critique inside paragraph.
|
|
89366
89357
|
*
|
|
89367
89358
|
* @remarks
|
|
89368
|
-
* [Api set: WordApi
|
|
89369
|
-
* @beta
|
|
89359
|
+
* [Api set: WordApi 1.7]
|
|
89370
89360
|
*/
|
|
89371
89361
|
start: number;
|
|
89372
89362
|
}
|
|
@@ -89374,8 +89364,7 @@ declare namespace Word {
|
|
|
89374
89364
|
* Represents an annotation wrapper around critique displayed in the document.
|
|
89375
89365
|
*
|
|
89376
89366
|
* @remarks
|
|
89377
|
-
* [Api set: WordApi
|
|
89378
|
-
* @beta
|
|
89367
|
+
* [Api set: WordApi 1.7]
|
|
89379
89368
|
*/
|
|
89380
89369
|
class CritiqueAnnotation extends OfficeExtension.ClientObject {
|
|
89381
89370
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -89384,32 +89373,28 @@ declare namespace Word {
|
|
|
89384
89373
|
* Gets the range of text that is annotated.
|
|
89385
89374
|
*
|
|
89386
89375
|
* @remarks
|
|
89387
|
-
* [Api set: WordApi
|
|
89388
|
-
* @beta
|
|
89376
|
+
* [Api set: WordApi 1.7]
|
|
89389
89377
|
*/
|
|
89390
89378
|
readonly range: Word.Range;
|
|
89391
89379
|
/**
|
|
89392
89380
|
* Gets the critique that was passed when the annotation was inserted.
|
|
89393
89381
|
*
|
|
89394
89382
|
* @remarks
|
|
89395
|
-
* [Api set: WordApi
|
|
89396
|
-
* @beta
|
|
89383
|
+
* [Api set: WordApi 1.7]
|
|
89397
89384
|
*/
|
|
89398
89385
|
readonly critique: Word.Critique;
|
|
89399
89386
|
/**
|
|
89400
89387
|
* Accepts the critique. This will change the annotation state to `accepted`.
|
|
89401
89388
|
*
|
|
89402
89389
|
* @remarks
|
|
89403
|
-
* [Api set: WordApi
|
|
89404
|
-
* @beta
|
|
89390
|
+
* [Api set: WordApi 1.7]
|
|
89405
89391
|
*/
|
|
89406
89392
|
accept(): void;
|
|
89407
89393
|
/**
|
|
89408
89394
|
* Rejects the critique. This will change the annotation state to `rejected`.
|
|
89409
89395
|
*
|
|
89410
89396
|
* @remarks
|
|
89411
|
-
* [Api set: WordApi
|
|
89412
|
-
* @beta
|
|
89397
|
+
* [Api set: WordApi 1.7]
|
|
89413
89398
|
*/
|
|
89414
89399
|
reject(): void;
|
|
89415
89400
|
/**
|
|
@@ -89438,7 +89423,7 @@ declare namespace Word {
|
|
|
89438
89423
|
*/
|
|
89439
89424
|
track(): Word.CritiqueAnnotation;
|
|
89440
89425
|
/**
|
|
89441
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
89426
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
89442
89427
|
*/
|
|
89443
89428
|
untrack(): Word.CritiqueAnnotation;
|
|
89444
89429
|
/**
|
|
@@ -89451,29 +89436,25 @@ declare namespace Word {
|
|
|
89451
89436
|
* Represents the state of the annotation.
|
|
89452
89437
|
*
|
|
89453
89438
|
* @remarks
|
|
89454
|
-
* [Api set: WordApi
|
|
89455
|
-
* @beta
|
|
89439
|
+
* [Api set: WordApi 1.7]
|
|
89456
89440
|
*/
|
|
89457
89441
|
enum AnnotationState {
|
|
89458
89442
|
/**
|
|
89459
89443
|
* Created.
|
|
89460
89444
|
* @remarks
|
|
89461
|
-
* [Api set: WordApi
|
|
89462
|
-
* @beta
|
|
89445
|
+
* [Api set: WordApi 1.7]
|
|
89463
89446
|
*/
|
|
89464
89447
|
created = "Created",
|
|
89465
89448
|
/**
|
|
89466
89449
|
* Accepted.
|
|
89467
89450
|
* @remarks
|
|
89468
|
-
* [Api set: WordApi
|
|
89469
|
-
* @beta
|
|
89451
|
+
* [Api set: WordApi 1.7]
|
|
89470
89452
|
*/
|
|
89471
89453
|
accepted = "Accepted",
|
|
89472
89454
|
/**
|
|
89473
89455
|
* Rejected.
|
|
89474
89456
|
* @remarks
|
|
89475
|
-
* [Api set: WordApi
|
|
89476
|
-
* @beta
|
|
89457
|
+
* [Api set: WordApi 1.7]
|
|
89477
89458
|
*/
|
|
89478
89459
|
rejected = "Rejected",
|
|
89479
89460
|
}
|
|
@@ -89481,16 +89462,14 @@ declare namespace Word {
|
|
|
89481
89462
|
* Annotations set produced by the add-in. Currently supporting only critiques.
|
|
89482
89463
|
*
|
|
89483
89464
|
* @remarks
|
|
89484
|
-
* [Api set: WordApi
|
|
89485
|
-
* @beta
|
|
89465
|
+
* [Api set: WordApi 1.7]
|
|
89486
89466
|
*/
|
|
89487
89467
|
interface AnnotationSet {
|
|
89488
89468
|
/**
|
|
89489
89469
|
* Critiques.
|
|
89490
89470
|
*
|
|
89491
89471
|
* @remarks
|
|
89492
|
-
* [Api set: WordApi
|
|
89493
|
-
* @beta
|
|
89472
|
+
* [Api set: WordApi 1.7]
|
|
89494
89473
|
*/
|
|
89495
89474
|
critiques: Word.Critique[];
|
|
89496
89475
|
}
|
|
@@ -89498,8 +89477,7 @@ declare namespace Word {
|
|
|
89498
89477
|
* Represents an annotation attached to a paragraph.
|
|
89499
89478
|
*
|
|
89500
89479
|
* @remarks
|
|
89501
|
-
* [Api set: WordApi
|
|
89502
|
-
* @beta
|
|
89480
|
+
* [Api set: WordApi 1.7]
|
|
89503
89481
|
*/
|
|
89504
89482
|
class Annotation extends OfficeExtension.ClientObject {
|
|
89505
89483
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -89508,32 +89486,28 @@ declare namespace Word {
|
|
|
89508
89486
|
* Gets the critique annotation object.
|
|
89509
89487
|
*
|
|
89510
89488
|
* @remarks
|
|
89511
|
-
* [Api set: WordApi
|
|
89512
|
-
* @beta
|
|
89489
|
+
* [Api set: WordApi 1.7]
|
|
89513
89490
|
*/
|
|
89514
89491
|
readonly critiqueAnnotation: Word.CritiqueAnnotation;
|
|
89515
89492
|
/**
|
|
89516
89493
|
* Gets the unique identifier, which is meant to be used for easier tracking of Annotation objects.
|
|
89517
89494
|
*
|
|
89518
89495
|
* @remarks
|
|
89519
|
-
* [Api set: WordApi
|
|
89520
|
-
* @beta
|
|
89496
|
+
* [Api set: WordApi 1.7]
|
|
89521
89497
|
*/
|
|
89522
89498
|
readonly id: string;
|
|
89523
89499
|
/**
|
|
89524
89500
|
* Gets the state of the annotation.
|
|
89525
89501
|
*
|
|
89526
89502
|
* @remarks
|
|
89527
|
-
* [Api set: WordApi
|
|
89528
|
-
* @beta
|
|
89503
|
+
* [Api set: WordApi 1.7]
|
|
89529
89504
|
*/
|
|
89530
89505
|
readonly state: Word.AnnotationState | "Created" | "Accepted" | "Rejected";
|
|
89531
89506
|
/**
|
|
89532
89507
|
* Deletes the annotation.
|
|
89533
89508
|
*
|
|
89534
89509
|
* @remarks
|
|
89535
|
-
* [Api set: WordApi
|
|
89536
|
-
* @beta
|
|
89510
|
+
* [Api set: WordApi 1.7]
|
|
89537
89511
|
*/
|
|
89538
89512
|
delete(): void;
|
|
89539
89513
|
/**
|
|
@@ -89562,7 +89536,7 @@ declare namespace Word {
|
|
|
89562
89536
|
*/
|
|
89563
89537
|
track(): Word.Annotation;
|
|
89564
89538
|
/**
|
|
89565
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
89539
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
89566
89540
|
*/
|
|
89567
89541
|
untrack(): Word.Annotation;
|
|
89568
89542
|
/**
|
|
@@ -89575,16 +89549,14 @@ declare namespace Word {
|
|
|
89575
89549
|
* Holds annotation information that is passed back on annotation added event.
|
|
89576
89550
|
*
|
|
89577
89551
|
* @remarks
|
|
89578
|
-
* [Api set: WordApi
|
|
89579
|
-
* @beta
|
|
89552
|
+
* [Api set: WordApi 1.7]
|
|
89580
89553
|
*/
|
|
89581
89554
|
interface AnnotationInsertedEventArgs {
|
|
89582
89555
|
/**
|
|
89583
89556
|
* Specifies the annotation IDs for which the event was fired.
|
|
89584
89557
|
*
|
|
89585
89558
|
* @remarks
|
|
89586
|
-
* [Api set: WordApi
|
|
89587
|
-
* @beta
|
|
89559
|
+
* [Api set: WordApi 1.7]
|
|
89588
89560
|
*/
|
|
89589
89561
|
ids: string[];
|
|
89590
89562
|
}
|
|
@@ -89592,16 +89564,14 @@ declare namespace Word {
|
|
|
89592
89564
|
* Holds annotation information that is passed back on annotation inserted event.
|
|
89593
89565
|
*
|
|
89594
89566
|
* @remarks
|
|
89595
|
-
* [Api set: WordApi
|
|
89596
|
-
* @beta
|
|
89567
|
+
* [Api set: WordApi 1.7]
|
|
89597
89568
|
*/
|
|
89598
89569
|
interface AnnotationClickedEventArgs {
|
|
89599
89570
|
/**
|
|
89600
89571
|
* Specifies the annotation ID for which the event was fired.
|
|
89601
89572
|
*
|
|
89602
89573
|
* @remarks
|
|
89603
|
-
* [Api set: WordApi
|
|
89604
|
-
* @beta
|
|
89574
|
+
* [Api set: WordApi 1.7]
|
|
89605
89575
|
*/
|
|
89606
89576
|
id: string;
|
|
89607
89577
|
}
|
|
@@ -89609,16 +89579,14 @@ declare namespace Word {
|
|
|
89609
89579
|
* Holds annotation information that is passed back on annotation removed event.
|
|
89610
89580
|
*
|
|
89611
89581
|
* @remarks
|
|
89612
|
-
* [Api set: WordApi
|
|
89613
|
-
* @beta
|
|
89582
|
+
* [Api set: WordApi 1.7]
|
|
89614
89583
|
*/
|
|
89615
89584
|
interface AnnotationRemovedEventArgs {
|
|
89616
89585
|
/**
|
|
89617
89586
|
* Specifies the annotation IDs for which the event was fired.
|
|
89618
89587
|
*
|
|
89619
89588
|
* @remarks
|
|
89620
|
-
* [Api set: WordApi
|
|
89621
|
-
* @beta
|
|
89589
|
+
* [Api set: WordApi 1.7]
|
|
89622
89590
|
*/
|
|
89623
89591
|
ids: string[];
|
|
89624
89592
|
}
|
|
@@ -89626,16 +89594,14 @@ declare namespace Word {
|
|
|
89626
89594
|
* Holds annotation information that is passed back on annotation hovered event.
|
|
89627
89595
|
*
|
|
89628
89596
|
* @remarks
|
|
89629
|
-
* [Api set: WordApi
|
|
89630
|
-
* @beta
|
|
89597
|
+
* [Api set: WordApi 1.7]
|
|
89631
89598
|
*/
|
|
89632
89599
|
interface AnnotationHoveredEventArgs {
|
|
89633
89600
|
/**
|
|
89634
89601
|
* Specifies the annotation ID for which the event was fired.
|
|
89635
89602
|
*
|
|
89636
89603
|
* @remarks
|
|
89637
|
-
* [Api set: WordApi
|
|
89638
|
-
* @beta
|
|
89604
|
+
* [Api set: WordApi 1.7]
|
|
89639
89605
|
*/
|
|
89640
89606
|
id: string;
|
|
89641
89607
|
}
|
|
@@ -89656,7 +89622,7 @@ declare namespace Word {
|
|
|
89656
89622
|
*/
|
|
89657
89623
|
action: string;
|
|
89658
89624
|
/**
|
|
89659
|
-
* Specifies the suggestion
|
|
89625
|
+
* Specifies the accepted suggestion (only populated when accepting a critique suggestion).
|
|
89660
89626
|
*
|
|
89661
89627
|
* @remarks
|
|
89662
89628
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
@@ -89676,8 +89642,7 @@ declare namespace Word {
|
|
|
89676
89642
|
* Contains a collection of {@link Word.Annotation} objects.
|
|
89677
89643
|
*
|
|
89678
89644
|
* @remarks
|
|
89679
|
-
* [Api set: WordApi
|
|
89680
|
-
* @beta
|
|
89645
|
+
* [Api set: WordApi 1.7]
|
|
89681
89646
|
*/
|
|
89682
89647
|
class AnnotationCollection extends OfficeExtension.ClientObject {
|
|
89683
89648
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -89688,8 +89653,7 @@ declare namespace Word {
|
|
|
89688
89653
|
* Gets the first annotation in this collection. Throws an `ItemNotFound` error if this collection is empty.
|
|
89689
89654
|
*
|
|
89690
89655
|
* @remarks
|
|
89691
|
-
* [Api set: WordApi
|
|
89692
|
-
* @beta
|
|
89656
|
+
* [Api set: WordApi 1.7]
|
|
89693
89657
|
*/
|
|
89694
89658
|
getFirst(): Word.Annotation;
|
|
89695
89659
|
/**
|
|
@@ -89698,8 +89662,7 @@ declare namespace Word {
|
|
|
89698
89662
|
see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89699
89663
|
*
|
|
89700
89664
|
* @remarks
|
|
89701
|
-
* [Api set: WordApi
|
|
89702
|
-
* @beta
|
|
89665
|
+
* [Api set: WordApi 1.7]
|
|
89703
89666
|
*/
|
|
89704
89667
|
getFirstOrNullObject(): Word.Annotation;
|
|
89705
89668
|
/**
|
|
@@ -89725,7 +89688,7 @@ declare namespace Word {
|
|
|
89725
89688
|
*/
|
|
89726
89689
|
track(): Word.AnnotationCollection;
|
|
89727
89690
|
/**
|
|
89728
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
89691
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
89729
89692
|
*/
|
|
89730
89693
|
untrack(): Word.AnnotationCollection;
|
|
89731
89694
|
/**
|
|
@@ -90032,7 +89995,7 @@ declare namespace Word {
|
|
|
90032
89995
|
* @remarks
|
|
90033
89996
|
* [Api set: WordApi 1.1]
|
|
90034
89997
|
*
|
|
90035
|
-
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support
|
|
89998
|
+
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support was added in WordApi 1.7.
|
|
90036
89999
|
*
|
|
90037
90000
|
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', or 'CheckBox'. The default is 'RichText'.
|
|
90038
90001
|
*/
|
|
@@ -90223,7 +90186,7 @@ declare namespace Word {
|
|
|
90223
90186
|
*/
|
|
90224
90187
|
track(): Word.Body;
|
|
90225
90188
|
/**
|
|
90226
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90189
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90227
90190
|
*/
|
|
90228
90191
|
untrack(): Word.Body;
|
|
90229
90192
|
/**
|
|
@@ -90316,7 +90279,7 @@ declare namespace Word {
|
|
|
90316
90279
|
*/
|
|
90317
90280
|
track(): Word.Border;
|
|
90318
90281
|
/**
|
|
90319
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90282
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90320
90283
|
*/
|
|
90321
90284
|
untrack(): Word.Border;
|
|
90322
90285
|
/**
|
|
@@ -90442,7 +90405,7 @@ declare namespace Word {
|
|
|
90442
90405
|
*/
|
|
90443
90406
|
track(): Word.BorderCollection;
|
|
90444
90407
|
/**
|
|
90445
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90408
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90446
90409
|
*/
|
|
90447
90410
|
untrack(): Word.BorderCollection;
|
|
90448
90411
|
/**
|
|
@@ -90455,8 +90418,7 @@ declare namespace Word {
|
|
|
90455
90418
|
* The data specific to content controls of type CheckBox.
|
|
90456
90419
|
*
|
|
90457
90420
|
* @remarks
|
|
90458
|
-
* [Api set: WordApi
|
|
90459
|
-
* @beta
|
|
90421
|
+
* [Api set: WordApi 1.7]
|
|
90460
90422
|
*/
|
|
90461
90423
|
class CheckboxContentControl extends OfficeExtension.ClientObject {
|
|
90462
90424
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
@@ -90465,8 +90427,7 @@ declare namespace Word {
|
|
|
90465
90427
|
* Specifies the current state of the checkbox.
|
|
90466
90428
|
*
|
|
90467
90429
|
* @remarks
|
|
90468
|
-
* [Api set: WordApi
|
|
90469
|
-
* @beta
|
|
90430
|
+
* [Api set: WordApi 1.7]
|
|
90470
90431
|
*/
|
|
90471
90432
|
isChecked: boolean;
|
|
90472
90433
|
/**
|
|
@@ -90503,7 +90464,7 @@ declare namespace Word {
|
|
|
90503
90464
|
*/
|
|
90504
90465
|
track(): Word.CheckboxContentControl;
|
|
90505
90466
|
/**
|
|
90506
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90467
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90507
90468
|
*/
|
|
90508
90469
|
untrack(): Word.CheckboxContentControl;
|
|
90509
90470
|
/**
|
|
@@ -90634,7 +90595,7 @@ declare namespace Word {
|
|
|
90634
90595
|
*/
|
|
90635
90596
|
track(): Word.Comment;
|
|
90636
90597
|
/**
|
|
90637
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90598
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90638
90599
|
*/
|
|
90639
90600
|
untrack(): Word.Comment;
|
|
90640
90601
|
/**
|
|
@@ -90691,7 +90652,7 @@ declare namespace Word {
|
|
|
90691
90652
|
*/
|
|
90692
90653
|
track(): Word.CommentCollection;
|
|
90693
90654
|
/**
|
|
90694
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90655
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90695
90656
|
*/
|
|
90696
90657
|
untrack(): Word.CommentCollection;
|
|
90697
90658
|
/**
|
|
@@ -90800,7 +90761,7 @@ declare namespace Word {
|
|
|
90800
90761
|
*/
|
|
90801
90762
|
track(): Word.CommentContentRange;
|
|
90802
90763
|
/**
|
|
90803
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90764
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90804
90765
|
*/
|
|
90805
90766
|
untrack(): Word.CommentContentRange;
|
|
90806
90767
|
/**
|
|
@@ -90908,7 +90869,7 @@ declare namespace Word {
|
|
|
90908
90869
|
*/
|
|
90909
90870
|
track(): Word.CommentReply;
|
|
90910
90871
|
/**
|
|
90911
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90872
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90912
90873
|
*/
|
|
90913
90874
|
untrack(): Word.CommentReply;
|
|
90914
90875
|
/**
|
|
@@ -90965,7 +90926,7 @@ declare namespace Word {
|
|
|
90965
90926
|
*/
|
|
90966
90927
|
track(): Word.CommentReplyCollection;
|
|
90967
90928
|
/**
|
|
90968
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
90929
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
90969
90930
|
*/
|
|
90970
90931
|
untrack(): Word.CommentReplyCollection;
|
|
90971
90932
|
/**
|
|
@@ -90987,8 +90948,7 @@ declare namespace Word {
|
|
|
90987
90948
|
* Specifies the checkbox-related data if the content control's type is 'CheckBox'. It's null otherwise.
|
|
90988
90949
|
*
|
|
90989
90950
|
* @remarks
|
|
90990
|
-
* [Api set: WordApi
|
|
90991
|
-
* @beta
|
|
90951
|
+
* [Api set: WordApi 1.7]
|
|
90992
90952
|
*/
|
|
90993
90953
|
readonly checkboxContentControl: Word.CheckboxContentControl;
|
|
90994
90954
|
/**
|
|
@@ -91550,7 +91510,7 @@ declare namespace Word {
|
|
|
91550
91510
|
*/
|
|
91551
91511
|
track(): Word.ContentControl;
|
|
91552
91512
|
/**
|
|
91553
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
91513
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
91554
91514
|
*/
|
|
91555
91515
|
untrack(): Word.ContentControl;
|
|
91556
91516
|
/**
|
|
@@ -91670,7 +91630,7 @@ declare namespace Word {
|
|
|
91670
91630
|
*/
|
|
91671
91631
|
track(): Word.ContentControlCollection;
|
|
91672
91632
|
/**
|
|
91673
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
91633
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
91674
91634
|
*/
|
|
91675
91635
|
untrack(): Word.ContentControlCollection;
|
|
91676
91636
|
/**
|
|
@@ -91691,7 +91651,8 @@ declare namespace Word {
|
|
|
91691
91651
|
*
|
|
91692
91652
|
* @remarks
|
|
91693
91653
|
* [Api set: WordApi 1.5]
|
|
91694
|
-
*
|
|
91654
|
+
*
|
|
91655
|
+
* Note: `PlainText` support was added in WordApi 1.5. `CheckBox` support was added in WordApi 1.7.
|
|
91695
91656
|
*/
|
|
91696
91657
|
types: Word.ContentControlType[];
|
|
91697
91658
|
}
|
|
@@ -91766,13 +91727,13 @@ declare namespace Word {
|
|
|
91766
91727
|
*/
|
|
91767
91728
|
track(): Word.CustomProperty;
|
|
91768
91729
|
/**
|
|
91769
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
91730
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
91770
91731
|
*/
|
|
91771
91732
|
untrack(): Word.CustomProperty;
|
|
91772
91733
|
/**
|
|
91773
|
-
|
|
91774
|
-
|
|
91775
|
-
|
|
91734
|
+
* 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.)
|
|
91735
|
+
* Whereas the original Word.CustomProperty object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CustomPropertyData`) that contains shallow copies of any loaded child properties from the original object.
|
|
91736
|
+
*/
|
|
91776
91737
|
toJSON(): Word.Interfaces.CustomPropertyData;
|
|
91777
91738
|
}
|
|
91778
91739
|
/**
|
|
@@ -91851,13 +91812,13 @@ declare namespace Word {
|
|
|
91851
91812
|
*/
|
|
91852
91813
|
track(): Word.CustomPropertyCollection;
|
|
91853
91814
|
/**
|
|
91854
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
91815
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
91855
91816
|
*/
|
|
91856
91817
|
untrack(): Word.CustomPropertyCollection;
|
|
91857
91818
|
/**
|
|
91858
|
-
|
|
91859
|
-
|
|
91860
|
-
|
|
91819
|
+
* 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.)
|
|
91820
|
+
* Whereas the original `Word.CustomPropertyCollection` object is an API object, the `toJSON` method returns a plain JavaScript object (typed as `Word.Interfaces.CustomPropertyCollectionData`) that contains an "items" array with shallow copies of any loaded properties from the collection's items.
|
|
91821
|
+
*/
|
|
91861
91822
|
toJSON(): Word.Interfaces.CustomPropertyCollectionData;
|
|
91862
91823
|
}
|
|
91863
91824
|
/**
|
|
@@ -92130,7 +92091,7 @@ declare namespace Word {
|
|
|
92130
92091
|
*/
|
|
92131
92092
|
track(): Word.CustomXmlPart;
|
|
92132
92093
|
/**
|
|
92133
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
92094
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
92134
92095
|
*/
|
|
92135
92096
|
untrack(): Word.CustomXmlPart;
|
|
92136
92097
|
/**
|
|
@@ -92216,7 +92177,7 @@ declare namespace Word {
|
|
|
92216
92177
|
*/
|
|
92217
92178
|
track(): Word.CustomXmlPartCollection;
|
|
92218
92179
|
/**
|
|
92219
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
92180
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
92220
92181
|
*/
|
|
92221
92182
|
untrack(): Word.CustomXmlPartCollection;
|
|
92222
92183
|
/**
|
|
@@ -92298,7 +92259,7 @@ declare namespace Word {
|
|
|
92298
92259
|
*/
|
|
92299
92260
|
track(): Word.CustomXmlPartScopedCollection;
|
|
92300
92261
|
/**
|
|
92301
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
92262
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
92302
92263
|
*/
|
|
92303
92264
|
untrack(): Word.CustomXmlPartScopedCollection;
|
|
92304
92265
|
/**
|
|
@@ -92442,8 +92403,7 @@ declare namespace Word {
|
|
|
92442
92403
|
* Gets the annotation by ID. Throws an `ItemNotFound` error if annotation isn't found.
|
|
92443
92404
|
*
|
|
92444
92405
|
* @remarks
|
|
92445
|
-
* [Api set: WordApi
|
|
92446
|
-
* @beta
|
|
92406
|
+
* [Api set: WordApi 1.7]
|
|
92447
92407
|
*
|
|
92448
92408
|
* @param id The ID of the annotation to get.
|
|
92449
92409
|
*/
|
|
@@ -92567,7 +92527,7 @@ declare namespace Word {
|
|
|
92567
92527
|
* Performs a search with the specified search options on the scope of the whole document. The search results are a collection of range objects.
|
|
92568
92528
|
*
|
|
92569
92529
|
* @remarks
|
|
92570
|
-
* [Api set:
|
|
92530
|
+
* [Api set: WordApi 1.7]
|
|
92571
92531
|
*/
|
|
92572
92532
|
search(searchText: string, searchOptions?: Word.SearchOptions | {
|
|
92573
92533
|
ignorePunct?: boolean;
|
|
@@ -92603,30 +92563,27 @@ declare namespace Word {
|
|
|
92603
92563
|
* Occurs when the user clicks an annotation (or selects it using **Alt+Down**).
|
|
92604
92564
|
*
|
|
92605
92565
|
* @remarks
|
|
92606
|
-
* [Api set: WordApi
|
|
92566
|
+
* [Api set: WordApi 1.7]
|
|
92607
92567
|
*
|
|
92608
92568
|
* @eventproperty
|
|
92609
|
-
* @beta
|
|
92610
92569
|
*/
|
|
92611
92570
|
readonly onAnnotationClicked: OfficeExtension.EventHandlers<Word.AnnotationClickedEventArgs>;
|
|
92612
92571
|
/**
|
|
92613
92572
|
* Occurs when the user hovers the cursor over an annotation.
|
|
92614
92573
|
*
|
|
92615
92574
|
* @remarks
|
|
92616
|
-
* [Api set: WordApi
|
|
92575
|
+
* [Api set: WordApi 1.7]
|
|
92617
92576
|
*
|
|
92618
92577
|
* @eventproperty
|
|
92619
|
-
* @beta
|
|
92620
92578
|
*/
|
|
92621
92579
|
readonly onAnnotationHovered: OfficeExtension.EventHandlers<Word.AnnotationHoveredEventArgs>;
|
|
92622
92580
|
/**
|
|
92623
92581
|
* Occurs when the user adds one or more annotations.
|
|
92624
92582
|
*
|
|
92625
92583
|
* @remarks
|
|
92626
|
-
* [Api set: WordApi
|
|
92584
|
+
* [Api set: WordApi 1.7]
|
|
92627
92585
|
*
|
|
92628
92586
|
* @eventproperty
|
|
92629
|
-
* @beta
|
|
92630
92587
|
*/
|
|
92631
92588
|
readonly onAnnotationInserted: OfficeExtension.EventHandlers<Word.AnnotationInsertedEventArgs>;
|
|
92632
92589
|
/**
|
|
@@ -92643,10 +92600,9 @@ declare namespace Word {
|
|
|
92643
92600
|
* Occurs when the user deletes one or more annotations.
|
|
92644
92601
|
*
|
|
92645
92602
|
* @remarks
|
|
92646
|
-
* [Api set: WordApi
|
|
92603
|
+
* [Api set: WordApi 1.7]
|
|
92647
92604
|
*
|
|
92648
92605
|
* @eventproperty
|
|
92649
|
-
* @beta
|
|
92650
92606
|
*/
|
|
92651
92607
|
readonly onAnnotationRemoved: OfficeExtension.EventHandlers<Word.AnnotationRemovedEventArgs>;
|
|
92652
92608
|
/**
|
|
@@ -92690,7 +92646,7 @@ declare namespace Word {
|
|
|
92690
92646
|
*/
|
|
92691
92647
|
track(): Word.Document;
|
|
92692
92648
|
/**
|
|
92693
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
92649
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
92694
92650
|
*/
|
|
92695
92651
|
untrack(): Word.Document;
|
|
92696
92652
|
/**
|
|
@@ -92903,7 +92859,7 @@ declare namespace Word {
|
|
|
92903
92859
|
*/
|
|
92904
92860
|
track(): Word.DocumentCreated;
|
|
92905
92861
|
/**
|
|
92906
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
92862
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
92907
92863
|
*/
|
|
92908
92864
|
untrack(): Word.DocumentCreated;
|
|
92909
92865
|
/**
|
|
@@ -93081,7 +93037,7 @@ declare namespace Word {
|
|
|
93081
93037
|
*/
|
|
93082
93038
|
track(): Word.DocumentProperties;
|
|
93083
93039
|
/**
|
|
93084
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
93040
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
93085
93041
|
*/
|
|
93086
93042
|
untrack(): Word.DocumentProperties;
|
|
93087
93043
|
/**
|
|
@@ -93282,7 +93238,7 @@ declare namespace Word {
|
|
|
93282
93238
|
*/
|
|
93283
93239
|
track(): Word.Field;
|
|
93284
93240
|
/**
|
|
93285
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
93241
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
93286
93242
|
*/
|
|
93287
93243
|
untrack(): Word.Field;
|
|
93288
93244
|
/**
|
|
@@ -93350,7 +93306,7 @@ declare namespace Word {
|
|
|
93350
93306
|
*/
|
|
93351
93307
|
track(): Word.FieldCollection;
|
|
93352
93308
|
/**
|
|
93353
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
93309
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
93354
93310
|
*/
|
|
93355
93311
|
untrack(): Word.FieldCollection;
|
|
93356
93312
|
/**
|
|
@@ -93487,7 +93443,7 @@ declare namespace Word {
|
|
|
93487
93443
|
*/
|
|
93488
93444
|
track(): Word.Font;
|
|
93489
93445
|
/**
|
|
93490
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
93446
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
93491
93447
|
*/
|
|
93492
93448
|
untrack(): Word.Font;
|
|
93493
93449
|
/**
|
|
@@ -93772,7 +93728,7 @@ declare namespace Word {
|
|
|
93772
93728
|
*/
|
|
93773
93729
|
track(): Word.InlinePicture;
|
|
93774
93730
|
/**
|
|
93775
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
93731
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
93776
93732
|
*/
|
|
93777
93733
|
untrack(): Word.InlinePicture;
|
|
93778
93734
|
/**
|
|
@@ -93829,7 +93785,7 @@ declare namespace Word {
|
|
|
93829
93785
|
*/
|
|
93830
93786
|
track(): Word.InlinePictureCollection;
|
|
93831
93787
|
/**
|
|
93832
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
93788
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
93833
93789
|
*/
|
|
93834
93790
|
untrack(): Word.InlinePictureCollection;
|
|
93835
93791
|
/**
|
|
@@ -94058,7 +94014,7 @@ declare namespace Word {
|
|
|
94058
94014
|
*/
|
|
94059
94015
|
track(): Word.List;
|
|
94060
94016
|
/**
|
|
94061
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94017
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94062
94018
|
*/
|
|
94063
94019
|
untrack(): Word.List;
|
|
94064
94020
|
/**
|
|
@@ -94142,7 +94098,7 @@ declare namespace Word {
|
|
|
94142
94098
|
*/
|
|
94143
94099
|
track(): Word.ListCollection;
|
|
94144
94100
|
/**
|
|
94145
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94101
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94146
94102
|
*/
|
|
94147
94103
|
untrack(): Word.ListCollection;
|
|
94148
94104
|
/**
|
|
@@ -94242,7 +94198,7 @@ declare namespace Word {
|
|
|
94242
94198
|
*/
|
|
94243
94199
|
track(): Word.ListItem;
|
|
94244
94200
|
/**
|
|
94245
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94201
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94246
94202
|
*/
|
|
94247
94203
|
untrack(): Word.ListItem;
|
|
94248
94204
|
/**
|
|
@@ -94383,7 +94339,7 @@ declare namespace Word {
|
|
|
94383
94339
|
*/
|
|
94384
94340
|
track(): Word.ListLevel;
|
|
94385
94341
|
/**
|
|
94386
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94342
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94387
94343
|
*/
|
|
94388
94344
|
untrack(): Word.ListLevel;
|
|
94389
94345
|
/**
|
|
@@ -94443,7 +94399,7 @@ declare namespace Word {
|
|
|
94443
94399
|
*/
|
|
94444
94400
|
track(): Word.ListLevelCollection;
|
|
94445
94401
|
/**
|
|
94446
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94402
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94447
94403
|
*/
|
|
94448
94404
|
untrack(): Word.ListLevelCollection;
|
|
94449
94405
|
/**
|
|
@@ -94512,7 +94468,7 @@ declare namespace Word {
|
|
|
94512
94468
|
*/
|
|
94513
94469
|
track(): Word.ListTemplate;
|
|
94514
94470
|
/**
|
|
94515
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94471
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94516
94472
|
*/
|
|
94517
94473
|
untrack(): Word.ListTemplate;
|
|
94518
94474
|
/**
|
|
@@ -94606,7 +94562,7 @@ declare namespace Word {
|
|
|
94606
94562
|
*/
|
|
94607
94563
|
track(): Word.NoteItem;
|
|
94608
94564
|
/**
|
|
94609
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94565
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94610
94566
|
*/
|
|
94611
94567
|
untrack(): Word.NoteItem;
|
|
94612
94568
|
/**
|
|
@@ -94663,7 +94619,7 @@ declare namespace Word {
|
|
|
94663
94619
|
*/
|
|
94664
94620
|
track(): Word.NoteItemCollection;
|
|
94665
94621
|
/**
|
|
94666
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
94622
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
94667
94623
|
*/
|
|
94668
94624
|
untrack(): Word.NoteItemCollection;
|
|
94669
94625
|
/**
|
|
@@ -94962,8 +94918,7 @@ declare namespace Word {
|
|
|
94962
94918
|
* Gets annotations set on this Paragraph object.
|
|
94963
94919
|
*
|
|
94964
94920
|
* @remarks
|
|
94965
|
-
* [Api set: WordApi
|
|
94966
|
-
* @beta
|
|
94921
|
+
* [Api set: WordApi 1.7]
|
|
94967
94922
|
*/
|
|
94968
94923
|
getAnnotations(): Word.AnnotationCollection;
|
|
94969
94924
|
/**
|
|
@@ -95060,8 +95015,7 @@ declare namespace Word {
|
|
|
95060
95015
|
By default, hidden text and text marked as deleted are excluded.
|
|
95061
95016
|
*
|
|
95062
95017
|
* @remarks
|
|
95063
|
-
* [Api set: WordApi
|
|
95064
|
-
* @beta
|
|
95018
|
+
* [Api set: WordApi 1.7]
|
|
95065
95019
|
*
|
|
95066
95020
|
* @param options Optional. Options that define whether the final result should include hidden text and text marked as deleted.
|
|
95067
95021
|
*/
|
|
@@ -95090,8 +95044,7 @@ declare namespace Word {
|
|
|
95090
95044
|
* Inserts annotations on this Paragraph object.
|
|
95091
95045
|
*
|
|
95092
95046
|
* @remarks
|
|
95093
|
-
* [Api set: WordApi
|
|
95094
|
-
* @beta
|
|
95047
|
+
* [Api set: WordApi 1.7]
|
|
95095
95048
|
*
|
|
95096
95049
|
* @param annotations Annotations to set.
|
|
95097
95050
|
* @returns An array of the inserted annotations identifiers.
|
|
@@ -95113,7 +95066,7 @@ declare namespace Word {
|
|
|
95113
95066
|
* @remarks
|
|
95114
95067
|
* [Api set: WordApi 1.1]
|
|
95115
95068
|
*
|
|
95116
|
-
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support
|
|
95069
|
+
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support was added in WordApi 1.7.
|
|
95117
95070
|
*
|
|
95118
95071
|
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', or 'CheckBox'. The default is 'RichText'.
|
|
95119
95072
|
*/
|
|
@@ -95322,7 +95275,7 @@ declare namespace Word {
|
|
|
95322
95275
|
*/
|
|
95323
95276
|
track(): Word.Paragraph;
|
|
95324
95277
|
/**
|
|
95325
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
95278
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
95326
95279
|
*/
|
|
95327
95280
|
untrack(): Word.Paragraph;
|
|
95328
95281
|
/**
|
|
@@ -95393,7 +95346,7 @@ declare namespace Word {
|
|
|
95393
95346
|
*/
|
|
95394
95347
|
track(): Word.ParagraphCollection;
|
|
95395
95348
|
/**
|
|
95396
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
95349
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
95397
95350
|
*/
|
|
95398
95351
|
untrack(): Word.ParagraphCollection;
|
|
95399
95352
|
/**
|
|
@@ -95543,7 +95496,7 @@ declare namespace Word {
|
|
|
95543
95496
|
*/
|
|
95544
95497
|
track(): Word.ParagraphFormat;
|
|
95545
95498
|
/**
|
|
95546
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
95499
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
95547
95500
|
*/
|
|
95548
95501
|
untrack(): Word.ParagraphFormat;
|
|
95549
95502
|
/**
|
|
@@ -95921,7 +95874,7 @@ declare namespace Word {
|
|
|
95921
95874
|
* @remarks
|
|
95922
95875
|
* [Api set: WordApi 1.1]
|
|
95923
95876
|
*
|
|
95924
|
-
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support
|
|
95877
|
+
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support was added in WordApi 1.7.
|
|
95925
95878
|
*
|
|
95926
95879
|
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', or 'CheckBox'. The default is 'RichText'.
|
|
95927
95880
|
*/
|
|
@@ -96210,7 +96163,7 @@ declare namespace Word {
|
|
|
96210
96163
|
*/
|
|
96211
96164
|
track(): Word.Range;
|
|
96212
96165
|
/**
|
|
96213
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
96166
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
96214
96167
|
*/
|
|
96215
96168
|
untrack(): Word.Range;
|
|
96216
96169
|
/**
|
|
@@ -96267,7 +96220,7 @@ declare namespace Word {
|
|
|
96267
96220
|
*/
|
|
96268
96221
|
track(): Word.RangeCollection;
|
|
96269
96222
|
/**
|
|
96270
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
96223
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
96271
96224
|
*/
|
|
96272
96225
|
untrack(): Word.RangeCollection;
|
|
96273
96226
|
/**
|
|
@@ -96308,8 +96261,7 @@ declare namespace Word {
|
|
|
96308
96261
|
* Represents whether to import the Different Odd and Even Pages setting for the header and footer from the source document.
|
|
96309
96262
|
*
|
|
96310
96263
|
* @remarks
|
|
96311
|
-
* [Api set: WordApi
|
|
96312
|
-
* @beta
|
|
96264
|
+
* [Api set: WordApi 1.7]
|
|
96313
96265
|
*/
|
|
96314
96266
|
importDifferentOddEvenPages?: boolean;
|
|
96315
96267
|
/**
|
|
@@ -96443,24 +96395,21 @@ declare namespace Word {
|
|
|
96443
96395
|
* Specifies the options to be included in a getText operation.
|
|
96444
96396
|
*
|
|
96445
96397
|
* @remarks
|
|
96446
|
-
* [Api set: WordApi
|
|
96447
|
-
* @beta
|
|
96398
|
+
* [Api set: WordApi 1.7]
|
|
96448
96399
|
*/
|
|
96449
96400
|
interface GetTextOptions {
|
|
96450
96401
|
/**
|
|
96451
96402
|
* Specifies a value that indicates whether to include hidden text in the result of the GetText method. The default value is False.
|
|
96452
96403
|
*
|
|
96453
96404
|
* @remarks
|
|
96454
|
-
* [Api set: WordApi
|
|
96455
|
-
* @beta
|
|
96405
|
+
* [Api set: WordApi 1.7]
|
|
96456
96406
|
*/
|
|
96457
96407
|
includeHiddenText?: boolean;
|
|
96458
96408
|
/**
|
|
96459
96409
|
* Specifies a value that indicates whether to include text marked as deleted in the result of the GetText method. The default value is False.
|
|
96460
96410
|
*
|
|
96461
96411
|
* @remarks
|
|
96462
|
-
* [Api set: WordApi
|
|
96463
|
-
* @beta
|
|
96412
|
+
* [Api set: WordApi 1.7]
|
|
96464
96413
|
*/
|
|
96465
96414
|
includeTextMarkedAsDeleted?: boolean;
|
|
96466
96415
|
}
|
|
@@ -96630,7 +96579,7 @@ declare namespace Word {
|
|
|
96630
96579
|
*/
|
|
96631
96580
|
track(): Word.Section;
|
|
96632
96581
|
/**
|
|
96633
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
96582
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
96634
96583
|
*/
|
|
96635
96584
|
untrack(): Word.Section;
|
|
96636
96585
|
/**
|
|
@@ -96687,7 +96636,7 @@ declare namespace Word {
|
|
|
96687
96636
|
*/
|
|
96688
96637
|
track(): Word.SectionCollection;
|
|
96689
96638
|
/**
|
|
96690
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
96639
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
96691
96640
|
*/
|
|
96692
96641
|
untrack(): Word.SectionCollection;
|
|
96693
96642
|
/**
|
|
@@ -96760,7 +96709,7 @@ declare namespace Word {
|
|
|
96760
96709
|
*/
|
|
96761
96710
|
track(): Word.Setting;
|
|
96762
96711
|
/**
|
|
96763
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
96712
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
96764
96713
|
*/
|
|
96765
96714
|
untrack(): Word.Setting;
|
|
96766
96715
|
/**
|
|
@@ -96845,7 +96794,7 @@ declare namespace Word {
|
|
|
96845
96794
|
*/
|
|
96846
96795
|
track(): Word.SettingCollection;
|
|
96847
96796
|
/**
|
|
96848
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
96797
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
96849
96798
|
*/
|
|
96850
96799
|
untrack(): Word.SettingCollection;
|
|
96851
96800
|
/**
|
|
@@ -96922,7 +96871,7 @@ declare namespace Word {
|
|
|
96922
96871
|
*/
|
|
96923
96872
|
track(): Word.StyleCollection;
|
|
96924
96873
|
/**
|
|
96925
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
96874
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
96926
96875
|
*/
|
|
96927
96876
|
untrack(): Word.StyleCollection;
|
|
96928
96877
|
/**
|
|
@@ -97114,7 +97063,7 @@ declare namespace Word {
|
|
|
97114
97063
|
*/
|
|
97115
97064
|
track(): Word.Style;
|
|
97116
97065
|
/**
|
|
97117
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
97066
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
97118
97067
|
*/
|
|
97119
97068
|
untrack(): Word.Style;
|
|
97120
97069
|
/**
|
|
@@ -97189,7 +97138,7 @@ declare namespace Word {
|
|
|
97189
97138
|
*/
|
|
97190
97139
|
track(): Word.Shading;
|
|
97191
97140
|
/**
|
|
97192
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
97141
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
97193
97142
|
*/
|
|
97194
97143
|
untrack(): Word.Shading;
|
|
97195
97144
|
/**
|
|
@@ -97725,7 +97674,7 @@ declare namespace Word {
|
|
|
97725
97674
|
*/
|
|
97726
97675
|
track(): Word.Table;
|
|
97727
97676
|
/**
|
|
97728
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
97677
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
97729
97678
|
*/
|
|
97730
97679
|
untrack(): Word.Table;
|
|
97731
97680
|
/**
|
|
@@ -97828,7 +97777,7 @@ declare namespace Word {
|
|
|
97828
97777
|
*/
|
|
97829
97778
|
track(): Word.TableStyle;
|
|
97830
97779
|
/**
|
|
97831
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
97780
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
97832
97781
|
*/
|
|
97833
97782
|
untrack(): Word.TableStyle;
|
|
97834
97783
|
/**
|
|
@@ -97885,7 +97834,7 @@ declare namespace Word {
|
|
|
97885
97834
|
*/
|
|
97886
97835
|
track(): Word.TableCollection;
|
|
97887
97836
|
/**
|
|
97888
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
97837
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
97889
97838
|
*/
|
|
97890
97839
|
untrack(): Word.TableCollection;
|
|
97891
97840
|
/**
|
|
@@ -98181,7 +98130,7 @@ declare namespace Word {
|
|
|
98181
98130
|
*/
|
|
98182
98131
|
track(): Word.TableRow;
|
|
98183
98132
|
/**
|
|
98184
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
98133
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
98185
98134
|
*/
|
|
98186
98135
|
untrack(): Word.TableRow;
|
|
98187
98136
|
/**
|
|
@@ -98238,7 +98187,7 @@ declare namespace Word {
|
|
|
98238
98187
|
*/
|
|
98239
98188
|
track(): Word.TableRowCollection;
|
|
98240
98189
|
/**
|
|
98241
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
98190
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
98242
98191
|
*/
|
|
98243
98192
|
untrack(): Word.TableRowCollection;
|
|
98244
98193
|
/**
|
|
@@ -98483,7 +98432,7 @@ declare namespace Word {
|
|
|
98483
98432
|
*/
|
|
98484
98433
|
track(): Word.TableCell;
|
|
98485
98434
|
/**
|
|
98486
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
98435
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
98487
98436
|
*/
|
|
98488
98437
|
untrack(): Word.TableCell;
|
|
98489
98438
|
/**
|
|
@@ -98540,7 +98489,7 @@ declare namespace Word {
|
|
|
98540
98489
|
*/
|
|
98541
98490
|
track(): Word.TableCellCollection;
|
|
98542
98491
|
/**
|
|
98543
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
98492
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
98544
98493
|
*/
|
|
98545
98494
|
untrack(): Word.TableCellCollection;
|
|
98546
98495
|
/**
|
|
@@ -98613,7 +98562,7 @@ declare namespace Word {
|
|
|
98613
98562
|
*/
|
|
98614
98563
|
track(): Word.TableBorder;
|
|
98615
98564
|
/**
|
|
98616
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
98565
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
98617
98566
|
*/
|
|
98618
98567
|
untrack(): Word.TableBorder;
|
|
98619
98568
|
/**
|
|
@@ -98720,7 +98669,7 @@ declare namespace Word {
|
|
|
98720
98669
|
*/
|
|
98721
98670
|
track(): Word.TrackedChange;
|
|
98722
98671
|
/**
|
|
98723
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
98672
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
98724
98673
|
*/
|
|
98725
98674
|
untrack(): Word.TrackedChange;
|
|
98726
98675
|
/**
|
|
@@ -98791,7 +98740,7 @@ declare namespace Word {
|
|
|
98791
98740
|
*/
|
|
98792
98741
|
track(): Word.TrackedChangeCollection;
|
|
98793
98742
|
/**
|
|
98794
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You
|
|
98743
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
|
|
98795
98744
|
*/
|
|
98796
98745
|
untrack(): Word.TrackedChangeCollection;
|
|
98797
98746
|
/**
|
|
@@ -99021,29 +98970,25 @@ declare namespace Word {
|
|
|
99021
98970
|
/**
|
|
99022
98971
|
* Represents that an annotation was clicked (or selected with **Alt+Down**) in the document.
|
|
99023
98972
|
* @remarks
|
|
99024
|
-
* [Api set: WordApi
|
|
99025
|
-
* @beta
|
|
98973
|
+
* [Api set: WordApi 1.7]
|
|
99026
98974
|
*/
|
|
99027
98975
|
annotationClicked = "AnnotationClicked",
|
|
99028
98976
|
/**
|
|
99029
98977
|
* Represents that an annotation was hovered over in the document.
|
|
99030
98978
|
* @remarks
|
|
99031
|
-
* [Api set: WordApi
|
|
99032
|
-
* @beta
|
|
98979
|
+
* [Api set: WordApi 1.7]
|
|
99033
98980
|
*/
|
|
99034
98981
|
annotationHovered = "AnnotationHovered",
|
|
99035
98982
|
/**
|
|
99036
98983
|
* Represents that one or more annotations were added in the document.
|
|
99037
98984
|
* @remarks
|
|
99038
|
-
* [Api set: WordApi
|
|
99039
|
-
* @beta
|
|
98985
|
+
* [Api set: WordApi 1.7]
|
|
99040
98986
|
*/
|
|
99041
98987
|
annotationInserted = "AnnotationInserted",
|
|
99042
98988
|
/**
|
|
99043
98989
|
* Represents that one or more annotations were deleted from the document.
|
|
99044
98990
|
* @remarks
|
|
99045
|
-
* [Api set: WordApi
|
|
99046
|
-
* @beta
|
|
98991
|
+
* [Api set: WordApi 1.7]
|
|
99047
98992
|
*/
|
|
99048
98993
|
annotationRemoved = "AnnotationRemoved",
|
|
99049
98994
|
/**
|
|
@@ -102937,8 +102882,7 @@ declare namespace Word {
|
|
|
102937
102882
|
* Specifies the current state of the checkbox.
|
|
102938
102883
|
*
|
|
102939
102884
|
* @remarks
|
|
102940
|
-
* [Api set: WordApi
|
|
102941
|
-
* @beta
|
|
102885
|
+
* [Api set: WordApi 1.7]
|
|
102942
102886
|
*/
|
|
102943
102887
|
isChecked?: boolean;
|
|
102944
102888
|
}
|
|
@@ -103042,8 +102986,7 @@ declare namespace Word {
|
|
|
103042
102986
|
* Specifies the checkbox-related data if the content control's type is 'CheckBox'. It's null otherwise.
|
|
103043
102987
|
*
|
|
103044
102988
|
* @remarks
|
|
103045
|
-
* [Api set: WordApi
|
|
103046
|
-
* @beta
|
|
102989
|
+
* [Api set: WordApi 1.7]
|
|
103047
102990
|
*/
|
|
103048
102991
|
checkboxContentControl?: Word.Interfaces.CheckboxContentControlUpdateData;
|
|
103049
102992
|
/**
|
|
@@ -104331,8 +104274,7 @@ declare namespace Word {
|
|
|
104331
104274
|
* Gets the critique that was passed when the annotation was inserted.
|
|
104332
104275
|
*
|
|
104333
104276
|
* @remarks
|
|
104334
|
-
* [Api set: WordApi
|
|
104335
|
-
* @beta
|
|
104277
|
+
* [Api set: WordApi 1.7]
|
|
104336
104278
|
*/
|
|
104337
104279
|
critique?: Word.Critique;
|
|
104338
104280
|
}
|
|
@@ -104342,16 +104284,14 @@ declare namespace Word {
|
|
|
104342
104284
|
* Gets the unique identifier, which is meant to be used for easier tracking of Annotation objects.
|
|
104343
104285
|
*
|
|
104344
104286
|
* @remarks
|
|
104345
|
-
* [Api set: WordApi
|
|
104346
|
-
* @beta
|
|
104287
|
+
* [Api set: WordApi 1.7]
|
|
104347
104288
|
*/
|
|
104348
104289
|
id?: string;
|
|
104349
104290
|
/**
|
|
104350
104291
|
* Gets the state of the annotation.
|
|
104351
104292
|
*
|
|
104352
104293
|
* @remarks
|
|
104353
|
-
* [Api set: WordApi
|
|
104354
|
-
* @beta
|
|
104294
|
+
* [Api set: WordApi 1.7]
|
|
104355
104295
|
*/
|
|
104356
104296
|
state?: Word.AnnotationState | "Created" | "Accepted" | "Rejected";
|
|
104357
104297
|
}
|
|
@@ -104494,8 +104434,7 @@ declare namespace Word {
|
|
|
104494
104434
|
* Specifies the current state of the checkbox.
|
|
104495
104435
|
*
|
|
104496
104436
|
* @remarks
|
|
104497
|
-
* [Api set: WordApi
|
|
104498
|
-
* @beta
|
|
104437
|
+
* [Api set: WordApi 1.7]
|
|
104499
104438
|
*/
|
|
104500
104439
|
isChecked?: boolean;
|
|
104501
104440
|
}
|
|
@@ -104676,8 +104615,7 @@ declare namespace Word {
|
|
|
104676
104615
|
* Specifies the checkbox-related data if the content control's type is 'CheckBox'. It's null otherwise.
|
|
104677
104616
|
*
|
|
104678
104617
|
* @remarks
|
|
104679
|
-
* [Api set: WordApi
|
|
104680
|
-
* @beta
|
|
104618
|
+
* [Api set: WordApi 1.7]
|
|
104681
104619
|
*/
|
|
104682
104620
|
checkboxContentControl?: Word.Interfaces.CheckboxContentControlData;
|
|
104683
104621
|
/**
|
|
@@ -106537,8 +106475,7 @@ declare namespace Word {
|
|
|
106537
106475
|
* Represents an annotation wrapper around critique displayed in the document.
|
|
106538
106476
|
*
|
|
106539
106477
|
* @remarks
|
|
106540
|
-
* [Api set: WordApi
|
|
106541
|
-
* @beta
|
|
106478
|
+
* [Api set: WordApi 1.7]
|
|
106542
106479
|
*/
|
|
106543
106480
|
interface CritiqueAnnotationLoadOptions {
|
|
106544
106481
|
/**
|
|
@@ -106549,16 +106486,14 @@ declare namespace Word {
|
|
|
106549
106486
|
* Gets the range of text that is annotated.
|
|
106550
106487
|
*
|
|
106551
106488
|
* @remarks
|
|
106552
|
-
* [Api set: WordApi
|
|
106553
|
-
* @beta
|
|
106489
|
+
* [Api set: WordApi 1.7]
|
|
106554
106490
|
*/
|
|
106555
106491
|
range?: Word.Interfaces.RangeLoadOptions;
|
|
106556
106492
|
/**
|
|
106557
106493
|
* Gets the critique that was passed when the annotation was inserted.
|
|
106558
106494
|
*
|
|
106559
106495
|
* @remarks
|
|
106560
|
-
* [Api set: WordApi
|
|
106561
|
-
* @beta
|
|
106496
|
+
* [Api set: WordApi 1.7]
|
|
106562
106497
|
*/
|
|
106563
106498
|
critique?: boolean;
|
|
106564
106499
|
}
|
|
@@ -106566,8 +106501,7 @@ declare namespace Word {
|
|
|
106566
106501
|
* Represents an annotation attached to a paragraph.
|
|
106567
106502
|
*
|
|
106568
106503
|
* @remarks
|
|
106569
|
-
* [Api set: WordApi
|
|
106570
|
-
* @beta
|
|
106504
|
+
* [Api set: WordApi 1.7]
|
|
106571
106505
|
*/
|
|
106572
106506
|
interface AnnotationLoadOptions {
|
|
106573
106507
|
/**
|
|
@@ -106578,24 +106512,21 @@ declare namespace Word {
|
|
|
106578
106512
|
* Gets the critique annotation object.
|
|
106579
106513
|
*
|
|
106580
106514
|
* @remarks
|
|
106581
|
-
* [Api set: WordApi
|
|
106582
|
-
* @beta
|
|
106515
|
+
* [Api set: WordApi 1.7]
|
|
106583
106516
|
*/
|
|
106584
106517
|
critiqueAnnotation?: Word.Interfaces.CritiqueAnnotationLoadOptions;
|
|
106585
106518
|
/**
|
|
106586
106519
|
* Gets the unique identifier, which is meant to be used for easier tracking of Annotation objects.
|
|
106587
106520
|
*
|
|
106588
106521
|
* @remarks
|
|
106589
|
-
* [Api set: WordApi
|
|
106590
|
-
* @beta
|
|
106522
|
+
* [Api set: WordApi 1.7]
|
|
106591
106523
|
*/
|
|
106592
106524
|
id?: boolean;
|
|
106593
106525
|
/**
|
|
106594
106526
|
* Gets the state of the annotation.
|
|
106595
106527
|
*
|
|
106596
106528
|
* @remarks
|
|
106597
|
-
* [Api set: WordApi
|
|
106598
|
-
* @beta
|
|
106529
|
+
* [Api set: WordApi 1.7]
|
|
106599
106530
|
*/
|
|
106600
106531
|
state?: boolean;
|
|
106601
106532
|
}
|
|
@@ -106603,8 +106534,7 @@ declare namespace Word {
|
|
|
106603
106534
|
* Contains a collection of {@link Word.Annotation} objects.
|
|
106604
106535
|
*
|
|
106605
106536
|
* @remarks
|
|
106606
|
-
* [Api set: WordApi
|
|
106607
|
-
* @beta
|
|
106537
|
+
* [Api set: WordApi 1.7]
|
|
106608
106538
|
*/
|
|
106609
106539
|
interface AnnotationCollectionLoadOptions {
|
|
106610
106540
|
/**
|
|
@@ -106615,24 +106545,21 @@ declare namespace Word {
|
|
|
106615
106545
|
* For EACH ITEM in the collection: Gets the critique annotation object.
|
|
106616
106546
|
*
|
|
106617
106547
|
* @remarks
|
|
106618
|
-
* [Api set: WordApi
|
|
106619
|
-
* @beta
|
|
106548
|
+
* [Api set: WordApi 1.7]
|
|
106620
106549
|
*/
|
|
106621
106550
|
critiqueAnnotation?: Word.Interfaces.CritiqueAnnotationLoadOptions;
|
|
106622
106551
|
/**
|
|
106623
106552
|
* For EACH ITEM in the collection: Gets the unique identifier, which is meant to be used for easier tracking of Annotation objects.
|
|
106624
106553
|
*
|
|
106625
106554
|
* @remarks
|
|
106626
|
-
* [Api set: WordApi
|
|
106627
|
-
* @beta
|
|
106555
|
+
* [Api set: WordApi 1.7]
|
|
106628
106556
|
*/
|
|
106629
106557
|
id?: boolean;
|
|
106630
106558
|
/**
|
|
106631
106559
|
* For EACH ITEM in the collection: Gets the state of the annotation.
|
|
106632
106560
|
*
|
|
106633
106561
|
* @remarks
|
|
106634
|
-
* [Api set: WordApi
|
|
106635
|
-
* @beta
|
|
106562
|
+
* [Api set: WordApi 1.7]
|
|
106636
106563
|
*/
|
|
106637
106564
|
state?: boolean;
|
|
106638
106565
|
}
|
|
@@ -106835,8 +106762,7 @@ declare namespace Word {
|
|
|
106835
106762
|
* The data specific to content controls of type CheckBox.
|
|
106836
106763
|
*
|
|
106837
106764
|
* @remarks
|
|
106838
|
-
* [Api set: WordApi
|
|
106839
|
-
* @beta
|
|
106765
|
+
* [Api set: WordApi 1.7]
|
|
106840
106766
|
*/
|
|
106841
106767
|
interface CheckboxContentControlLoadOptions {
|
|
106842
106768
|
/**
|
|
@@ -106847,8 +106773,7 @@ declare namespace Word {
|
|
|
106847
106773
|
* Specifies the current state of the checkbox.
|
|
106848
106774
|
*
|
|
106849
106775
|
* @remarks
|
|
106850
|
-
* [Api set: WordApi
|
|
106851
|
-
* @beta
|
|
106776
|
+
* [Api set: WordApi 1.7]
|
|
106852
106777
|
*/
|
|
106853
106778
|
isChecked?: boolean;
|
|
106854
106779
|
}
|
|
@@ -107170,8 +107095,7 @@ declare namespace Word {
|
|
|
107170
107095
|
* Specifies the checkbox-related data if the content control's type is 'CheckBox'. It's null otherwise.
|
|
107171
107096
|
*
|
|
107172
107097
|
* @remarks
|
|
107173
|
-
* [Api set: WordApi
|
|
107174
|
-
* @beta
|
|
107098
|
+
* [Api set: WordApi 1.7]
|
|
107175
107099
|
*/
|
|
107176
107100
|
checkboxContentControl?: Word.Interfaces.CheckboxContentControlLoadOptions;
|
|
107177
107101
|
/**
|
|
@@ -107346,8 +107270,7 @@ declare namespace Word {
|
|
|
107346
107270
|
* For EACH ITEM in the collection: Specifies the checkbox-related data if the content control's type is 'CheckBox'. It's null otherwise.
|
|
107347
107271
|
*
|
|
107348
107272
|
* @remarks
|
|
107349
|
-
* [Api set: WordApi
|
|
107350
|
-
* @beta
|
|
107273
|
+
* [Api set: WordApi 1.7]
|
|
107351
107274
|
*/
|
|
107352
107275
|
checkboxContentControl?: Word.Interfaces.CheckboxContentControlLoadOptions;
|
|
107353
107276
|
/**
|