@types/office-js 1.0.267 → 1.0.268
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 +74 -124
- 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: Thu,
|
|
11
|
+
* Last updated: Thu, 28 Jul 2022 21:32:21 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
|
@@ -75330,11 +75330,11 @@ declare namespace Word {
|
|
|
75330
75330
|
expand?: string;
|
|
75331
75331
|
}): Word.Body;
|
|
75332
75332
|
/**
|
|
75333
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75333
|
+
* 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
75334
|
*/
|
|
75335
75335
|
track(): Word.Body;
|
|
75336
75336
|
/**
|
|
75337
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75337
|
+
* 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
75338
|
*/
|
|
75339
75339
|
untrack(): Word.Body;
|
|
75340
75340
|
/**
|
|
@@ -75461,11 +75461,11 @@ declare namespace Word {
|
|
|
75461
75461
|
expand?: string;
|
|
75462
75462
|
}): Word.Comment;
|
|
75463
75463
|
/**
|
|
75464
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75464
|
+
* 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
75465
|
*/
|
|
75466
75466
|
track(): Word.Comment;
|
|
75467
75467
|
/**
|
|
75468
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75468
|
+
* 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
75469
|
*/
|
|
75470
75470
|
untrack(): Word.Comment;
|
|
75471
75471
|
/**
|
|
@@ -75527,11 +75527,11 @@ declare namespace Word {
|
|
|
75527
75527
|
*/
|
|
75528
75528
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
75529
75529
|
/**
|
|
75530
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75530
|
+
* 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
75531
|
*/
|
|
75532
75532
|
track(): Word.CommentCollection;
|
|
75533
75533
|
/**
|
|
75534
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75534
|
+
* 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
75535
|
*/
|
|
75536
75536
|
untrack(): Word.CommentCollection;
|
|
75537
75537
|
/**
|
|
@@ -75605,7 +75605,7 @@ declare namespace Word {
|
|
|
75605
75605
|
/** Sets multiple properties on the object at the same time, based on an existing loaded object. */
|
|
75606
75606
|
set(properties: Word.CommentContentRange): void;
|
|
75607
75607
|
/**
|
|
75608
|
-
* Inserts text into at the specified location.
|
|
75608
|
+
* 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
75609
|
*
|
|
75610
75610
|
* @remarks
|
|
75611
75611
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -75615,7 +75615,7 @@ declare namespace Word {
|
|
|
75615
75615
|
*/
|
|
75616
75616
|
insertText(text: string, insertLocation: Word.InsertLocation): Word.CommentContentRange;
|
|
75617
75617
|
/**
|
|
75618
|
-
* Inserts text into at the specified location.
|
|
75618
|
+
* 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
75619
|
*
|
|
75620
75620
|
* @remarks
|
|
75621
75621
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -75646,11 +75646,11 @@ declare namespace Word {
|
|
|
75646
75646
|
expand?: string;
|
|
75647
75647
|
}): Word.CommentContentRange;
|
|
75648
75648
|
/**
|
|
75649
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75649
|
+
* 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
75650
|
*/
|
|
75651
75651
|
track(): Word.CommentContentRange;
|
|
75652
75652
|
/**
|
|
75653
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75653
|
+
* 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
75654
|
*/
|
|
75655
75655
|
untrack(): Word.CommentContentRange;
|
|
75656
75656
|
/**
|
|
@@ -75754,11 +75754,11 @@ declare namespace Word {
|
|
|
75754
75754
|
expand?: string;
|
|
75755
75755
|
}): Word.CommentReply;
|
|
75756
75756
|
/**
|
|
75757
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75757
|
+
* 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
75758
|
*/
|
|
75759
75759
|
track(): Word.CommentReply;
|
|
75760
75760
|
/**
|
|
75761
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75761
|
+
* 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
75762
|
*/
|
|
75763
75763
|
untrack(): Word.CommentReply;
|
|
75764
75764
|
/**
|
|
@@ -75820,11 +75820,11 @@ declare namespace Word {
|
|
|
75820
75820
|
*/
|
|
75821
75821
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
75822
75822
|
/**
|
|
75823
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
75823
|
+
* 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
75824
|
*/
|
|
75825
75825
|
track(): Word.CommentReplyCollection;
|
|
75826
75826
|
/**
|
|
75827
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
75827
|
+
* 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
75828
|
*/
|
|
75829
75829
|
untrack(): Word.CommentReplyCollection;
|
|
75830
75830
|
/**
|
|
@@ -76071,7 +76071,7 @@ declare namespace Word {
|
|
|
76071
76071
|
*/
|
|
76072
76072
|
delete(keepContent: boolean): void;
|
|
76073
76073
|
/**
|
|
76074
|
-
* Gets comments associated with the
|
|
76074
|
+
* Gets comments associated with the content control.
|
|
76075
76075
|
*
|
|
76076
76076
|
* @remarks
|
|
76077
76077
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -76371,11 +76371,11 @@ declare namespace Word {
|
|
|
76371
76371
|
expand?: string;
|
|
76372
76372
|
}): Word.ContentControl;
|
|
76373
76373
|
/**
|
|
76374
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76374
|
+
* 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
76375
|
*/
|
|
76376
76376
|
track(): Word.ContentControl;
|
|
76377
76377
|
/**
|
|
76378
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76378
|
+
* 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
76379
|
*/
|
|
76380
76380
|
untrack(): Word.ContentControl;
|
|
76381
76381
|
/**
|
|
@@ -76482,11 +76482,11 @@ declare namespace Word {
|
|
|
76482
76482
|
*/
|
|
76483
76483
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
76484
76484
|
/**
|
|
76485
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76485
|
+
* 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
76486
|
*/
|
|
76487
76487
|
track(): Word.ContentControlCollection;
|
|
76488
76488
|
/**
|
|
76489
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76489
|
+
* 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
76490
|
*/
|
|
76491
76491
|
untrack(): Word.ContentControlCollection;
|
|
76492
76492
|
/**
|
|
@@ -76562,11 +76562,11 @@ declare namespace Word {
|
|
|
76562
76562
|
expand?: string;
|
|
76563
76563
|
}): Word.CustomProperty;
|
|
76564
76564
|
/**
|
|
76565
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76565
|
+
* 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
76566
|
*/
|
|
76567
76567
|
track(): Word.CustomProperty;
|
|
76568
76568
|
/**
|
|
76569
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76569
|
+
* 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
76570
|
*/
|
|
76571
76571
|
untrack(): Word.CustomProperty;
|
|
76572
76572
|
/**
|
|
@@ -76647,11 +76647,11 @@ declare namespace Word {
|
|
|
76647
76647
|
*/
|
|
76648
76648
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
76649
76649
|
/**
|
|
76650
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76650
|
+
* 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
76651
|
*/
|
|
76652
76652
|
track(): Word.CustomPropertyCollection;
|
|
76653
76653
|
/**
|
|
76654
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76654
|
+
* 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
76655
|
*/
|
|
76656
76656
|
untrack(): Word.CustomPropertyCollection;
|
|
76657
76657
|
/**
|
|
@@ -76786,11 +76786,11 @@ declare namespace Word {
|
|
|
76786
76786
|
expand?: string;
|
|
76787
76787
|
}): Word.Document;
|
|
76788
76788
|
/**
|
|
76789
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76789
|
+
* 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
76790
|
*/
|
|
76791
76791
|
track(): Word.Document;
|
|
76792
76792
|
/**
|
|
76793
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76793
|
+
* 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
76794
|
*/
|
|
76795
76795
|
untrack(): Word.Document;
|
|
76796
76796
|
/**
|
|
@@ -76887,11 +76887,11 @@ declare namespace Word {
|
|
|
76887
76887
|
expand?: string;
|
|
76888
76888
|
}): Word.DocumentCreated;
|
|
76889
76889
|
/**
|
|
76890
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
76890
|
+
* 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
76891
|
*/
|
|
76892
76892
|
track(): Word.DocumentCreated;
|
|
76893
76893
|
/**
|
|
76894
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
76894
|
+
* 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
76895
|
*/
|
|
76896
76896
|
untrack(): Word.DocumentCreated;
|
|
76897
76897
|
/**
|
|
@@ -77065,11 +77065,11 @@ declare namespace Word {
|
|
|
77065
77065
|
expand?: string;
|
|
77066
77066
|
}): Word.DocumentProperties;
|
|
77067
77067
|
/**
|
|
77068
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77068
|
+
* 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
77069
|
*/
|
|
77070
77070
|
track(): Word.DocumentProperties;
|
|
77071
77071
|
/**
|
|
77072
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77072
|
+
* 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
77073
|
*/
|
|
77074
77074
|
untrack(): Word.DocumentProperties;
|
|
77075
77075
|
/**
|
|
@@ -77195,11 +77195,11 @@ declare namespace Word {
|
|
|
77195
77195
|
expand?: string;
|
|
77196
77196
|
}): Word.Font;
|
|
77197
77197
|
/**
|
|
77198
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77198
|
+
* 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
77199
|
*/
|
|
77200
77200
|
track(): Word.Font;
|
|
77201
77201
|
/**
|
|
77202
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77202
|
+
* 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
77203
|
*/
|
|
77204
77204
|
untrack(): Word.Font;
|
|
77205
77205
|
/**
|
|
@@ -77549,11 +77549,11 @@ declare namespace Word {
|
|
|
77549
77549
|
expand?: string;
|
|
77550
77550
|
}): Word.InlinePicture;
|
|
77551
77551
|
/**
|
|
77552
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77552
|
+
* 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
77553
|
*/
|
|
77554
77554
|
track(): Word.InlinePicture;
|
|
77555
77555
|
/**
|
|
77556
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77556
|
+
* 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
77557
|
*/
|
|
77558
77558
|
untrack(): Word.InlinePicture;
|
|
77559
77559
|
/**
|
|
@@ -77606,11 +77606,11 @@ declare namespace Word {
|
|
|
77606
77606
|
*/
|
|
77607
77607
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
77608
77608
|
/**
|
|
77609
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77609
|
+
* 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
77610
|
*/
|
|
77611
77611
|
track(): Word.InlinePictureCollection;
|
|
77612
77612
|
/**
|
|
77613
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77613
|
+
* 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
77614
|
*/
|
|
77615
77615
|
untrack(): Word.InlinePictureCollection;
|
|
77616
77616
|
/**
|
|
@@ -77803,11 +77803,11 @@ declare namespace Word {
|
|
|
77803
77803
|
expand?: string;
|
|
77804
77804
|
}): Word.List;
|
|
77805
77805
|
/**
|
|
77806
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77806
|
+
* 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
77807
|
*/
|
|
77808
77808
|
track(): Word.List;
|
|
77809
77809
|
/**
|
|
77810
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77810
|
+
* 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
77811
|
*/
|
|
77812
77812
|
untrack(): Word.List;
|
|
77813
77813
|
/**
|
|
@@ -77887,11 +77887,11 @@ declare namespace Word {
|
|
|
77887
77887
|
*/
|
|
77888
77888
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
77889
77889
|
/**
|
|
77890
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77890
|
+
* 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
77891
|
*/
|
|
77892
77892
|
track(): Word.ListCollection;
|
|
77893
77893
|
/**
|
|
77894
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77894
|
+
* 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
77895
|
*/
|
|
77896
77896
|
untrack(): Word.ListCollection;
|
|
77897
77897
|
/**
|
|
@@ -77987,11 +77987,11 @@ declare namespace Word {
|
|
|
77987
77987
|
expand?: string;
|
|
77988
77988
|
}): Word.ListItem;
|
|
77989
77989
|
/**
|
|
77990
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
77990
|
+
* 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
77991
|
*/
|
|
77992
77992
|
track(): Word.ListItem;
|
|
77993
77993
|
/**
|
|
77994
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
77994
|
+
* 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
77995
|
*/
|
|
77996
77996
|
untrack(): Word.ListItem;
|
|
77997
77997
|
/**
|
|
@@ -78081,11 +78081,11 @@ declare namespace Word {
|
|
|
78081
78081
|
expand?: string;
|
|
78082
78082
|
}): Word.NoteItem;
|
|
78083
78083
|
/**
|
|
78084
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78084
|
+
* 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
78085
|
*/
|
|
78086
78086
|
track(): Word.NoteItem;
|
|
78087
78087
|
/**
|
|
78088
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78088
|
+
* 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
78089
|
*/
|
|
78090
78090
|
untrack(): Word.NoteItem;
|
|
78091
78091
|
/**
|
|
@@ -78138,11 +78138,11 @@ declare namespace Word {
|
|
|
78138
78138
|
*/
|
|
78139
78139
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
78140
78140
|
/**
|
|
78141
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78141
|
+
* 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
78142
|
*/
|
|
78143
78143
|
track(): Word.NoteItemCollection;
|
|
78144
78144
|
/**
|
|
78145
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78145
|
+
* 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
78146
|
*/
|
|
78147
78147
|
untrack(): Word.NoteItemCollection;
|
|
78148
78148
|
/**
|
|
@@ -78765,11 +78765,11 @@ declare namespace Word {
|
|
|
78765
78765
|
expand?: string;
|
|
78766
78766
|
}): Word.Paragraph;
|
|
78767
78767
|
/**
|
|
78768
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78768
|
+
* 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
78769
|
*/
|
|
78770
78770
|
track(): Word.Paragraph;
|
|
78771
78771
|
/**
|
|
78772
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78772
|
+
* 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
78773
|
*/
|
|
78774
78774
|
untrack(): Word.Paragraph;
|
|
78775
78775
|
/**
|
|
@@ -78836,11 +78836,11 @@ declare namespace Word {
|
|
|
78836
78836
|
*/
|
|
78837
78837
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
78838
78838
|
/**
|
|
78839
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
78839
|
+
* 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
78840
|
*/
|
|
78841
78841
|
track(): Word.ParagraphCollection;
|
|
78842
78842
|
/**
|
|
78843
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
78843
|
+
* 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
78844
|
*/
|
|
78845
78845
|
untrack(): Word.ParagraphCollection;
|
|
78846
78846
|
/**
|
|
@@ -79429,11 +79429,11 @@ declare namespace Word {
|
|
|
79429
79429
|
expand?: string;
|
|
79430
79430
|
}): Word.Range;
|
|
79431
79431
|
/**
|
|
79432
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79432
|
+
* 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
79433
|
*/
|
|
79434
79434
|
track(): Word.Range;
|
|
79435
79435
|
/**
|
|
79436
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79436
|
+
* 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
79437
|
*/
|
|
79438
79438
|
untrack(): Word.Range;
|
|
79439
79439
|
/**
|
|
@@ -79486,11 +79486,11 @@ declare namespace Word {
|
|
|
79486
79486
|
*/
|
|
79487
79487
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
79488
79488
|
/**
|
|
79489
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79489
|
+
* 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
79490
|
*/
|
|
79491
79491
|
track(): Word.RangeCollection;
|
|
79492
79492
|
/**
|
|
79493
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79493
|
+
* 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
79494
|
*/
|
|
79495
79495
|
untrack(): Word.RangeCollection;
|
|
79496
79496
|
/**
|
|
@@ -79694,11 +79694,11 @@ declare namespace Word {
|
|
|
79694
79694
|
expand?: string;
|
|
79695
79695
|
}): Word.Section;
|
|
79696
79696
|
/**
|
|
79697
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79697
|
+
* 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
79698
|
*/
|
|
79699
79699
|
track(): Word.Section;
|
|
79700
79700
|
/**
|
|
79701
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79701
|
+
* 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
79702
|
*/
|
|
79703
79703
|
untrack(): Word.Section;
|
|
79704
79704
|
/**
|
|
@@ -79751,11 +79751,11 @@ declare namespace Word {
|
|
|
79751
79751
|
*/
|
|
79752
79752
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
79753
79753
|
/**
|
|
79754
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
79754
|
+
* 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
79755
|
*/
|
|
79756
79756
|
track(): Word.SectionCollection;
|
|
79757
79757
|
/**
|
|
79758
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
79758
|
+
* 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
79759
|
*/
|
|
79760
79760
|
untrack(): Word.SectionCollection;
|
|
79761
79761
|
/**
|
|
@@ -80321,11 +80321,11 @@ declare namespace Word {
|
|
|
80321
80321
|
expand?: string;
|
|
80322
80322
|
}): Word.Table;
|
|
80323
80323
|
/**
|
|
80324
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80324
|
+
* 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
80325
|
*/
|
|
80326
80326
|
track(): Word.Table;
|
|
80327
80327
|
/**
|
|
80328
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80328
|
+
* 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
80329
|
*/
|
|
80330
80330
|
untrack(): Word.Table;
|
|
80331
80331
|
/**
|
|
@@ -80378,11 +80378,11 @@ declare namespace Word {
|
|
|
80378
80378
|
*/
|
|
80379
80379
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
80380
80380
|
/**
|
|
80381
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80381
|
+
* 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
80382
|
*/
|
|
80383
80383
|
track(): Word.TableCollection;
|
|
80384
80384
|
/**
|
|
80385
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80385
|
+
* 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
80386
|
*/
|
|
80387
80387
|
untrack(): Word.TableCollection;
|
|
80388
80388
|
/**
|
|
@@ -80663,11 +80663,11 @@ declare namespace Word {
|
|
|
80663
80663
|
expand?: string;
|
|
80664
80664
|
}): Word.TableRow;
|
|
80665
80665
|
/**
|
|
80666
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80666
|
+
* 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
80667
|
*/
|
|
80668
80668
|
track(): Word.TableRow;
|
|
80669
80669
|
/**
|
|
80670
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80670
|
+
* 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
80671
|
*/
|
|
80672
80672
|
untrack(): Word.TableRow;
|
|
80673
80673
|
/**
|
|
@@ -80720,11 +80720,11 @@ declare namespace Word {
|
|
|
80720
80720
|
*/
|
|
80721
80721
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
80722
80722
|
/**
|
|
80723
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80723
|
+
* 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
80724
|
*/
|
|
80725
80725
|
track(): Word.TableRowCollection;
|
|
80726
80726
|
/**
|
|
80727
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80727
|
+
* 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
80728
|
*/
|
|
80729
80729
|
untrack(): Word.TableRowCollection;
|
|
80730
80730
|
/**
|
|
@@ -80977,11 +80977,11 @@ declare namespace Word {
|
|
|
80977
80977
|
expand?: string;
|
|
80978
80978
|
}): Word.TableCell;
|
|
80979
80979
|
/**
|
|
80980
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
80980
|
+
* 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
80981
|
*/
|
|
80982
80982
|
track(): Word.TableCell;
|
|
80983
80983
|
/**
|
|
80984
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
80984
|
+
* 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
80985
|
*/
|
|
80986
80986
|
untrack(): Word.TableCell;
|
|
80987
80987
|
/**
|
|
@@ -81034,11 +81034,11 @@ declare namespace Word {
|
|
|
81034
81034
|
*/
|
|
81035
81035
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
81036
81036
|
/**
|
|
81037
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
81037
|
+
* 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
81038
|
*/
|
|
81039
81039
|
track(): Word.TableCellCollection;
|
|
81040
81040
|
/**
|
|
81041
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
81041
|
+
* 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
81042
|
*/
|
|
81043
81043
|
untrack(): Word.TableCellCollection;
|
|
81044
81044
|
/**
|
|
@@ -81107,11 +81107,11 @@ declare namespace Word {
|
|
|
81107
81107
|
expand?: string;
|
|
81108
81108
|
}): Word.TableBorder;
|
|
81109
81109
|
/**
|
|
81110
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
81110
|
+
* 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
81111
|
*/
|
|
81112
81112
|
track(): Word.TableBorder;
|
|
81113
81113
|
/**
|
|
81114
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
81114
|
+
* 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
81115
|
*/
|
|
81116
81116
|
untrack(): Word.TableBorder;
|
|
81117
81117
|
/**
|
|
@@ -81182,56 +81182,6 @@ declare namespace Word {
|
|
|
81182
81182
|
*/
|
|
81183
81183
|
endnote = "Endnote",
|
|
81184
81184
|
}
|
|
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
81185
|
/**
|
|
81236
81186
|
* Specifies supported content control types and subtypes.
|
|
81237
81187
|
*
|
|
@@ -81330,7 +81280,7 @@ declare namespace Word {
|
|
|
81330
81280
|
plainText = "PlainText",
|
|
81331
81281
|
}
|
|
81332
81282
|
/**
|
|
81333
|
-
* ContentControl appearance
|
|
81283
|
+
* ContentControl appearance.
|
|
81334
81284
|
*
|
|
81335
81285
|
* @remarks
|
|
81336
81286
|
* [Api set: WordApi 1.1]
|
|
@@ -81544,7 +81494,7 @@ declare namespace Word {
|
|
|
81544
81494
|
* @remarks
|
|
81545
81495
|
* [Api set: WordApi 1.1]
|
|
81546
81496
|
*
|
|
81547
|
-
* To be used with an API call, such as `obj.insertSomething(newStuff, location)
|
|
81497
|
+
* To be used with an API call, such as `obj.insertSomething(newStuff, location);`.
|
|
81548
81498
|
* If the location is "Before" or "After", the new content will be outside of the modified object.
|
|
81549
81499
|
* If the location is "Start" or "End", the new content will be included as part of the modified object.
|
|
81550
81500
|
*/
|
|
@@ -81627,7 +81577,7 @@ declare namespace Word {
|
|
|
81627
81577
|
*/
|
|
81628
81578
|
enum HeaderFooterType {
|
|
81629
81579
|
/**
|
|
81630
|
-
* Returns the header or footer on all pages of a section, but excludes the first page or
|
|
81580
|
+
* Returns the header or footer on all pages of a section, but excludes the first page or even pages if they are different.
|
|
81631
81581
|
* @remarks
|
|
81632
81582
|
* [Api set: WordApi 1.1]
|
|
81633
81583
|
*/
|
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.268",
|
|
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": "e84605bf2defae97ba0a8bd9f9f2dcd0471d9d5a8f2ae6d301ce9429d7c902a2",
|
|
49
49
|
"typeScriptVersion": "4.0"
|
|
50
50
|
}
|