@types/office-js-preview 1.0.319 → 1.0.322
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js-preview/README.md +1 -1
- office-js-preview/index.d.ts +119 -113
- office-js-preview/package.json +2 -2
office-js-preview/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-preview.
|
|
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-preview/index.d.ts
CHANGED
|
@@ -8533,7 +8533,7 @@ declare namespace Office {
|
|
|
8533
8533
|
Preset24
|
|
8534
8534
|
}
|
|
8535
8535
|
/**
|
|
8536
|
-
*
|
|
8536
|
+
* Specifies a message's compose type.
|
|
8537
8537
|
*
|
|
8538
8538
|
* @remarks
|
|
8539
8539
|
* [Api set: Mailbox 1.10]
|
|
@@ -9959,6 +9959,11 @@ declare namespace Office {
|
|
|
9959
9959
|
*
|
|
9960
9960
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
9961
9961
|
*
|
|
9962
|
+
* **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
|
|
9963
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
9964
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
9965
|
+
* 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}.
|
|
9966
|
+
*
|
|
9962
9967
|
* @param base64File - The base64 encoded content of an image or file to be added to an email or event.
|
|
9963
9968
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
9964
9969
|
* @param options - An object literal that contains one or more of the following properties.
|
|
@@ -9998,6 +10003,11 @@ declare namespace Office {
|
|
|
9998
10003
|
*
|
|
9999
10004
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
10000
10005
|
*
|
|
10006
|
+
* **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
|
|
10007
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
10008
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
10009
|
+
* 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}.
|
|
10010
|
+
*
|
|
10001
10011
|
* @param base64File - The base64 encoded content of an image or file to be added to an email or event.
|
|
10002
10012
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
10003
10013
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter
|
|
@@ -15083,6 +15093,11 @@ declare namespace Office {
|
|
|
15083
15093
|
*
|
|
15084
15094
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
15085
15095
|
*
|
|
15096
|
+
* **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
|
|
15097
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
15098
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
15099
|
+
* 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}.
|
|
15100
|
+
*
|
|
15086
15101
|
* @param base64File - The base64-encoded content of an image or file to be added to an email or event.
|
|
15087
15102
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
15088
15103
|
* @param options - An object literal that contains one or more of the following properties.
|
|
@@ -15119,6 +15134,11 @@ declare namespace Office {
|
|
|
15119
15134
|
*
|
|
15120
15135
|
* - `NumberOfAttachmentsExceeded`: The message or appointment has too many attachments.
|
|
15121
15136
|
*
|
|
15137
|
+
* **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
|
|
15138
|
+
* {@link https://docs.microsoft.com/javascript/api/outlook/office.body#outlook-office-body-getasync-member(1) | Office.context.mailbox.item.body.getAsync}
|
|
15139
|
+
* method before inserting the image using `addFileAttachmentFromBase64Async`. Otherwise, the image will not render in the body once it's inserted.
|
|
15140
|
+
* 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}.
|
|
15141
|
+
*
|
|
15122
15142
|
* @param base64File - The base64-encoded content of an image or file to be added to an email or event.
|
|
15123
15143
|
* @param attachmentName - The name of the attachment that is shown while the attachment is uploading. The maximum length is 255 characters.
|
|
15124
15144
|
* @param callback - Optional. When the method completes, the function passed in the `callback` parameter is called with a single parameter of
|
|
@@ -83960,11 +83980,11 @@ declare namespace Word {
|
|
|
83960
83980
|
expand?: string;
|
|
83961
83981
|
}): Word.Body;
|
|
83962
83982
|
/**
|
|
83963
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
83983
|
+
* 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.
|
|
83964
83984
|
*/
|
|
83965
83985
|
track(): Word.Body;
|
|
83966
83986
|
/**
|
|
83967
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
83987
|
+
* 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.
|
|
83968
83988
|
*/
|
|
83969
83989
|
untrack(): Word.Body;
|
|
83970
83990
|
/**
|
|
@@ -84091,11 +84111,11 @@ declare namespace Word {
|
|
|
84091
84111
|
expand?: string;
|
|
84092
84112
|
}): Word.Comment;
|
|
84093
84113
|
/**
|
|
84094
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84114
|
+
* 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.
|
|
84095
84115
|
*/
|
|
84096
84116
|
track(): Word.Comment;
|
|
84097
84117
|
/**
|
|
84098
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84118
|
+
* 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.
|
|
84099
84119
|
*/
|
|
84100
84120
|
untrack(): Word.Comment;
|
|
84101
84121
|
/**
|
|
@@ -84157,11 +84177,11 @@ declare namespace Word {
|
|
|
84157
84177
|
*/
|
|
84158
84178
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
84159
84179
|
/**
|
|
84160
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84180
|
+
* 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.
|
|
84161
84181
|
*/
|
|
84162
84182
|
track(): Word.CommentCollection;
|
|
84163
84183
|
/**
|
|
84164
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84184
|
+
* 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.
|
|
84165
84185
|
*/
|
|
84166
84186
|
untrack(): Word.CommentCollection;
|
|
84167
84187
|
/**
|
|
@@ -84235,7 +84255,7 @@ declare namespace Word {
|
|
|
84235
84255
|
/** Sets multiple properties on the object at the same time, based on an existing loaded object. */
|
|
84236
84256
|
set(properties: Word.CommentContentRange): void;
|
|
84237
84257
|
/**
|
|
84238
|
-
* Inserts text into at the specified location.
|
|
84258
|
+
* 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.
|
|
84239
84259
|
*
|
|
84240
84260
|
* @remarks
|
|
84241
84261
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -84245,7 +84265,7 @@ declare namespace Word {
|
|
|
84245
84265
|
*/
|
|
84246
84266
|
insertText(text: string, insertLocation: Word.InsertLocation): Word.CommentContentRange;
|
|
84247
84267
|
/**
|
|
84248
|
-
* Inserts text into at the specified location.
|
|
84268
|
+
* 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.
|
|
84249
84269
|
*
|
|
84250
84270
|
* @remarks
|
|
84251
84271
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -84276,11 +84296,11 @@ declare namespace Word {
|
|
|
84276
84296
|
expand?: string;
|
|
84277
84297
|
}): Word.CommentContentRange;
|
|
84278
84298
|
/**
|
|
84279
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84299
|
+
* 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.
|
|
84280
84300
|
*/
|
|
84281
84301
|
track(): Word.CommentContentRange;
|
|
84282
84302
|
/**
|
|
84283
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84303
|
+
* 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.
|
|
84284
84304
|
*/
|
|
84285
84305
|
untrack(): Word.CommentContentRange;
|
|
84286
84306
|
/**
|
|
@@ -84384,11 +84404,11 @@ declare namespace Word {
|
|
|
84384
84404
|
expand?: string;
|
|
84385
84405
|
}): Word.CommentReply;
|
|
84386
84406
|
/**
|
|
84387
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84407
|
+
* 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.
|
|
84388
84408
|
*/
|
|
84389
84409
|
track(): Word.CommentReply;
|
|
84390
84410
|
/**
|
|
84391
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84411
|
+
* 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.
|
|
84392
84412
|
*/
|
|
84393
84413
|
untrack(): Word.CommentReply;
|
|
84394
84414
|
/**
|
|
@@ -84450,11 +84470,11 @@ declare namespace Word {
|
|
|
84450
84470
|
*/
|
|
84451
84471
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
84452
84472
|
/**
|
|
84453
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84473
|
+
* 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.
|
|
84454
84474
|
*/
|
|
84455
84475
|
track(): Word.CommentReplyCollection;
|
|
84456
84476
|
/**
|
|
84457
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84477
|
+
* 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.
|
|
84458
84478
|
*/
|
|
84459
84479
|
untrack(): Word.CommentReplyCollection;
|
|
84460
84480
|
/**
|
|
@@ -84709,7 +84729,7 @@ declare namespace Word {
|
|
|
84709
84729
|
*/
|
|
84710
84730
|
delete(keepContent: boolean): void;
|
|
84711
84731
|
/**
|
|
84712
|
-
* Gets comments associated with the
|
|
84732
|
+
* Gets comments associated with the content control.
|
|
84713
84733
|
*
|
|
84714
84734
|
* @remarks
|
|
84715
84735
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -85039,11 +85059,11 @@ declare namespace Word {
|
|
|
85039
85059
|
*/
|
|
85040
85060
|
readonly onSelectionChanged: OfficeExtension.EventHandlers<Word.ContentControlEventArgs>;
|
|
85041
85061
|
/**
|
|
85042
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85062
|
+
* 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.
|
|
85043
85063
|
*/
|
|
85044
85064
|
track(): Word.ContentControl;
|
|
85045
85065
|
/**
|
|
85046
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85066
|
+
* 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.
|
|
85047
85067
|
*/
|
|
85048
85068
|
untrack(): Word.ContentControl;
|
|
85049
85069
|
/**
|
|
@@ -85150,11 +85170,11 @@ declare namespace Word {
|
|
|
85150
85170
|
*/
|
|
85151
85171
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
85152
85172
|
/**
|
|
85153
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85173
|
+
* 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.
|
|
85154
85174
|
*/
|
|
85155
85175
|
track(): Word.ContentControlCollection;
|
|
85156
85176
|
/**
|
|
85157
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85177
|
+
* 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.
|
|
85158
85178
|
*/
|
|
85159
85179
|
untrack(): Word.ContentControlCollection;
|
|
85160
85180
|
/**
|
|
@@ -85230,11 +85250,11 @@ declare namespace Word {
|
|
|
85230
85250
|
expand?: string;
|
|
85231
85251
|
}): Word.CustomProperty;
|
|
85232
85252
|
/**
|
|
85233
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85253
|
+
* 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.
|
|
85234
85254
|
*/
|
|
85235
85255
|
track(): Word.CustomProperty;
|
|
85236
85256
|
/**
|
|
85237
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85257
|
+
* 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.
|
|
85238
85258
|
*/
|
|
85239
85259
|
untrack(): Word.CustomProperty;
|
|
85240
85260
|
/**
|
|
@@ -85315,11 +85335,11 @@ declare namespace Word {
|
|
|
85315
85335
|
*/
|
|
85316
85336
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
85317
85337
|
/**
|
|
85318
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85338
|
+
* 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.
|
|
85319
85339
|
*/
|
|
85320
85340
|
track(): Word.CustomPropertyCollection;
|
|
85321
85341
|
/**
|
|
85322
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85342
|
+
* 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.
|
|
85323
85343
|
*/
|
|
85324
85344
|
untrack(): Word.CustomPropertyCollection;
|
|
85325
85345
|
/**
|
|
@@ -85607,11 +85627,11 @@ declare namespace Word {
|
|
|
85607
85627
|
expand?: string;
|
|
85608
85628
|
}): Word.CustomXmlPart;
|
|
85609
85629
|
/**
|
|
85610
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85630
|
+
* 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.
|
|
85611
85631
|
*/
|
|
85612
85632
|
track(): Word.CustomXmlPart;
|
|
85613
85633
|
/**
|
|
85614
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85634
|
+
* 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.
|
|
85615
85635
|
*/
|
|
85616
85636
|
untrack(): Word.CustomXmlPart;
|
|
85617
85637
|
/**
|
|
@@ -85699,11 +85719,11 @@ declare namespace Word {
|
|
|
85699
85719
|
*/
|
|
85700
85720
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartCollection;
|
|
85701
85721
|
/**
|
|
85702
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85722
|
+
* 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.
|
|
85703
85723
|
*/
|
|
85704
85724
|
track(): Word.CustomXmlPartCollection;
|
|
85705
85725
|
/**
|
|
85706
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85726
|
+
* 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.
|
|
85707
85727
|
*/
|
|
85708
85728
|
untrack(): Word.CustomXmlPartCollection;
|
|
85709
85729
|
/**
|
|
@@ -85787,11 +85807,11 @@ declare namespace Word {
|
|
|
85787
85807
|
*/
|
|
85788
85808
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartScopedCollection;
|
|
85789
85809
|
/**
|
|
85790
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85810
|
+
* 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.
|
|
85791
85811
|
*/
|
|
85792
85812
|
track(): Word.CustomXmlPartScopedCollection;
|
|
85793
85813
|
/**
|
|
85794
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85814
|
+
* 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.
|
|
85795
85815
|
*/
|
|
85796
85816
|
untrack(): Word.CustomXmlPartScopedCollection;
|
|
85797
85817
|
/**
|
|
@@ -85982,11 +86002,11 @@ declare namespace Word {
|
|
|
85982
86002
|
*/
|
|
85983
86003
|
readonly onContentControlAdded: OfficeExtension.EventHandlers<Word.ContentControlEventArgs>;
|
|
85984
86004
|
/**
|
|
85985
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86005
|
+
* 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.
|
|
85986
86006
|
*/
|
|
85987
86007
|
track(): Word.Document;
|
|
85988
86008
|
/**
|
|
85989
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86009
|
+
* 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.
|
|
85990
86010
|
*/
|
|
85991
86011
|
untrack(): Word.Document;
|
|
85992
86012
|
/**
|
|
@@ -86129,11 +86149,11 @@ declare namespace Word {
|
|
|
86129
86149
|
expand?: string;
|
|
86130
86150
|
}): Word.DocumentCreated;
|
|
86131
86151
|
/**
|
|
86132
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86152
|
+
* 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.
|
|
86133
86153
|
*/
|
|
86134
86154
|
track(): Word.DocumentCreated;
|
|
86135
86155
|
/**
|
|
86136
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86156
|
+
* 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.
|
|
86137
86157
|
*/
|
|
86138
86158
|
untrack(): Word.DocumentCreated;
|
|
86139
86159
|
/**
|
|
@@ -86307,11 +86327,11 @@ declare namespace Word {
|
|
|
86307
86327
|
expand?: string;
|
|
86308
86328
|
}): Word.DocumentProperties;
|
|
86309
86329
|
/**
|
|
86310
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86330
|
+
* 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.
|
|
86311
86331
|
*/
|
|
86312
86332
|
track(): Word.DocumentProperties;
|
|
86313
86333
|
/**
|
|
86314
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86334
|
+
* 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.
|
|
86315
86335
|
*/
|
|
86316
86336
|
untrack(): Word.DocumentProperties;
|
|
86317
86337
|
/**
|
|
@@ -86456,11 +86476,11 @@ declare namespace Word {
|
|
|
86456
86476
|
expand?: string;
|
|
86457
86477
|
}): Word.Field;
|
|
86458
86478
|
/**
|
|
86459
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86479
|
+
* 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.
|
|
86460
86480
|
*/
|
|
86461
86481
|
track(): Word.Field;
|
|
86462
86482
|
/**
|
|
86463
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86483
|
+
* 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.
|
|
86464
86484
|
*/
|
|
86465
86485
|
untrack(): Word.Field;
|
|
86466
86486
|
/**
|
|
@@ -86516,11 +86536,11 @@ declare namespace Word {
|
|
|
86516
86536
|
*/
|
|
86517
86537
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.FieldCollection;
|
|
86518
86538
|
/**
|
|
86519
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86539
|
+
* 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.
|
|
86520
86540
|
*/
|
|
86521
86541
|
track(): Word.FieldCollection;
|
|
86522
86542
|
/**
|
|
86523
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86543
|
+
* 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.
|
|
86524
86544
|
*/
|
|
86525
86545
|
untrack(): Word.FieldCollection;
|
|
86526
86546
|
/**
|
|
@@ -86646,11 +86666,11 @@ declare namespace Word {
|
|
|
86646
86666
|
expand?: string;
|
|
86647
86667
|
}): Word.Font;
|
|
86648
86668
|
/**
|
|
86649
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86669
|
+
* 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.
|
|
86650
86670
|
*/
|
|
86651
86671
|
track(): Word.Font;
|
|
86652
86672
|
/**
|
|
86653
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86673
|
+
* 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.
|
|
86654
86674
|
*/
|
|
86655
86675
|
untrack(): Word.Font;
|
|
86656
86676
|
/**
|
|
@@ -87008,11 +87028,11 @@ declare namespace Word {
|
|
|
87008
87028
|
expand?: string;
|
|
87009
87029
|
}): Word.InlinePicture;
|
|
87010
87030
|
/**
|
|
87011
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87031
|
+
* 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.
|
|
87012
87032
|
*/
|
|
87013
87033
|
track(): Word.InlinePicture;
|
|
87014
87034
|
/**
|
|
87015
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87035
|
+
* 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.
|
|
87016
87036
|
*/
|
|
87017
87037
|
untrack(): Word.InlinePicture;
|
|
87018
87038
|
/**
|
|
@@ -87065,11 +87085,11 @@ declare namespace Word {
|
|
|
87065
87085
|
*/
|
|
87066
87086
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
87067
87087
|
/**
|
|
87068
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87088
|
+
* 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.
|
|
87069
87089
|
*/
|
|
87070
87090
|
track(): Word.InlinePictureCollection;
|
|
87071
87091
|
/**
|
|
87072
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87092
|
+
* 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.
|
|
87073
87093
|
*/
|
|
87074
87094
|
untrack(): Word.InlinePictureCollection;
|
|
87075
87095
|
/**
|
|
@@ -87304,11 +87324,11 @@ declare namespace Word {
|
|
|
87304
87324
|
expand?: string;
|
|
87305
87325
|
}): Word.List;
|
|
87306
87326
|
/**
|
|
87307
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87327
|
+
* 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.
|
|
87308
87328
|
*/
|
|
87309
87329
|
track(): Word.List;
|
|
87310
87330
|
/**
|
|
87311
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87331
|
+
* 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.
|
|
87312
87332
|
*/
|
|
87313
87333
|
untrack(): Word.List;
|
|
87314
87334
|
/**
|
|
@@ -87388,11 +87408,11 @@ declare namespace Word {
|
|
|
87388
87408
|
*/
|
|
87389
87409
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
87390
87410
|
/**
|
|
87391
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87411
|
+
* 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.
|
|
87392
87412
|
*/
|
|
87393
87413
|
track(): Word.ListCollection;
|
|
87394
87414
|
/**
|
|
87395
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87415
|
+
* 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.
|
|
87396
87416
|
*/
|
|
87397
87417
|
untrack(): Word.ListCollection;
|
|
87398
87418
|
/**
|
|
@@ -87488,11 +87508,11 @@ declare namespace Word {
|
|
|
87488
87508
|
expand?: string;
|
|
87489
87509
|
}): Word.ListItem;
|
|
87490
87510
|
/**
|
|
87491
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87511
|
+
* 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.
|
|
87492
87512
|
*/
|
|
87493
87513
|
track(): Word.ListItem;
|
|
87494
87514
|
/**
|
|
87495
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87515
|
+
* 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.
|
|
87496
87516
|
*/
|
|
87497
87517
|
untrack(): Word.ListItem;
|
|
87498
87518
|
/**
|
|
@@ -87582,11 +87602,11 @@ declare namespace Word {
|
|
|
87582
87602
|
expand?: string;
|
|
87583
87603
|
}): Word.NoteItem;
|
|
87584
87604
|
/**
|
|
87585
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87605
|
+
* 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.
|
|
87586
87606
|
*/
|
|
87587
87607
|
track(): Word.NoteItem;
|
|
87588
87608
|
/**
|
|
87589
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87609
|
+
* 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.
|
|
87590
87610
|
*/
|
|
87591
87611
|
untrack(): Word.NoteItem;
|
|
87592
87612
|
/**
|
|
@@ -87639,11 +87659,11 @@ declare namespace Word {
|
|
|
87639
87659
|
*/
|
|
87640
87660
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
87641
87661
|
/**
|
|
87642
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87662
|
+
* 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.
|
|
87643
87663
|
*/
|
|
87644
87664
|
track(): Word.NoteItemCollection;
|
|
87645
87665
|
/**
|
|
87646
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87666
|
+
* 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.
|
|
87647
87667
|
*/
|
|
87648
87668
|
untrack(): Word.NoteItemCollection;
|
|
87649
87669
|
/**
|
|
@@ -88274,11 +88294,11 @@ declare namespace Word {
|
|
|
88274
88294
|
expand?: string;
|
|
88275
88295
|
}): Word.Paragraph;
|
|
88276
88296
|
/**
|
|
88277
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
88297
|
+
* 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.
|
|
88278
88298
|
*/
|
|
88279
88299
|
track(): Word.Paragraph;
|
|
88280
88300
|
/**
|
|
88281
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
88301
|
+
* 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.
|
|
88282
88302
|
*/
|
|
88283
88303
|
untrack(): Word.Paragraph;
|
|
88284
88304
|
/**
|
|
@@ -88345,11 +88365,11 @@ declare namespace Word {
|
|
|
88345
88365
|
*/
|
|
88346
88366
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
88347
88367
|
/**
|
|
88348
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
88368
|
+
* 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.
|
|
88349
88369
|
*/
|
|
88350
88370
|
track(): Word.ParagraphCollection;
|
|
88351
88371
|
/**
|
|
88352
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
88372
|
+
* 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.
|
|
88353
88373
|
*/
|
|
88354
88374
|
untrack(): Word.ParagraphCollection;
|
|
88355
88375
|
/**
|
|
@@ -88967,11 +88987,11 @@ declare namespace Word {
|
|
|
88967
88987
|
expand?: string;
|
|
88968
88988
|
}): Word.Range;
|
|
88969
88989
|
/**
|
|
88970
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
88990
|
+
* 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.
|
|
88971
88991
|
*/
|
|
88972
88992
|
track(): Word.Range;
|
|
88973
88993
|
/**
|
|
88974
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
88994
|
+
* 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.
|
|
88975
88995
|
*/
|
|
88976
88996
|
untrack(): Word.Range;
|
|
88977
88997
|
/**
|
|
@@ -89024,11 +89044,11 @@ declare namespace Word {
|
|
|
89024
89044
|
*/
|
|
89025
89045
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
89026
89046
|
/**
|
|
89027
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89047
|
+
* 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.
|
|
89028
89048
|
*/
|
|
89029
89049
|
track(): Word.RangeCollection;
|
|
89030
89050
|
/**
|
|
89031
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89051
|
+
* 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.
|
|
89032
89052
|
*/
|
|
89033
89053
|
untrack(): Word.RangeCollection;
|
|
89034
89054
|
/**
|
|
@@ -89232,11 +89252,11 @@ declare namespace Word {
|
|
|
89232
89252
|
expand?: string;
|
|
89233
89253
|
}): Word.Section;
|
|
89234
89254
|
/**
|
|
89235
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89255
|
+
* 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.
|
|
89236
89256
|
*/
|
|
89237
89257
|
track(): Word.Section;
|
|
89238
89258
|
/**
|
|
89239
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89259
|
+
* 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.
|
|
89240
89260
|
*/
|
|
89241
89261
|
untrack(): Word.Section;
|
|
89242
89262
|
/**
|
|
@@ -89289,11 +89309,11 @@ declare namespace Word {
|
|
|
89289
89309
|
*/
|
|
89290
89310
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
89291
89311
|
/**
|
|
89292
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89312
|
+
* 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.
|
|
89293
89313
|
*/
|
|
89294
89314
|
track(): Word.SectionCollection;
|
|
89295
89315
|
/**
|
|
89296
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89316
|
+
* 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.
|
|
89297
89317
|
*/
|
|
89298
89318
|
untrack(): Word.SectionCollection;
|
|
89299
89319
|
/**
|
|
@@ -89366,11 +89386,11 @@ declare namespace Word {
|
|
|
89366
89386
|
expand?: string;
|
|
89367
89387
|
}): Word.Setting;
|
|
89368
89388
|
/**
|
|
89369
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89389
|
+
* 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.
|
|
89370
89390
|
*/
|
|
89371
89391
|
track(): Word.Setting;
|
|
89372
89392
|
/**
|
|
89373
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89393
|
+
* 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.
|
|
89374
89394
|
*/
|
|
89375
89395
|
untrack(): Word.Setting;
|
|
89376
89396
|
/**
|
|
@@ -89457,11 +89477,11 @@ declare namespace Word {
|
|
|
89457
89477
|
*/
|
|
89458
89478
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
|
|
89459
89479
|
/**
|
|
89460
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89480
|
+
* 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.
|
|
89461
89481
|
*/
|
|
89462
89482
|
track(): Word.SettingCollection;
|
|
89463
89483
|
/**
|
|
89464
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89484
|
+
* 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.
|
|
89465
89485
|
*/
|
|
89466
89486
|
untrack(): Word.SettingCollection;
|
|
89467
89487
|
/**
|
|
@@ -90048,11 +90068,11 @@ declare namespace Word {
|
|
|
90048
90068
|
expand?: string;
|
|
90049
90069
|
}): Word.Table;
|
|
90050
90070
|
/**
|
|
90051
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90071
|
+
* 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.
|
|
90052
90072
|
*/
|
|
90053
90073
|
track(): Word.Table;
|
|
90054
90074
|
/**
|
|
90055
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90075
|
+
* 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.
|
|
90056
90076
|
*/
|
|
90057
90077
|
untrack(): Word.Table;
|
|
90058
90078
|
/**
|
|
@@ -90105,11 +90125,11 @@ declare namespace Word {
|
|
|
90105
90125
|
*/
|
|
90106
90126
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
90107
90127
|
/**
|
|
90108
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90128
|
+
* 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.
|
|
90109
90129
|
*/
|
|
90110
90130
|
track(): Word.TableCollection;
|
|
90111
90131
|
/**
|
|
90112
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90132
|
+
* 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.
|
|
90113
90133
|
*/
|
|
90114
90134
|
untrack(): Word.TableCollection;
|
|
90115
90135
|
/**
|
|
@@ -90414,11 +90434,11 @@ declare namespace Word {
|
|
|
90414
90434
|
expand?: string;
|
|
90415
90435
|
}): Word.TableRow;
|
|
90416
90436
|
/**
|
|
90417
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90437
|
+
* 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.
|
|
90418
90438
|
*/
|
|
90419
90439
|
track(): Word.TableRow;
|
|
90420
90440
|
/**
|
|
90421
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90441
|
+
* 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.
|
|
90422
90442
|
*/
|
|
90423
90443
|
untrack(): Word.TableRow;
|
|
90424
90444
|
/**
|
|
@@ -90471,11 +90491,11 @@ declare namespace Word {
|
|
|
90471
90491
|
*/
|
|
90472
90492
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
90473
90493
|
/**
|
|
90474
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90494
|
+
* 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.
|
|
90475
90495
|
*/
|
|
90476
90496
|
track(): Word.TableRowCollection;
|
|
90477
90497
|
/**
|
|
90478
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90498
|
+
* 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.
|
|
90479
90499
|
*/
|
|
90480
90500
|
untrack(): Word.TableRowCollection;
|
|
90481
90501
|
/**
|
|
@@ -90739,11 +90759,11 @@ declare namespace Word {
|
|
|
90739
90759
|
expand?: string;
|
|
90740
90760
|
}): Word.TableCell;
|
|
90741
90761
|
/**
|
|
90742
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90762
|
+
* 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.
|
|
90743
90763
|
*/
|
|
90744
90764
|
track(): Word.TableCell;
|
|
90745
90765
|
/**
|
|
90746
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90766
|
+
* 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.
|
|
90747
90767
|
*/
|
|
90748
90768
|
untrack(): Word.TableCell;
|
|
90749
90769
|
/**
|
|
@@ -90796,11 +90816,11 @@ declare namespace Word {
|
|
|
90796
90816
|
*/
|
|
90797
90817
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
90798
90818
|
/**
|
|
90799
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90819
|
+
* 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.
|
|
90800
90820
|
*/
|
|
90801
90821
|
track(): Word.TableCellCollection;
|
|
90802
90822
|
/**
|
|
90803
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90823
|
+
* 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.
|
|
90804
90824
|
*/
|
|
90805
90825
|
untrack(): Word.TableCellCollection;
|
|
90806
90826
|
/**
|
|
@@ -90869,11 +90889,11 @@ declare namespace Word {
|
|
|
90869
90889
|
expand?: string;
|
|
90870
90890
|
}): Word.TableBorder;
|
|
90871
90891
|
/**
|
|
90872
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90892
|
+
* 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.
|
|
90873
90893
|
*/
|
|
90874
90894
|
track(): Word.TableBorder;
|
|
90875
90895
|
/**
|
|
90876
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90896
|
+
* 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.
|
|
90877
90897
|
*/
|
|
90878
90898
|
untrack(): Word.TableBorder;
|
|
90879
90899
|
/**
|
|
@@ -90945,54 +90965,40 @@ declare namespace Word {
|
|
|
90945
90965
|
endnote = "Endnote",
|
|
90946
90966
|
}
|
|
90947
90967
|
/**
|
|
90948
|
-
* Provides information about the type of a raised event.
|
|
90968
|
+
* Provides information about the type of a raised event.
|
|
90949
90969
|
*
|
|
90950
90970
|
* @remarks
|
|
90951
90971
|
* [Api set: WordApi 1.3]
|
|
90952
90972
|
*/
|
|
90953
90973
|
enum EventType {
|
|
90954
90974
|
/**
|
|
90955
|
-
* ContentControlDeleted
|
|
90975
|
+
* ContentControlDeleted represents the event that the content control has been deleted.
|
|
90956
90976
|
* @remarks
|
|
90957
|
-
* [Api set: WordApi
|
|
90977
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90978
|
+
* @beta
|
|
90958
90979
|
*/
|
|
90959
90980
|
contentControlDeleted = "ContentControlDeleted",
|
|
90960
90981
|
/**
|
|
90961
90982
|
* ContentControlSelectionChanged represents the event that the selection in the content control has been changed.
|
|
90962
90983
|
* @remarks
|
|
90963
|
-
* [Api set: WordApi
|
|
90984
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90985
|
+
* @beta
|
|
90964
90986
|
*/
|
|
90965
90987
|
contentControlSelectionChanged = "ContentControlSelectionChanged",
|
|
90966
90988
|
/**
|
|
90967
90989
|
* ContentControlDataChanged represents the event that the data in the content control have been changed.
|
|
90968
90990
|
* @remarks
|
|
90969
|
-
* [Api set: WordApi
|
|
90991
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90992
|
+
* @beta
|
|
90970
90993
|
*/
|
|
90971
90994
|
contentControlDataChanged = "ContentControlDataChanged",
|
|
90972
90995
|
/**
|
|
90973
90996
|
* ContentControlAdded represents the event a content control has been added to the document.
|
|
90974
90997
|
* @remarks
|
|
90975
|
-
* [Api set: WordApi
|
|
90998
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90999
|
+
* @beta
|
|
90976
91000
|
*/
|
|
90977
91001
|
contentControlAdded = "ContentControlAdded",
|
|
90978
|
-
/**
|
|
90979
|
-
* AnnotationAdded represents the event an annotation has been added to the document.
|
|
90980
|
-
* @remarks
|
|
90981
|
-
* [Api set: WordApi 1.3]
|
|
90982
|
-
*/
|
|
90983
|
-
annotationAdded = "AnnotationAdded",
|
|
90984
|
-
/**
|
|
90985
|
-
* AnnotationAdded represents the event an annotation has been updated in the document.
|
|
90986
|
-
* @remarks
|
|
90987
|
-
* [Api set: WordApi 1.3]
|
|
90988
|
-
*/
|
|
90989
|
-
annotationChanged = "AnnotationChanged",
|
|
90990
|
-
/**
|
|
90991
|
-
* AnnotationAdded represents the event an annotation has been deleted from the document.
|
|
90992
|
-
* @remarks
|
|
90993
|
-
* [Api set: WordApi 1.3]
|
|
90994
|
-
*/
|
|
90995
|
-
annotationDeleted = "AnnotationDeleted",
|
|
90996
91002
|
}
|
|
90997
91003
|
/**
|
|
90998
91004
|
* Provides information about the content control that raised an event.
|
|
@@ -91017,7 +91023,7 @@ declare namespace Word {
|
|
|
91017
91023
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
91018
91024
|
* @beta
|
|
91019
91025
|
*/
|
|
91020
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded"
|
|
91026
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded";
|
|
91021
91027
|
}
|
|
91022
91028
|
/**
|
|
91023
91029
|
* Specifies supported content control types and subtypes.
|
|
@@ -91331,7 +91337,7 @@ declare namespace Word {
|
|
|
91331
91337
|
* @remarks
|
|
91332
91338
|
* [Api set: WordApi 1.1]
|
|
91333
91339
|
*
|
|
91334
|
-
* To be used with an API call, such as `obj.insertSomething(newStuff, location)
|
|
91340
|
+
* To be used with an API call, such as `obj.insertSomething(newStuff, location);`.
|
|
91335
91341
|
* If the location is "Before" or "After", the new content will be outside of the modified object.
|
|
91336
91342
|
* If the location is "Start" or "End", the new content will be included as part of the modified object.
|
|
91337
91343
|
*/
|
|
@@ -91414,7 +91420,7 @@ declare namespace Word {
|
|
|
91414
91420
|
*/
|
|
91415
91421
|
enum HeaderFooterType {
|
|
91416
91422
|
/**
|
|
91417
|
-
* Returns the header or footer on all pages of a section, but excludes the first page or
|
|
91423
|
+
* Returns the header or footer on all pages of a section, but excludes the first page or even pages if they are different.
|
|
91418
91424
|
* @remarks
|
|
91419
91425
|
* [Api set: WordApi 1.1]
|
|
91420
91426
|
*/
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.322",
|
|
4
4
|
"description": "TypeScript definitions for Office.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "f0d350626a09b6c74fdc165eaa7ed9080e797751abd20a303d8f0df88de22c37",
|
|
49
49
|
"typeScriptVersion": "4.0"
|
|
50
50
|
}
|