@types/office-js 1.0.267 → 1.0.270
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/README.md +1 -1
- office-js/index.d.ts +95 -125
- office-js/package.json +2 -2
office-js/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Office.js (https://github.com/OfficeD
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 08 Aug 2022 18:02:22 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
|
|
14
14
|
|
office-js/index.d.ts
CHANGED
|
@@ -8406,7 +8406,7 @@ declare namespace Office {
|
|
|
8406
8406
|
Preset24
|
|
8407
8407
|
}
|
|
8408
8408
|
/**
|
|
8409
|
-
*
|
|
8409
|
+
* Specifies a message's compose type.
|
|
8410
8410
|
*
|
|
8411
8411
|
* @remarks
|
|
8412
8412
|
* [Api set: Mailbox 1.10]
|
|
@@ -9806,6 +9806,11 @@ declare namespace Office {
|
|
|
9806
9806
|
*
|
|
9807
9807
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
9808
9808
|
*
|
|
9809
|
+
* **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
|
|
9810
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
9811
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
9812
|
+
* For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
|
|
9813
|
+
*
|
|
9809
9814
|
* @param base64File - The base64 encoded content of an image or file to be added to an email or event.
|
|
9810
9815
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
9811
9816
|
* @param options - An object literal that contains one or more of the following properties.
|
|
@@ -9845,6 +9850,11 @@ declare namespace Office {
|
|
|
9845
9850
|
*
|
|
9846
9851
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
9847
9852
|
*
|
|
9853
|
+
* **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
|
|
9854
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
9855
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
9856
|
+
* For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
|
|
9857
|
+
*
|
|
9848
9858
|
* @param base64File - The base64 encoded content of an image or file to be added to an email or event.
|
|
9849
9859
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
9850
9860
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
|
|
@@ -14709,6 +14719,11 @@ declare namespace Office {
|
|
|
14709
14719
|
*
|
|
14710
14720
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
14711
14721
|
*
|
|
14722
|
+
* **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
|
|
14723
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
14724
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
14725
|
+
* For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
|
|
14726
|
+
*
|
|
14712
14727
|
* @param base64File - The base64-encoded content of an image or file to be added to an email or event.
|
|
14713
14728
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
14714
14729
|
* @param options - An object literal that contains one or more of the following properties.
|
|
@@ -14745,6 +14760,11 @@ declare namespace Office {
|
|
|
14745
14760
|
*
|
|
14746
14761
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
14747
14762
|
*
|
|
14763
|
+
* **Note**: If you're adding an inline base64 image to the body of a message or appointment being composed, you must first get the current item body using the
|
|
14764
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
14765
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
14766
|
+
* For further guidance, see {@link https://docs.microsoft.com/office/dev/add-ins/outlook/add-and-remove-attachments-to-an-item-in-a-compose-form#attach-a-file | Attach a file}.
|
|
14767
|
+
*
|
|
14748
14768
|
* @param base64File - The base64-encoded content of an image or file to be added to an email or event.
|
|
14749
14769
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
14750
14770
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
|
|
@@ -75330,11 +75350,11 @@ declare namespace Word {
|
|
|
75330
75350
|
expand?: string;
|
|
75331
75351
|
}): Word.Body;
|
|
75332
75352
|
/**
|
|
75333
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75353
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
75334
75354
|
*/
|
|
75335
75355
|
track(): Word.Body;
|
|
75336
75356
|
/**
|
|
75337
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75357
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
75338
75358
|
*/
|
|
75339
75359
|
untrack(): Word.Body;
|
|
75340
75360
|
/**
|
|
@@ -75461,11 +75481,11 @@ declare namespace Word {
|
|
|
75461
75481
|
expand?: string;
|
|
75462
75482
|
}): Word.Comment;
|
|
75463
75483
|
/**
|
|
75464
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75484
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
75465
75485
|
*/
|
|
75466
75486
|
track(): Word.Comment;
|
|
75467
75487
|
/**
|
|
75468
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75488
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
75469
75489
|
*/
|
|
75470
75490
|
untrack(): Word.Comment;
|
|
75471
75491
|
/**
|
|
@@ -75527,11 +75547,11 @@ declare namespace Word {
|
|
|
75527
75547
|
*/
|
|
75528
75548
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
75529
75549
|
/**
|
|
75530
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75550
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
75531
75551
|
*/
|
|
75532
75552
|
track(): Word.CommentCollection;
|
|
75533
75553
|
/**
|
|
75534
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75554
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
75535
75555
|
*/
|
|
75536
75556
|
untrack(): Word.CommentCollection;
|
|
75537
75557
|
/**
|
|
@@ -75605,7 +75625,7 @@ declare namespace Word {
|
|
|
75605
75625
|
/** Sets multiple properties on the object at the same time, based on an existing loaded object. */
|
|
75606
75626
|
set(properties: Word.CommentContentRange): void;
|
|
75607
75627
|
/**
|
|
75608
|
-
* Inserts text into at the specified location.
|
|
75628
|
+
* Inserts text into at the specified location. **Note**: For the modern comment, the content range tracked across context turns to empty if any revision to the comment is posted through the UI.
|
|
75609
75629
|
*
|
|
75610
75630
|
* @remarks
|
|
75611
75631
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -75615,7 +75635,7 @@ declare namespace Word {
|
|
|
75615
75635
|
*/
|
|
75616
75636
|
insertText(text: string, insertLocation: Word.InsertLocation): Word.CommentContentRange;
|
|
75617
75637
|
/**
|
|
75618
|
-
* Inserts text into at the specified location.
|
|
75638
|
+
* Inserts text into at the specified location. **Note**: For the modern comment, the content range tracked across context turns to empty if any revision to the comment is posted through the UI.
|
|
75619
75639
|
*
|
|
75620
75640
|
* @remarks
|
|
75621
75641
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -75646,11 +75666,11 @@ declare namespace Word {
|
|
|
75646
75666
|
expand?: string;
|
|
75647
75667
|
}): Word.CommentContentRange;
|
|
75648
75668
|
/**
|
|
75649
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75669
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
75650
75670
|
*/
|
|
75651
75671
|
track(): Word.CommentContentRange;
|
|
75652
75672
|
/**
|
|
75653
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75673
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
75654
75674
|
*/
|
|
75655
75675
|
untrack(): Word.CommentContentRange;
|
|
75656
75676
|
/**
|
|
@@ -75754,11 +75774,11 @@ declare namespace Word {
|
|
|
75754
75774
|
expand?: string;
|
|
75755
75775
|
}): Word.CommentReply;
|
|
75756
75776
|
/**
|
|
75757
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75777
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
75758
75778
|
*/
|
|
75759
75779
|
track(): Word.CommentReply;
|
|
75760
75780
|
/**
|
|
75761
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75781
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
75762
75782
|
*/
|
|
75763
75783
|
untrack(): Word.CommentReply;
|
|
75764
75784
|
/**
|
|
@@ -75820,11 +75840,11 @@ declare namespace Word {
|
|
|
75820
75840
|
*/
|
|
75821
75841
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
75822
75842
|
/**
|
|
75823
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75843
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
75824
75844
|
*/
|
|
75825
75845
|
track(): Word.CommentReplyCollection;
|
|
75826
75846
|
/**
|
|
75827
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75847
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
75828
75848
|
*/
|
|
75829
75849
|
untrack(): Word.CommentReplyCollection;
|
|
75830
75850
|
/**
|
|
@@ -76071,7 +76091,7 @@ declare namespace Word {
|
|
|
76071
76091
|
*/
|
|
76072
76092
|
delete(keepContent: boolean): void;
|
|
76073
76093
|
/**
|
|
76074
|
-
* Gets comments associated with the
|
|
76094
|
+
* Gets comments associated with the content control.
|
|
76075
76095
|
*
|
|
76076
76096
|
* @remarks
|
|
76077
76097
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -76371,11 +76391,11 @@ declare namespace Word {
|
|
|
76371
76391
|
expand?: string;
|
|
76372
76392
|
}): Word.ContentControl;
|
|
76373
76393
|
/**
|
|
76374
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76394
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
76375
76395
|
*/
|
|
76376
76396
|
track(): Word.ContentControl;
|
|
76377
76397
|
/**
|
|
76378
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76398
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
76379
76399
|
*/
|
|
76380
76400
|
untrack(): Word.ContentControl;
|
|
76381
76401
|
/**
|
|
@@ -76482,11 +76502,11 @@ declare namespace Word {
|
|
|
76482
76502
|
*/
|
|
76483
76503
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
76484
76504
|
/**
|
|
76485
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76505
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
76486
76506
|
*/
|
|
76487
76507
|
track(): Word.ContentControlCollection;
|
|
76488
76508
|
/**
|
|
76489
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76509
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
76490
76510
|
*/
|
|
76491
76511
|
untrack(): Word.ContentControlCollection;
|
|
76492
76512
|
/**
|
|
@@ -76562,11 +76582,11 @@ declare namespace Word {
|
|
|
76562
76582
|
expand?: string;
|
|
76563
76583
|
}): Word.CustomProperty;
|
|
76564
76584
|
/**
|
|
76565
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76585
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
76566
76586
|
*/
|
|
76567
76587
|
track(): Word.CustomProperty;
|
|
76568
76588
|
/**
|
|
76569
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76589
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
76570
76590
|
*/
|
|
76571
76591
|
untrack(): Word.CustomProperty;
|
|
76572
76592
|
/**
|
|
@@ -76647,11 +76667,11 @@ declare namespace Word {
|
|
|
76647
76667
|
*/
|
|
76648
76668
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
76649
76669
|
/**
|
|
76650
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76670
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
76651
76671
|
*/
|
|
76652
76672
|
track(): Word.CustomPropertyCollection;
|
|
76653
76673
|
/**
|
|
76654
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76674
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
76655
76675
|
*/
|
|
76656
76676
|
untrack(): Word.CustomPropertyCollection;
|
|
76657
76677
|
/**
|
|
@@ -76786,11 +76806,11 @@ declare namespace Word {
|
|
|
76786
76806
|
expand?: string;
|
|
76787
76807
|
}): Word.Document;
|
|
76788
76808
|
/**
|
|
76789
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76809
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
76790
76810
|
*/
|
|
76791
76811
|
track(): Word.Document;
|
|
76792
76812
|
/**
|
|
76793
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76813
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
76794
76814
|
*/
|
|
76795
76815
|
untrack(): Word.Document;
|
|
76796
76816
|
/**
|
|
@@ -76887,11 +76907,11 @@ declare namespace Word {
|
|
|
76887
76907
|
expand?: string;
|
|
76888
76908
|
}): Word.DocumentCreated;
|
|
76889
76909
|
/**
|
|
76890
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76910
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
76891
76911
|
*/
|
|
76892
76912
|
track(): Word.DocumentCreated;
|
|
76893
76913
|
/**
|
|
76894
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76914
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
76895
76915
|
*/
|
|
76896
76916
|
untrack(): Word.DocumentCreated;
|
|
76897
76917
|
/**
|
|
@@ -77065,11 +77085,11 @@ declare namespace Word {
|
|
|
77065
77085
|
expand?: string;
|
|
77066
77086
|
}): Word.DocumentProperties;
|
|
77067
77087
|
/**
|
|
77068
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77088
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
77069
77089
|
*/
|
|
77070
77090
|
track(): Word.DocumentProperties;
|
|
77071
77091
|
/**
|
|
77072
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77092
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
77073
77093
|
*/
|
|
77074
77094
|
untrack(): Word.DocumentProperties;
|
|
77075
77095
|
/**
|
|
@@ -77195,11 +77215,11 @@ declare namespace Word {
|
|
|
77195
77215
|
expand?: string;
|
|
77196
77216
|
}): Word.Font;
|
|
77197
77217
|
/**
|
|
77198
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77218
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
77199
77219
|
*/
|
|
77200
77220
|
track(): Word.Font;
|
|
77201
77221
|
/**
|
|
77202
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77222
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
77203
77223
|
*/
|
|
77204
77224
|
untrack(): Word.Font;
|
|
77205
77225
|
/**
|
|
@@ -77549,11 +77569,11 @@ declare namespace Word {
|
|
|
77549
77569
|
expand?: string;
|
|
77550
77570
|
}): Word.InlinePicture;
|
|
77551
77571
|
/**
|
|
77552
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77572
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
77553
77573
|
*/
|
|
77554
77574
|
track(): Word.InlinePicture;
|
|
77555
77575
|
/**
|
|
77556
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77576
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
77557
77577
|
*/
|
|
77558
77578
|
untrack(): Word.InlinePicture;
|
|
77559
77579
|
/**
|
|
@@ -77606,11 +77626,11 @@ declare namespace Word {
|
|
|
77606
77626
|
*/
|
|
77607
77627
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
77608
77628
|
/**
|
|
77609
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77629
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
77610
77630
|
*/
|
|
77611
77631
|
track(): Word.InlinePictureCollection;
|
|
77612
77632
|
/**
|
|
77613
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77633
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
77614
77634
|
*/
|
|
77615
77635
|
untrack(): Word.InlinePictureCollection;
|
|
77616
77636
|
/**
|
|
@@ -77803,11 +77823,11 @@ declare namespace Word {
|
|
|
77803
77823
|
expand?: string;
|
|
77804
77824
|
}): Word.List;
|
|
77805
77825
|
/**
|
|
77806
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77826
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
77807
77827
|
*/
|
|
77808
77828
|
track(): Word.List;
|
|
77809
77829
|
/**
|
|
77810
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77830
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
77811
77831
|
*/
|
|
77812
77832
|
untrack(): Word.List;
|
|
77813
77833
|
/**
|
|
@@ -77887,11 +77907,11 @@ declare namespace Word {
|
|
|
77887
77907
|
*/
|
|
77888
77908
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
77889
77909
|
/**
|
|
77890
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77910
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
77891
77911
|
*/
|
|
77892
77912
|
track(): Word.ListCollection;
|
|
77893
77913
|
/**
|
|
77894
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77914
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
77895
77915
|
*/
|
|
77896
77916
|
untrack(): Word.ListCollection;
|
|
77897
77917
|
/**
|
|
@@ -77987,11 +78007,11 @@ declare namespace Word {
|
|
|
77987
78007
|
expand?: string;
|
|
77988
78008
|
}): Word.ListItem;
|
|
77989
78009
|
/**
|
|
77990
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78010
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
77991
78011
|
*/
|
|
77992
78012
|
track(): Word.ListItem;
|
|
77993
78013
|
/**
|
|
77994
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78014
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
77995
78015
|
*/
|
|
77996
78016
|
untrack(): Word.ListItem;
|
|
77997
78017
|
/**
|
|
@@ -78081,11 +78101,11 @@ declare namespace Word {
|
|
|
78081
78101
|
expand?: string;
|
|
78082
78102
|
}): Word.NoteItem;
|
|
78083
78103
|
/**
|
|
78084
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78104
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
78085
78105
|
*/
|
|
78086
78106
|
track(): Word.NoteItem;
|
|
78087
78107
|
/**
|
|
78088
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78108
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
78089
78109
|
*/
|
|
78090
78110
|
untrack(): Word.NoteItem;
|
|
78091
78111
|
/**
|
|
@@ -78138,11 +78158,11 @@ declare namespace Word {
|
|
|
78138
78158
|
*/
|
|
78139
78159
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
78140
78160
|
/**
|
|
78141
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78161
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
78142
78162
|
*/
|
|
78143
78163
|
track(): Word.NoteItemCollection;
|
|
78144
78164
|
/**
|
|
78145
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78165
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
78146
78166
|
*/
|
|
78147
78167
|
untrack(): Word.NoteItemCollection;
|
|
78148
78168
|
/**
|
|
@@ -78765,11 +78785,11 @@ declare namespace Word {
|
|
|
78765
78785
|
expand?: string;
|
|
78766
78786
|
}): Word.Paragraph;
|
|
78767
78787
|
/**
|
|
78768
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78788
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
78769
78789
|
*/
|
|
78770
78790
|
track(): Word.Paragraph;
|
|
78771
78791
|
/**
|
|
78772
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78792
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
78773
78793
|
*/
|
|
78774
78794
|
untrack(): Word.Paragraph;
|
|
78775
78795
|
/**
|
|
@@ -78836,11 +78856,11 @@ declare namespace Word {
|
|
|
78836
78856
|
*/
|
|
78837
78857
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
78838
78858
|
/**
|
|
78839
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78859
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
78840
78860
|
*/
|
|
78841
78861
|
track(): Word.ParagraphCollection;
|
|
78842
78862
|
/**
|
|
78843
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78863
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
78844
78864
|
*/
|
|
78845
78865
|
untrack(): Word.ParagraphCollection;
|
|
78846
78866
|
/**
|
|
@@ -79429,11 +79449,11 @@ declare namespace Word {
|
|
|
79429
79449
|
expand?: string;
|
|
79430
79450
|
}): Word.Range;
|
|
79431
79451
|
/**
|
|
79432
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79452
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
79433
79453
|
*/
|
|
79434
79454
|
track(): Word.Range;
|
|
79435
79455
|
/**
|
|
79436
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79456
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
79437
79457
|
*/
|
|
79438
79458
|
untrack(): Word.Range;
|
|
79439
79459
|
/**
|
|
@@ -79486,11 +79506,11 @@ declare namespace Word {
|
|
|
79486
79506
|
*/
|
|
79487
79507
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
79488
79508
|
/**
|
|
79489
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79509
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
79490
79510
|
*/
|
|
79491
79511
|
track(): Word.RangeCollection;
|
|
79492
79512
|
/**
|
|
79493
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79513
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
79494
79514
|
*/
|
|
79495
79515
|
untrack(): Word.RangeCollection;
|
|
79496
79516
|
/**
|
|
@@ -79694,11 +79714,11 @@ declare namespace Word {
|
|
|
79694
79714
|
expand?: string;
|
|
79695
79715
|
}): Word.Section;
|
|
79696
79716
|
/**
|
|
79697
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79717
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
79698
79718
|
*/
|
|
79699
79719
|
track(): Word.Section;
|
|
79700
79720
|
/**
|
|
79701
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79721
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
79702
79722
|
*/
|
|
79703
79723
|
untrack(): Word.Section;
|
|
79704
79724
|
/**
|
|
@@ -79751,11 +79771,11 @@ declare namespace Word {
|
|
|
79751
79771
|
*/
|
|
79752
79772
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
79753
79773
|
/**
|
|
79754
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79774
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
79755
79775
|
*/
|
|
79756
79776
|
track(): Word.SectionCollection;
|
|
79757
79777
|
/**
|
|
79758
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79778
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
79759
79779
|
*/
|
|
79760
79780
|
untrack(): Word.SectionCollection;
|
|
79761
79781
|
/**
|
|
@@ -80321,11 +80341,11 @@ declare namespace Word {
|
|
|
80321
80341
|
expand?: string;
|
|
80322
80342
|
}): Word.Table;
|
|
80323
80343
|
/**
|
|
80324
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80344
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
80325
80345
|
*/
|
|
80326
80346
|
track(): Word.Table;
|
|
80327
80347
|
/**
|
|
80328
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80348
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
80329
80349
|
*/
|
|
80330
80350
|
untrack(): Word.Table;
|
|
80331
80351
|
/**
|
|
@@ -80378,11 +80398,11 @@ declare namespace Word {
|
|
|
80378
80398
|
*/
|
|
80379
80399
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
80380
80400
|
/**
|
|
80381
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80401
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
80382
80402
|
*/
|
|
80383
80403
|
track(): Word.TableCollection;
|
|
80384
80404
|
/**
|
|
80385
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80405
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
80386
80406
|
*/
|
|
80387
80407
|
untrack(): Word.TableCollection;
|
|
80388
80408
|
/**
|
|
@@ -80663,11 +80683,11 @@ declare namespace Word {
|
|
|
80663
80683
|
expand?: string;
|
|
80664
80684
|
}): Word.TableRow;
|
|
80665
80685
|
/**
|
|
80666
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80686
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
80667
80687
|
*/
|
|
80668
80688
|
track(): Word.TableRow;
|
|
80669
80689
|
/**
|
|
80670
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80690
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
80671
80691
|
*/
|
|
80672
80692
|
untrack(): Word.TableRow;
|
|
80673
80693
|
/**
|
|
@@ -80720,11 +80740,11 @@ declare namespace Word {
|
|
|
80720
80740
|
*/
|
|
80721
80741
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
80722
80742
|
/**
|
|
80723
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80743
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
80724
80744
|
*/
|
|
80725
80745
|
track(): Word.TableRowCollection;
|
|
80726
80746
|
/**
|
|
80727
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80747
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
80728
80748
|
*/
|
|
80729
80749
|
untrack(): Word.TableRowCollection;
|
|
80730
80750
|
/**
|
|
@@ -80977,11 +80997,11 @@ declare namespace Word {
|
|
|
80977
80997
|
expand?: string;
|
|
80978
80998
|
}): Word.TableCell;
|
|
80979
80999
|
/**
|
|
80980
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
81000
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
80981
81001
|
*/
|
|
80982
81002
|
track(): Word.TableCell;
|
|
80983
81003
|
/**
|
|
80984
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
81004
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
80985
81005
|
*/
|
|
80986
81006
|
untrack(): Word.TableCell;
|
|
80987
81007
|
/**
|
|
@@ -81034,11 +81054,11 @@ declare namespace Word {
|
|
|
81034
81054
|
*/
|
|
81035
81055
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
81036
81056
|
/**
|
|
81037
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
81057
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
81038
81058
|
*/
|
|
81039
81059
|
track(): Word.TableCellCollection;
|
|
81040
81060
|
/**
|
|
81041
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
81061
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
81042
81062
|
*/
|
|
81043
81063
|
untrack(): Word.TableCellCollection;
|
|
81044
81064
|
/**
|
|
@@ -81107,11 +81127,11 @@ declare namespace Word {
|
|
|
81107
81127
|
expand?: string;
|
|
81108
81128
|
}): Word.TableBorder;
|
|
81109
81129
|
/**
|
|
81110
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
81130
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://docs.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you are using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the object to the tracked object collection when the object was first created. If this object is part of a collection, you should also track the parent collection.
|
|
81111
81131
|
*/
|
|
81112
81132
|
track(): Word.TableBorder;
|
|
81113
81133
|
/**
|
|
81114
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
81134
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://docs.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 will need to call `context.sync()` before the memory release takes effect.
|
|
81115
81135
|
*/
|
|
81116
81136
|
untrack(): Word.TableBorder;
|
|
81117
81137
|
/**
|
|
@@ -81182,56 +81202,6 @@ declare namespace Word {
|
|
|
81182
81202
|
*/
|
|
81183
81203
|
endnote = "Endnote",
|
|
81184
81204
|
}
|
|
81185
|
-
/**
|
|
81186
|
-
* Provides information about the type of a raised event. For each object type, please keep the order of: deleted, selection changed, data changed, added.
|
|
81187
|
-
*
|
|
81188
|
-
* @remarks
|
|
81189
|
-
* [Api set: WordApi 1.3]
|
|
81190
|
-
*/
|
|
81191
|
-
enum EventType {
|
|
81192
|
-
/**
|
|
81193
|
-
* ContentControlDeleted represent the event that the content control has been deleted.
|
|
81194
|
-
* @remarks
|
|
81195
|
-
* [Api set: WordApi 1.3]
|
|
81196
|
-
*/
|
|
81197
|
-
contentControlDeleted = "ContentControlDeleted",
|
|
81198
|
-
/**
|
|
81199
|
-
* ContentControlSelectionChanged represents the event that the selection in the content control has been changed.
|
|
81200
|
-
* @remarks
|
|
81201
|
-
* [Api set: WordApi 1.3]
|
|
81202
|
-
*/
|
|
81203
|
-
contentControlSelectionChanged = "ContentControlSelectionChanged",
|
|
81204
|
-
/**
|
|
81205
|
-
* ContentControlDataChanged represents the event that the data in the content control have been changed.
|
|
81206
|
-
* @remarks
|
|
81207
|
-
* [Api set: WordApi 1.3]
|
|
81208
|
-
*/
|
|
81209
|
-
contentControlDataChanged = "ContentControlDataChanged",
|
|
81210
|
-
/**
|
|
81211
|
-
* ContentControlAdded represents the event a content control has been added to the document.
|
|
81212
|
-
* @remarks
|
|
81213
|
-
* [Api set: WordApi 1.3]
|
|
81214
|
-
*/
|
|
81215
|
-
contentControlAdded = "ContentControlAdded",
|
|
81216
|
-
/**
|
|
81217
|
-
* AnnotationAdded represents the event an annotation has been added to the document.
|
|
81218
|
-
* @remarks
|
|
81219
|
-
* [Api set: WordApi 1.3]
|
|
81220
|
-
*/
|
|
81221
|
-
annotationAdded = "AnnotationAdded",
|
|
81222
|
-
/**
|
|
81223
|
-
* AnnotationAdded represents the event an annotation has been updated in the document.
|
|
81224
|
-
* @remarks
|
|
81225
|
-
* [Api set: WordApi 1.3]
|
|
81226
|
-
*/
|
|
81227
|
-
annotationChanged = "AnnotationChanged",
|
|
81228
|
-
/**
|
|
81229
|
-
* AnnotationAdded represents the event an annotation has been deleted from the document.
|
|
81230
|
-
* @remarks
|
|
81231
|
-
* [Api set: WordApi 1.3]
|
|
81232
|
-
*/
|
|
81233
|
-
annotationDeleted = "AnnotationDeleted",
|
|
81234
|
-
}
|
|
81235
81205
|
/**
|
|
81236
81206
|
* Specifies supported content control types and subtypes.
|
|
81237
81207
|
*
|
|
@@ -81330,7 +81300,7 @@ declare namespace Word {
|
|
|
81330
81300
|
plainText = "PlainText",
|
|
81331
81301
|
}
|
|
81332
81302
|
/**
|
|
81333
|
-
* ContentControl appearance
|
|
81303
|
+
* ContentControl appearance.
|
|
81334
81304
|
*
|
|
81335
81305
|
* @remarks
|
|
81336
81306
|
* [Api set: WordApi 1.1]
|
|
@@ -81544,7 +81514,7 @@ declare namespace Word {
|
|
|
81544
81514
|
* @remarks
|
|
81545
81515
|
* [Api set: WordApi 1.1]
|
|
81546
81516
|
*
|
|
81547
|
-
* To be used with an API call, such as `obj.insertSomething(newStuff, location)
|
|
81517
|
+
* To be used with an API call, such as `obj.insertSomething(newStuff, location);`.
|
|
81548
81518
|
* If the location is "Before" or "After", the new content will be outside of the modified object.
|
|
81549
81519
|
* If the location is "Start" or "End", the new content will be included as part of the modified object.
|
|
81550
81520
|
*/
|
|
@@ -81627,7 +81597,7 @@ declare namespace Word {
|
|
|
81627
81597
|
*/
|
|
81628
81598
|
enum HeaderFooterType {
|
|
81629
81599
|
/**
|
|
81630
|
-
* Returns the header or footer on all pages of a section, but excludes the first page or
|
|
81600
|
+
* Returns the header or footer on all pages of a section, but excludes the first page or even pages if they are different.
|
|
81631
81601
|
* @remarks
|
|
81632
81602
|
* [Api set: WordApi 1.1]
|
|
81633
81603
|
*/
|
office-js/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.270",
|
|
4
4
|
"description": "TypeScript definitions for Office.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "2db986b698e2118ad69e75fccfbf037f2b97f643b14c21c5f9ab70d3136b80e2",
|
|
49
49
|
"typeScriptVersion": "4.0"
|
|
50
50
|
}
|