@types/office-js-preview 1.0.319 → 1.0.320
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 +98 -112
- 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: 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-preview/index.d.ts
CHANGED
|
@@ -83960,11 +83960,11 @@ declare namespace Word {
|
|
|
83960
83960
|
expand?: string;
|
|
83961
83961
|
}): Word.Body;
|
|
83962
83962
|
/**
|
|
83963
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
83963
|
+
* 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
83964
|
*/
|
|
83965
83965
|
track(): Word.Body;
|
|
83966
83966
|
/**
|
|
83967
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
83967
|
+
* 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
83968
|
*/
|
|
83969
83969
|
untrack(): Word.Body;
|
|
83970
83970
|
/**
|
|
@@ -84091,11 +84091,11 @@ declare namespace Word {
|
|
|
84091
84091
|
expand?: string;
|
|
84092
84092
|
}): Word.Comment;
|
|
84093
84093
|
/**
|
|
84094
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84094
|
+
* 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
84095
|
*/
|
|
84096
84096
|
track(): Word.Comment;
|
|
84097
84097
|
/**
|
|
84098
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84098
|
+
* 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
84099
|
*/
|
|
84100
84100
|
untrack(): Word.Comment;
|
|
84101
84101
|
/**
|
|
@@ -84157,11 +84157,11 @@ declare namespace Word {
|
|
|
84157
84157
|
*/
|
|
84158
84158
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
84159
84159
|
/**
|
|
84160
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84160
|
+
* 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
84161
|
*/
|
|
84162
84162
|
track(): Word.CommentCollection;
|
|
84163
84163
|
/**
|
|
84164
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84164
|
+
* 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
84165
|
*/
|
|
84166
84166
|
untrack(): Word.CommentCollection;
|
|
84167
84167
|
/**
|
|
@@ -84235,7 +84235,7 @@ declare namespace Word {
|
|
|
84235
84235
|
/** Sets multiple properties on the object at the same time, based on an existing loaded object. */
|
|
84236
84236
|
set(properties: Word.CommentContentRange): void;
|
|
84237
84237
|
/**
|
|
84238
|
-
* Inserts text into at the specified location.
|
|
84238
|
+
* 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
84239
|
*
|
|
84240
84240
|
* @remarks
|
|
84241
84241
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -84245,7 +84245,7 @@ declare namespace Word {
|
|
|
84245
84245
|
*/
|
|
84246
84246
|
insertText(text: string, insertLocation: Word.InsertLocation): Word.CommentContentRange;
|
|
84247
84247
|
/**
|
|
84248
|
-
* Inserts text into at the specified location.
|
|
84248
|
+
* 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
84249
|
*
|
|
84250
84250
|
* @remarks
|
|
84251
84251
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -84276,11 +84276,11 @@ declare namespace Word {
|
|
|
84276
84276
|
expand?: string;
|
|
84277
84277
|
}): Word.CommentContentRange;
|
|
84278
84278
|
/**
|
|
84279
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84279
|
+
* 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
84280
|
*/
|
|
84281
84281
|
track(): Word.CommentContentRange;
|
|
84282
84282
|
/**
|
|
84283
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84283
|
+
* 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
84284
|
*/
|
|
84285
84285
|
untrack(): Word.CommentContentRange;
|
|
84286
84286
|
/**
|
|
@@ -84384,11 +84384,11 @@ declare namespace Word {
|
|
|
84384
84384
|
expand?: string;
|
|
84385
84385
|
}): Word.CommentReply;
|
|
84386
84386
|
/**
|
|
84387
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84387
|
+
* 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
84388
|
*/
|
|
84389
84389
|
track(): Word.CommentReply;
|
|
84390
84390
|
/**
|
|
84391
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84391
|
+
* 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
84392
|
*/
|
|
84393
84393
|
untrack(): Word.CommentReply;
|
|
84394
84394
|
/**
|
|
@@ -84450,11 +84450,11 @@ declare namespace Word {
|
|
|
84450
84450
|
*/
|
|
84451
84451
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
84452
84452
|
/**
|
|
84453
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
84453
|
+
* 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
84454
|
*/
|
|
84455
84455
|
track(): Word.CommentReplyCollection;
|
|
84456
84456
|
/**
|
|
84457
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
84457
|
+
* 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
84458
|
*/
|
|
84459
84459
|
untrack(): Word.CommentReplyCollection;
|
|
84460
84460
|
/**
|
|
@@ -84709,7 +84709,7 @@ declare namespace Word {
|
|
|
84709
84709
|
*/
|
|
84710
84710
|
delete(keepContent: boolean): void;
|
|
84711
84711
|
/**
|
|
84712
|
-
* Gets comments associated with the
|
|
84712
|
+
* Gets comments associated with the content control.
|
|
84713
84713
|
*
|
|
84714
84714
|
* @remarks
|
|
84715
84715
|
* [Api set: WordApiOnline 1.1]
|
|
@@ -85039,11 +85039,11 @@ declare namespace Word {
|
|
|
85039
85039
|
*/
|
|
85040
85040
|
readonly onSelectionChanged: OfficeExtension.EventHandlers<Word.ContentControlEventArgs>;
|
|
85041
85041
|
/**
|
|
85042
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85042
|
+
* 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
85043
|
*/
|
|
85044
85044
|
track(): Word.ContentControl;
|
|
85045
85045
|
/**
|
|
85046
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85046
|
+
* 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
85047
|
*/
|
|
85048
85048
|
untrack(): Word.ContentControl;
|
|
85049
85049
|
/**
|
|
@@ -85150,11 +85150,11 @@ declare namespace Word {
|
|
|
85150
85150
|
*/
|
|
85151
85151
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
85152
85152
|
/**
|
|
85153
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85153
|
+
* 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
85154
|
*/
|
|
85155
85155
|
track(): Word.ContentControlCollection;
|
|
85156
85156
|
/**
|
|
85157
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85157
|
+
* 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
85158
|
*/
|
|
85159
85159
|
untrack(): Word.ContentControlCollection;
|
|
85160
85160
|
/**
|
|
@@ -85230,11 +85230,11 @@ declare namespace Word {
|
|
|
85230
85230
|
expand?: string;
|
|
85231
85231
|
}): Word.CustomProperty;
|
|
85232
85232
|
/**
|
|
85233
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85233
|
+
* 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
85234
|
*/
|
|
85235
85235
|
track(): Word.CustomProperty;
|
|
85236
85236
|
/**
|
|
85237
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85237
|
+
* 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
85238
|
*/
|
|
85239
85239
|
untrack(): Word.CustomProperty;
|
|
85240
85240
|
/**
|
|
@@ -85315,11 +85315,11 @@ declare namespace Word {
|
|
|
85315
85315
|
*/
|
|
85316
85316
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
85317
85317
|
/**
|
|
85318
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85318
|
+
* 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
85319
|
*/
|
|
85320
85320
|
track(): Word.CustomPropertyCollection;
|
|
85321
85321
|
/**
|
|
85322
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85322
|
+
* 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
85323
|
*/
|
|
85324
85324
|
untrack(): Word.CustomPropertyCollection;
|
|
85325
85325
|
/**
|
|
@@ -85607,11 +85607,11 @@ declare namespace Word {
|
|
|
85607
85607
|
expand?: string;
|
|
85608
85608
|
}): Word.CustomXmlPart;
|
|
85609
85609
|
/**
|
|
85610
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85610
|
+
* 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
85611
|
*/
|
|
85612
85612
|
track(): Word.CustomXmlPart;
|
|
85613
85613
|
/**
|
|
85614
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85614
|
+
* 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
85615
|
*/
|
|
85616
85616
|
untrack(): Word.CustomXmlPart;
|
|
85617
85617
|
/**
|
|
@@ -85699,11 +85699,11 @@ declare namespace Word {
|
|
|
85699
85699
|
*/
|
|
85700
85700
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartCollection;
|
|
85701
85701
|
/**
|
|
85702
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85702
|
+
* 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
85703
|
*/
|
|
85704
85704
|
track(): Word.CustomXmlPartCollection;
|
|
85705
85705
|
/**
|
|
85706
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85706
|
+
* 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
85707
|
*/
|
|
85708
85708
|
untrack(): Word.CustomXmlPartCollection;
|
|
85709
85709
|
/**
|
|
@@ -85787,11 +85787,11 @@ declare namespace Word {
|
|
|
85787
85787
|
*/
|
|
85788
85788
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartScopedCollection;
|
|
85789
85789
|
/**
|
|
85790
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85790
|
+
* 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
85791
|
*/
|
|
85792
85792
|
track(): Word.CustomXmlPartScopedCollection;
|
|
85793
85793
|
/**
|
|
85794
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85794
|
+
* 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
85795
|
*/
|
|
85796
85796
|
untrack(): Word.CustomXmlPartScopedCollection;
|
|
85797
85797
|
/**
|
|
@@ -85982,11 +85982,11 @@ declare namespace Word {
|
|
|
85982
85982
|
*/
|
|
85983
85983
|
readonly onContentControlAdded: OfficeExtension.EventHandlers<Word.ContentControlEventArgs>;
|
|
85984
85984
|
/**
|
|
85985
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
85985
|
+
* 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
85986
|
*/
|
|
85987
85987
|
track(): Word.Document;
|
|
85988
85988
|
/**
|
|
85989
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
85989
|
+
* 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
85990
|
*/
|
|
85991
85991
|
untrack(): Word.Document;
|
|
85992
85992
|
/**
|
|
@@ -86129,11 +86129,11 @@ declare namespace Word {
|
|
|
86129
86129
|
expand?: string;
|
|
86130
86130
|
}): Word.DocumentCreated;
|
|
86131
86131
|
/**
|
|
86132
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86132
|
+
* 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
86133
|
*/
|
|
86134
86134
|
track(): Word.DocumentCreated;
|
|
86135
86135
|
/**
|
|
86136
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86136
|
+
* 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
86137
|
*/
|
|
86138
86138
|
untrack(): Word.DocumentCreated;
|
|
86139
86139
|
/**
|
|
@@ -86307,11 +86307,11 @@ declare namespace Word {
|
|
|
86307
86307
|
expand?: string;
|
|
86308
86308
|
}): Word.DocumentProperties;
|
|
86309
86309
|
/**
|
|
86310
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86310
|
+
* 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
86311
|
*/
|
|
86312
86312
|
track(): Word.DocumentProperties;
|
|
86313
86313
|
/**
|
|
86314
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86314
|
+
* 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
86315
|
*/
|
|
86316
86316
|
untrack(): Word.DocumentProperties;
|
|
86317
86317
|
/**
|
|
@@ -86456,11 +86456,11 @@ declare namespace Word {
|
|
|
86456
86456
|
expand?: string;
|
|
86457
86457
|
}): Word.Field;
|
|
86458
86458
|
/**
|
|
86459
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86459
|
+
* 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
86460
|
*/
|
|
86461
86461
|
track(): Word.Field;
|
|
86462
86462
|
/**
|
|
86463
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86463
|
+
* 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
86464
|
*/
|
|
86465
86465
|
untrack(): Word.Field;
|
|
86466
86466
|
/**
|
|
@@ -86516,11 +86516,11 @@ declare namespace Word {
|
|
|
86516
86516
|
*/
|
|
86517
86517
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.FieldCollection;
|
|
86518
86518
|
/**
|
|
86519
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86519
|
+
* 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
86520
|
*/
|
|
86521
86521
|
track(): Word.FieldCollection;
|
|
86522
86522
|
/**
|
|
86523
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86523
|
+
* 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
86524
|
*/
|
|
86525
86525
|
untrack(): Word.FieldCollection;
|
|
86526
86526
|
/**
|
|
@@ -86646,11 +86646,11 @@ declare namespace Word {
|
|
|
86646
86646
|
expand?: string;
|
|
86647
86647
|
}): Word.Font;
|
|
86648
86648
|
/**
|
|
86649
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
86649
|
+
* 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
86650
|
*/
|
|
86651
86651
|
track(): Word.Font;
|
|
86652
86652
|
/**
|
|
86653
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
86653
|
+
* 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
86654
|
*/
|
|
86655
86655
|
untrack(): Word.Font;
|
|
86656
86656
|
/**
|
|
@@ -87008,11 +87008,11 @@ declare namespace Word {
|
|
|
87008
87008
|
expand?: string;
|
|
87009
87009
|
}): Word.InlinePicture;
|
|
87010
87010
|
/**
|
|
87011
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87011
|
+
* 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
87012
|
*/
|
|
87013
87013
|
track(): Word.InlinePicture;
|
|
87014
87014
|
/**
|
|
87015
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87015
|
+
* 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
87016
|
*/
|
|
87017
87017
|
untrack(): Word.InlinePicture;
|
|
87018
87018
|
/**
|
|
@@ -87065,11 +87065,11 @@ declare namespace Word {
|
|
|
87065
87065
|
*/
|
|
87066
87066
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
87067
87067
|
/**
|
|
87068
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87068
|
+
* 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
87069
|
*/
|
|
87070
87070
|
track(): Word.InlinePictureCollection;
|
|
87071
87071
|
/**
|
|
87072
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87072
|
+
* 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
87073
|
*/
|
|
87074
87074
|
untrack(): Word.InlinePictureCollection;
|
|
87075
87075
|
/**
|
|
@@ -87304,11 +87304,11 @@ declare namespace Word {
|
|
|
87304
87304
|
expand?: string;
|
|
87305
87305
|
}): Word.List;
|
|
87306
87306
|
/**
|
|
87307
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87307
|
+
* 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
87308
|
*/
|
|
87309
87309
|
track(): Word.List;
|
|
87310
87310
|
/**
|
|
87311
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87311
|
+
* 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
87312
|
*/
|
|
87313
87313
|
untrack(): Word.List;
|
|
87314
87314
|
/**
|
|
@@ -87388,11 +87388,11 @@ declare namespace Word {
|
|
|
87388
87388
|
*/
|
|
87389
87389
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
87390
87390
|
/**
|
|
87391
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87391
|
+
* 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
87392
|
*/
|
|
87393
87393
|
track(): Word.ListCollection;
|
|
87394
87394
|
/**
|
|
87395
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87395
|
+
* 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
87396
|
*/
|
|
87397
87397
|
untrack(): Word.ListCollection;
|
|
87398
87398
|
/**
|
|
@@ -87488,11 +87488,11 @@ declare namespace Word {
|
|
|
87488
87488
|
expand?: string;
|
|
87489
87489
|
}): Word.ListItem;
|
|
87490
87490
|
/**
|
|
87491
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87491
|
+
* 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
87492
|
*/
|
|
87493
87493
|
track(): Word.ListItem;
|
|
87494
87494
|
/**
|
|
87495
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87495
|
+
* 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
87496
|
*/
|
|
87497
87497
|
untrack(): Word.ListItem;
|
|
87498
87498
|
/**
|
|
@@ -87582,11 +87582,11 @@ declare namespace Word {
|
|
|
87582
87582
|
expand?: string;
|
|
87583
87583
|
}): Word.NoteItem;
|
|
87584
87584
|
/**
|
|
87585
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87585
|
+
* 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
87586
|
*/
|
|
87587
87587
|
track(): Word.NoteItem;
|
|
87588
87588
|
/**
|
|
87589
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87589
|
+
* 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
87590
|
*/
|
|
87591
87591
|
untrack(): Word.NoteItem;
|
|
87592
87592
|
/**
|
|
@@ -87639,11 +87639,11 @@ declare namespace Word {
|
|
|
87639
87639
|
*/
|
|
87640
87640
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
87641
87641
|
/**
|
|
87642
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
87642
|
+
* 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
87643
|
*/
|
|
87644
87644
|
track(): Word.NoteItemCollection;
|
|
87645
87645
|
/**
|
|
87646
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
87646
|
+
* 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
87647
|
*/
|
|
87648
87648
|
untrack(): Word.NoteItemCollection;
|
|
87649
87649
|
/**
|
|
@@ -88274,11 +88274,11 @@ declare namespace Word {
|
|
|
88274
88274
|
expand?: string;
|
|
88275
88275
|
}): Word.Paragraph;
|
|
88276
88276
|
/**
|
|
88277
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
88277
|
+
* 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
88278
|
*/
|
|
88279
88279
|
track(): Word.Paragraph;
|
|
88280
88280
|
/**
|
|
88281
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
88281
|
+
* 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
88282
|
*/
|
|
88283
88283
|
untrack(): Word.Paragraph;
|
|
88284
88284
|
/**
|
|
@@ -88345,11 +88345,11 @@ declare namespace Word {
|
|
|
88345
88345
|
*/
|
|
88346
88346
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
88347
88347
|
/**
|
|
88348
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
88348
|
+
* 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
88349
|
*/
|
|
88350
88350
|
track(): Word.ParagraphCollection;
|
|
88351
88351
|
/**
|
|
88352
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
88352
|
+
* 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
88353
|
*/
|
|
88354
88354
|
untrack(): Word.ParagraphCollection;
|
|
88355
88355
|
/**
|
|
@@ -88967,11 +88967,11 @@ declare namespace Word {
|
|
|
88967
88967
|
expand?: string;
|
|
88968
88968
|
}): Word.Range;
|
|
88969
88969
|
/**
|
|
88970
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
88970
|
+
* 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
88971
|
*/
|
|
88972
88972
|
track(): Word.Range;
|
|
88973
88973
|
/**
|
|
88974
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
88974
|
+
* 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
88975
|
*/
|
|
88976
88976
|
untrack(): Word.Range;
|
|
88977
88977
|
/**
|
|
@@ -89024,11 +89024,11 @@ declare namespace Word {
|
|
|
89024
89024
|
*/
|
|
89025
89025
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
89026
89026
|
/**
|
|
89027
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89027
|
+
* 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
89028
|
*/
|
|
89029
89029
|
track(): Word.RangeCollection;
|
|
89030
89030
|
/**
|
|
89031
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89031
|
+
* 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
89032
|
*/
|
|
89033
89033
|
untrack(): Word.RangeCollection;
|
|
89034
89034
|
/**
|
|
@@ -89232,11 +89232,11 @@ declare namespace Word {
|
|
|
89232
89232
|
expand?: string;
|
|
89233
89233
|
}): Word.Section;
|
|
89234
89234
|
/**
|
|
89235
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89235
|
+
* 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
89236
|
*/
|
|
89237
89237
|
track(): Word.Section;
|
|
89238
89238
|
/**
|
|
89239
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89239
|
+
* 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
89240
|
*/
|
|
89241
89241
|
untrack(): Word.Section;
|
|
89242
89242
|
/**
|
|
@@ -89289,11 +89289,11 @@ declare namespace Word {
|
|
|
89289
89289
|
*/
|
|
89290
89290
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
89291
89291
|
/**
|
|
89292
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89292
|
+
* 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
89293
|
*/
|
|
89294
89294
|
track(): Word.SectionCollection;
|
|
89295
89295
|
/**
|
|
89296
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89296
|
+
* 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
89297
|
*/
|
|
89298
89298
|
untrack(): Word.SectionCollection;
|
|
89299
89299
|
/**
|
|
@@ -89366,11 +89366,11 @@ declare namespace Word {
|
|
|
89366
89366
|
expand?: string;
|
|
89367
89367
|
}): Word.Setting;
|
|
89368
89368
|
/**
|
|
89369
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89369
|
+
* 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
89370
|
*/
|
|
89371
89371
|
track(): Word.Setting;
|
|
89372
89372
|
/**
|
|
89373
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89373
|
+
* 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
89374
|
*/
|
|
89375
89375
|
untrack(): Word.Setting;
|
|
89376
89376
|
/**
|
|
@@ -89457,11 +89457,11 @@ declare namespace Word {
|
|
|
89457
89457
|
*/
|
|
89458
89458
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
|
|
89459
89459
|
/**
|
|
89460
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
89460
|
+
* 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
89461
|
*/
|
|
89462
89462
|
track(): Word.SettingCollection;
|
|
89463
89463
|
/**
|
|
89464
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
89464
|
+
* 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
89465
|
*/
|
|
89466
89466
|
untrack(): Word.SettingCollection;
|
|
89467
89467
|
/**
|
|
@@ -90048,11 +90048,11 @@ declare namespace Word {
|
|
|
90048
90048
|
expand?: string;
|
|
90049
90049
|
}): Word.Table;
|
|
90050
90050
|
/**
|
|
90051
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90051
|
+
* 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
90052
|
*/
|
|
90053
90053
|
track(): Word.Table;
|
|
90054
90054
|
/**
|
|
90055
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90055
|
+
* 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
90056
|
*/
|
|
90057
90057
|
untrack(): Word.Table;
|
|
90058
90058
|
/**
|
|
@@ -90105,11 +90105,11 @@ declare namespace Word {
|
|
|
90105
90105
|
*/
|
|
90106
90106
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
90107
90107
|
/**
|
|
90108
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90108
|
+
* 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
90109
|
*/
|
|
90110
90110
|
track(): Word.TableCollection;
|
|
90111
90111
|
/**
|
|
90112
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90112
|
+
* 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
90113
|
*/
|
|
90114
90114
|
untrack(): Word.TableCollection;
|
|
90115
90115
|
/**
|
|
@@ -90414,11 +90414,11 @@ declare namespace Word {
|
|
|
90414
90414
|
expand?: string;
|
|
90415
90415
|
}): Word.TableRow;
|
|
90416
90416
|
/**
|
|
90417
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90417
|
+
* 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
90418
|
*/
|
|
90419
90419
|
track(): Word.TableRow;
|
|
90420
90420
|
/**
|
|
90421
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90421
|
+
* 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
90422
|
*/
|
|
90423
90423
|
untrack(): Word.TableRow;
|
|
90424
90424
|
/**
|
|
@@ -90471,11 +90471,11 @@ declare namespace Word {
|
|
|
90471
90471
|
*/
|
|
90472
90472
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
90473
90473
|
/**
|
|
90474
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90474
|
+
* 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
90475
|
*/
|
|
90476
90476
|
track(): Word.TableRowCollection;
|
|
90477
90477
|
/**
|
|
90478
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90478
|
+
* 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
90479
|
*/
|
|
90480
90480
|
untrack(): Word.TableRowCollection;
|
|
90481
90481
|
/**
|
|
@@ -90739,11 +90739,11 @@ declare namespace Word {
|
|
|
90739
90739
|
expand?: string;
|
|
90740
90740
|
}): Word.TableCell;
|
|
90741
90741
|
/**
|
|
90742
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90742
|
+
* 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
90743
|
*/
|
|
90744
90744
|
track(): Word.TableCell;
|
|
90745
90745
|
/**
|
|
90746
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90746
|
+
* 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
90747
|
*/
|
|
90748
90748
|
untrack(): Word.TableCell;
|
|
90749
90749
|
/**
|
|
@@ -90796,11 +90796,11 @@ declare namespace Word {
|
|
|
90796
90796
|
*/
|
|
90797
90797
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
90798
90798
|
/**
|
|
90799
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90799
|
+
* 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
90800
|
*/
|
|
90801
90801
|
track(): Word.TableCellCollection;
|
|
90802
90802
|
/**
|
|
90803
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90803
|
+
* 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
90804
|
*/
|
|
90805
90805
|
untrack(): Word.TableCellCollection;
|
|
90806
90806
|
/**
|
|
@@ -90869,11 +90869,11 @@ declare namespace Word {
|
|
|
90869
90869
|
expand?: string;
|
|
90870
90870
|
}): Word.TableBorder;
|
|
90871
90871
|
/**
|
|
90872
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for
|
|
90872
|
+
* 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
90873
|
*/
|
|
90874
90874
|
track(): Word.TableBorder;
|
|
90875
90875
|
/**
|
|
90876
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
|
|
90876
|
+
* 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
90877
|
*/
|
|
90878
90878
|
untrack(): Word.TableBorder;
|
|
90879
90879
|
/**
|
|
@@ -90945,54 +90945,40 @@ declare namespace Word {
|
|
|
90945
90945
|
endnote = "Endnote",
|
|
90946
90946
|
}
|
|
90947
90947
|
/**
|
|
90948
|
-
* Provides information about the type of a raised event.
|
|
90948
|
+
* Provides information about the type of a raised event.
|
|
90949
90949
|
*
|
|
90950
90950
|
* @remarks
|
|
90951
90951
|
* [Api set: WordApi 1.3]
|
|
90952
90952
|
*/
|
|
90953
90953
|
enum EventType {
|
|
90954
90954
|
/**
|
|
90955
|
-
* ContentControlDeleted
|
|
90955
|
+
* ContentControlDeleted represents the event that the content control has been deleted.
|
|
90956
90956
|
* @remarks
|
|
90957
|
-
* [Api set: WordApi
|
|
90957
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90958
|
+
* @beta
|
|
90958
90959
|
*/
|
|
90959
90960
|
contentControlDeleted = "ContentControlDeleted",
|
|
90960
90961
|
/**
|
|
90961
90962
|
* ContentControlSelectionChanged represents the event that the selection in the content control has been changed.
|
|
90962
90963
|
* @remarks
|
|
90963
|
-
* [Api set: WordApi
|
|
90964
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90965
|
+
* @beta
|
|
90964
90966
|
*/
|
|
90965
90967
|
contentControlSelectionChanged = "ContentControlSelectionChanged",
|
|
90966
90968
|
/**
|
|
90967
90969
|
* ContentControlDataChanged represents the event that the data in the content control have been changed.
|
|
90968
90970
|
* @remarks
|
|
90969
|
-
* [Api set: WordApi
|
|
90971
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90972
|
+
* @beta
|
|
90970
90973
|
*/
|
|
90971
90974
|
contentControlDataChanged = "ContentControlDataChanged",
|
|
90972
90975
|
/**
|
|
90973
90976
|
* ContentControlAdded represents the event a content control has been added to the document.
|
|
90974
90977
|
* @remarks
|
|
90975
|
-
* [Api set: WordApi
|
|
90978
|
+
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
90979
|
+
* @beta
|
|
90976
90980
|
*/
|
|
90977
90981
|
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
90982
|
}
|
|
90997
90983
|
/**
|
|
90998
90984
|
* Provides information about the content control that raised an event.
|
|
@@ -91017,7 +91003,7 @@ declare namespace Word {
|
|
|
91017
91003
|
* [Api set: WordApi BETA (PREVIEW ONLY)]
|
|
91018
91004
|
* @beta
|
|
91019
91005
|
*/
|
|
91020
|
-
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded"
|
|
91006
|
+
eventType: Word.EventType | "ContentControlDeleted" | "ContentControlSelectionChanged" | "ContentControlDataChanged" | "ContentControlAdded";
|
|
91021
91007
|
}
|
|
91022
91008
|
/**
|
|
91023
91009
|
* Specifies supported content control types and subtypes.
|
|
@@ -91331,7 +91317,7 @@ declare namespace Word {
|
|
|
91331
91317
|
* @remarks
|
|
91332
91318
|
* [Api set: WordApi 1.1]
|
|
91333
91319
|
*
|
|
91334
|
-
* To be used with an API call, such as `obj.insertSomething(newStuff, location)
|
|
91320
|
+
* To be used with an API call, such as `obj.insertSomething(newStuff, location);`.
|
|
91335
91321
|
* If the location is "Before" or "After", the new content will be outside of the modified object.
|
|
91336
91322
|
* If the location is "Start" or "End", the new content will be included as part of the modified object.
|
|
91337
91323
|
*/
|
|
@@ -91414,7 +91400,7 @@ declare namespace Word {
|
|
|
91414
91400
|
*/
|
|
91415
91401
|
enum HeaderFooterType {
|
|
91416
91402
|
/**
|
|
91417
|
-
* Returns the header or footer on all pages of a section, but excludes the first page or
|
|
91403
|
+
* Returns the header or footer on all pages of a section, but excludes the first page or even pages if they are different.
|
|
91418
91404
|
* @remarks
|
|
91419
91405
|
* [Api set: WordApi 1.1]
|
|
91420
91406
|
*/
|
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.320",
|
|
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": "445efba4a4e0c6d883acdcef8f5624a726b5edfb46b8f711e24284e765973818",
|
|
49
49
|
"typeScriptVersion": "4.0"
|
|
50
50
|
}
|