@types/office-js 1.0.341 → 1.0.342
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js/README.md +1 -1
- office-js/index.d.ts +197 -197
- office-js/package.json +2 -2
office-js/index.d.ts
CHANGED
|
@@ -83846,7 +83846,7 @@ declare namespace Word {
|
|
|
83846
83846
|
*/
|
|
83847
83847
|
readonly parentBody: Word.Body;
|
|
83848
83848
|
/**
|
|
83849
|
-
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
83849
|
+
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
83850
83850
|
*
|
|
83851
83851
|
* @remarks
|
|
83852
83852
|
* [Api set: WordApi 1.3]
|
|
@@ -83860,7 +83860,7 @@ declare namespace Word {
|
|
|
83860
83860
|
*/
|
|
83861
83861
|
readonly parentContentControl: Word.ContentControl;
|
|
83862
83862
|
/**
|
|
83863
|
-
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
83863
|
+
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
83864
83864
|
*
|
|
83865
83865
|
* @remarks
|
|
83866
83866
|
* [Api set: WordApi 1.3]
|
|
@@ -83874,7 +83874,7 @@ declare namespace Word {
|
|
|
83874
83874
|
*/
|
|
83875
83875
|
readonly parentSection: Word.Section;
|
|
83876
83876
|
/**
|
|
83877
|
-
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
83877
|
+
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
83878
83878
|
*
|
|
83879
83879
|
* @remarks
|
|
83880
83880
|
* [Api set: WordApi 1.3]
|
|
@@ -84140,11 +84140,11 @@ declare namespace Word {
|
|
|
84140
84140
|
expand?: string;
|
|
84141
84141
|
}): Word.Body;
|
|
84142
84142
|
/**
|
|
84143
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84143
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
84144
84144
|
*/
|
|
84145
84145
|
track(): Word.Body;
|
|
84146
84146
|
/**
|
|
84147
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84147
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84148
84148
|
*/
|
|
84149
84149
|
untrack(): Word.Body;
|
|
84150
84150
|
/**
|
|
@@ -84271,11 +84271,11 @@ declare namespace Word {
|
|
|
84271
84271
|
expand?: string;
|
|
84272
84272
|
}): Word.Comment;
|
|
84273
84273
|
/**
|
|
84274
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84274
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
84275
84275
|
*/
|
|
84276
84276
|
track(): Word.Comment;
|
|
84277
84277
|
/**
|
|
84278
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84278
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84279
84279
|
*/
|
|
84280
84280
|
untrack(): Word.Comment;
|
|
84281
84281
|
/**
|
|
@@ -84303,7 +84303,7 @@ declare namespace Word {
|
|
|
84303
84303
|
*/
|
|
84304
84304
|
getFirst(): Word.Comment;
|
|
84305
84305
|
/**
|
|
84306
|
-
* Gets the first comment in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84306
|
+
* Gets the first comment in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84307
84307
|
*
|
|
84308
84308
|
* @remarks
|
|
84309
84309
|
* [Api set: WordApi 1.4]
|
|
@@ -84328,11 +84328,11 @@ declare namespace Word {
|
|
|
84328
84328
|
*/
|
|
84329
84329
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
84330
84330
|
/**
|
|
84331
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84331
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
84332
84332
|
*/
|
|
84333
84333
|
track(): Word.CommentCollection;
|
|
84334
84334
|
/**
|
|
84335
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84335
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84336
84336
|
*/
|
|
84337
84337
|
untrack(): Word.CommentCollection;
|
|
84338
84338
|
/**
|
|
@@ -84437,11 +84437,11 @@ declare namespace Word {
|
|
|
84437
84437
|
expand?: string;
|
|
84438
84438
|
}): Word.CommentContentRange;
|
|
84439
84439
|
/**
|
|
84440
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84440
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
84441
84441
|
*/
|
|
84442
84442
|
track(): Word.CommentContentRange;
|
|
84443
84443
|
/**
|
|
84444
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84444
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84445
84445
|
*/
|
|
84446
84446
|
untrack(): Word.CommentContentRange;
|
|
84447
84447
|
/**
|
|
@@ -84545,11 +84545,11 @@ declare namespace Word {
|
|
|
84545
84545
|
expand?: string;
|
|
84546
84546
|
}): Word.CommentReply;
|
|
84547
84547
|
/**
|
|
84548
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84548
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
84549
84549
|
*/
|
|
84550
84550
|
track(): Word.CommentReply;
|
|
84551
84551
|
/**
|
|
84552
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84552
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84553
84553
|
*/
|
|
84554
84554
|
untrack(): Word.CommentReply;
|
|
84555
84555
|
/**
|
|
@@ -84577,7 +84577,7 @@ declare namespace Word {
|
|
|
84577
84577
|
*/
|
|
84578
84578
|
getFirst(): Word.CommentReply;
|
|
84579
84579
|
/**
|
|
84580
|
-
* Gets the first comment reply in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84580
|
+
* Gets the first comment reply in the collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84581
84581
|
*
|
|
84582
84582
|
* @remarks
|
|
84583
84583
|
* [Api set: WordApi 1.4]
|
|
@@ -84602,11 +84602,11 @@ declare namespace Word {
|
|
|
84602
84602
|
*/
|
|
84603
84603
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
84604
84604
|
/**
|
|
84605
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
84605
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
84606
84606
|
*/
|
|
84607
84607
|
track(): Word.CommentReplyCollection;
|
|
84608
84608
|
/**
|
|
84609
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
84609
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
84610
84610
|
*/
|
|
84611
84611
|
untrack(): Word.CommentReplyCollection;
|
|
84612
84612
|
/**
|
|
@@ -84695,7 +84695,7 @@ declare namespace Word {
|
|
|
84695
84695
|
*/
|
|
84696
84696
|
readonly parentContentControl: Word.ContentControl;
|
|
84697
84697
|
/**
|
|
84698
|
-
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84698
|
+
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84699
84699
|
*
|
|
84700
84700
|
* @remarks
|
|
84701
84701
|
* [Api set: WordApi 1.3]
|
|
@@ -84716,14 +84716,14 @@ declare namespace Word {
|
|
|
84716
84716
|
*/
|
|
84717
84717
|
readonly parentTableCell: Word.TableCell;
|
|
84718
84718
|
/**
|
|
84719
|
-
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84719
|
+
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84720
84720
|
*
|
|
84721
84721
|
* @remarks
|
|
84722
84722
|
* [Api set: WordApi 1.3]
|
|
84723
84723
|
*/
|
|
84724
84724
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
84725
84725
|
/**
|
|
84726
|
-
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
84726
|
+
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
84727
84727
|
*
|
|
84728
84728
|
* @remarks
|
|
84729
84729
|
* [Api set: WordApi 1.3]
|
|
@@ -85124,11 +85124,11 @@ declare namespace Word {
|
|
|
85124
85124
|
*/
|
|
85125
85125
|
readonly onSelectionChanged: OfficeExtension.EventHandlers<Word.ContentControlSelectionChangedEventArgs>;
|
|
85126
85126
|
/**
|
|
85127
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85127
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
85128
85128
|
*/
|
|
85129
85129
|
track(): Word.ContentControl;
|
|
85130
85130
|
/**
|
|
85131
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85131
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85132
85132
|
*/
|
|
85133
85133
|
untrack(): Word.ContentControl;
|
|
85134
85134
|
/**
|
|
@@ -85167,7 +85167,7 @@ declare namespace Word {
|
|
|
85167
85167
|
*/
|
|
85168
85168
|
getById(id: number): Word.ContentControl;
|
|
85169
85169
|
/**
|
|
85170
|
-
* Gets a content control by its identifier. If there isn't a content control with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85170
|
+
* Gets a content control by its identifier. If there isn't a content control with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85171
85171
|
*
|
|
85172
85172
|
* @remarks
|
|
85173
85173
|
* [Api set: WordApi 1.3]
|
|
@@ -85210,7 +85210,7 @@ declare namespace Word {
|
|
|
85210
85210
|
*/
|
|
85211
85211
|
getFirst(): Word.ContentControl;
|
|
85212
85212
|
/**
|
|
85213
|
-
* Gets the first content control in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85213
|
+
* Gets the first content control in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85214
85214
|
*
|
|
85215
85215
|
* @remarks
|
|
85216
85216
|
* [Api set: WordApi 1.3]
|
|
@@ -85244,11 +85244,11 @@ declare namespace Word {
|
|
|
85244
85244
|
*/
|
|
85245
85245
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
85246
85246
|
/**
|
|
85247
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85247
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
85248
85248
|
*/
|
|
85249
85249
|
track(): Word.ContentControlCollection;
|
|
85250
85250
|
/**
|
|
85251
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85251
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85252
85252
|
*/
|
|
85253
85253
|
untrack(): Word.ContentControlCollection;
|
|
85254
85254
|
/**
|
|
@@ -85339,11 +85339,11 @@ declare namespace Word {
|
|
|
85339
85339
|
expand?: string;
|
|
85340
85340
|
}): Word.CustomProperty;
|
|
85341
85341
|
/**
|
|
85342
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85342
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
85343
85343
|
*/
|
|
85344
85344
|
track(): Word.CustomProperty;
|
|
85345
85345
|
/**
|
|
85346
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85346
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85347
85347
|
*/
|
|
85348
85348
|
untrack(): Word.CustomProperty;
|
|
85349
85349
|
/**
|
|
@@ -85397,7 +85397,7 @@ declare namespace Word {
|
|
|
85397
85397
|
*/
|
|
85398
85398
|
getItem(key: string): Word.CustomProperty;
|
|
85399
85399
|
/**
|
|
85400
|
-
* Gets a custom property object by its key, which is case-insensitive. If the custom property does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85400
|
+
* Gets a custom property object by its key, which is case-insensitive. If the custom property does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85401
85401
|
*
|
|
85402
85402
|
* @remarks
|
|
85403
85403
|
* [Api set: WordApi 1.3]
|
|
@@ -85424,11 +85424,11 @@ declare namespace Word {
|
|
|
85424
85424
|
*/
|
|
85425
85425
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
85426
85426
|
/**
|
|
85427
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85427
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
85428
85428
|
*/
|
|
85429
85429
|
track(): Word.CustomPropertyCollection;
|
|
85430
85430
|
/**
|
|
85431
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85431
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85432
85432
|
*/
|
|
85433
85433
|
untrack(): Word.CustomPropertyCollection;
|
|
85434
85434
|
/**
|
|
@@ -85703,11 +85703,11 @@ declare namespace Word {
|
|
|
85703
85703
|
expand?: string;
|
|
85704
85704
|
}): Word.CustomXmlPart;
|
|
85705
85705
|
/**
|
|
85706
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85706
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
85707
85707
|
*/
|
|
85708
85708
|
track(): Word.CustomXmlPart;
|
|
85709
85709
|
/**
|
|
85710
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85710
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85711
85711
|
*/
|
|
85712
85712
|
untrack(): Word.CustomXmlPart;
|
|
85713
85713
|
/**
|
|
@@ -85762,7 +85762,7 @@ declare namespace Word {
|
|
|
85762
85762
|
*/
|
|
85763
85763
|
getItem(id: string): Word.CustomXmlPart;
|
|
85764
85764
|
/**
|
|
85765
|
-
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85765
|
+
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85766
85766
|
*
|
|
85767
85767
|
* @remarks
|
|
85768
85768
|
* [Api set: WordApi 1.4]
|
|
@@ -85789,11 +85789,11 @@ declare namespace Word {
|
|
|
85789
85789
|
*/
|
|
85790
85790
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartCollection;
|
|
85791
85791
|
/**
|
|
85792
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85792
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
85793
85793
|
*/
|
|
85794
85794
|
track(): Word.CustomXmlPartCollection;
|
|
85795
85795
|
/**
|
|
85796
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85796
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85797
85797
|
*/
|
|
85798
85798
|
untrack(): Word.CustomXmlPartCollection;
|
|
85799
85799
|
/**
|
|
@@ -85830,7 +85830,7 @@ declare namespace Word {
|
|
|
85830
85830
|
*/
|
|
85831
85831
|
getItem(id: string): Word.CustomXmlPart;
|
|
85832
85832
|
/**
|
|
85833
|
-
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist in the collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85833
|
+
* Gets a custom XML part based on its ID. If the CustomXmlPart does not exist in the collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85834
85834
|
*
|
|
85835
85835
|
* @remarks
|
|
85836
85836
|
* [Api set: WordApi 1.4]
|
|
@@ -85846,7 +85846,7 @@ declare namespace Word {
|
|
|
85846
85846
|
*/
|
|
85847
85847
|
getOnlyItem(): Word.CustomXmlPart;
|
|
85848
85848
|
/**
|
|
85849
|
-
* If the collection contains exactly one item, this method returns it. Otherwise, this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
85849
|
+
* If the collection contains exactly one item, this method returns it. Otherwise, this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
85850
85850
|
*
|
|
85851
85851
|
* @remarks
|
|
85852
85852
|
* [Api set: WordApi 1.4]
|
|
@@ -85871,11 +85871,11 @@ declare namespace Word {
|
|
|
85871
85871
|
*/
|
|
85872
85872
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartScopedCollection;
|
|
85873
85873
|
/**
|
|
85874
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
85874
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
85875
85875
|
*/
|
|
85876
85876
|
track(): Word.CustomXmlPartScopedCollection;
|
|
85877
85877
|
/**
|
|
85878
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
85878
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
85879
85879
|
*/
|
|
85880
85880
|
untrack(): Word.CustomXmlPartScopedCollection;
|
|
85881
85881
|
/**
|
|
@@ -86014,7 +86014,7 @@ declare namespace Word {
|
|
|
86014
86014
|
*/
|
|
86015
86015
|
getBookmarkRange(name: string): Word.Range;
|
|
86016
86016
|
/**
|
|
86017
|
-
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86017
|
+
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86018
86018
|
*
|
|
86019
86019
|
* @remarks
|
|
86020
86020
|
* [Api set: WordApi 1.4]
|
|
@@ -86145,11 +86145,11 @@ declare namespace Word {
|
|
|
86145
86145
|
*/
|
|
86146
86146
|
readonly onContentControlAdded: OfficeExtension.EventHandlers<Word.ContentControlAddedEventArgs>;
|
|
86147
86147
|
/**
|
|
86148
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86148
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
86149
86149
|
*/
|
|
86150
86150
|
track(): Word.Document;
|
|
86151
86151
|
/**
|
|
86152
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86152
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86153
86153
|
*/
|
|
86154
86154
|
untrack(): Word.Document;
|
|
86155
86155
|
/**
|
|
@@ -86263,7 +86263,7 @@ declare namespace Word {
|
|
|
86263
86263
|
*/
|
|
86264
86264
|
getBookmarkRange(name: string): Word.Range;
|
|
86265
86265
|
/**
|
|
86266
|
-
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86266
|
+
* Gets a bookmark's range. If the bookmark does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86267
86267
|
*
|
|
86268
86268
|
* @remarks
|
|
86269
86269
|
* [Api set: WordApiHiddenDocument 1.4]
|
|
@@ -86354,11 +86354,11 @@ declare namespace Word {
|
|
|
86354
86354
|
expand?: string;
|
|
86355
86355
|
}): Word.DocumentCreated;
|
|
86356
86356
|
/**
|
|
86357
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86357
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
86358
86358
|
*/
|
|
86359
86359
|
track(): Word.DocumentCreated;
|
|
86360
86360
|
/**
|
|
86361
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86361
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86362
86362
|
*/
|
|
86363
86363
|
untrack(): Word.DocumentCreated;
|
|
86364
86364
|
/**
|
|
@@ -86532,11 +86532,11 @@ declare namespace Word {
|
|
|
86532
86532
|
expand?: string;
|
|
86533
86533
|
}): Word.DocumentProperties;
|
|
86534
86534
|
/**
|
|
86535
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86535
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
86536
86536
|
*/
|
|
86537
86537
|
track(): Word.DocumentProperties;
|
|
86538
86538
|
/**
|
|
86539
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86539
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86540
86540
|
*/
|
|
86541
86541
|
untrack(): Word.DocumentProperties;
|
|
86542
86542
|
/**
|
|
@@ -86569,7 +86569,7 @@ declare namespace Word {
|
|
|
86569
86569
|
*/
|
|
86570
86570
|
readonly parentContentControl: Word.ContentControl;
|
|
86571
86571
|
/**
|
|
86572
|
-
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86572
|
+
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86573
86573
|
*
|
|
86574
86574
|
* @remarks
|
|
86575
86575
|
* [Api set: WordApi 1.4]
|
|
@@ -86590,14 +86590,14 @@ declare namespace Word {
|
|
|
86590
86590
|
*/
|
|
86591
86591
|
readonly parentTableCell: Word.TableCell;
|
|
86592
86592
|
/**
|
|
86593
|
-
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86593
|
+
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86594
86594
|
*
|
|
86595
86595
|
* @remarks
|
|
86596
86596
|
* [Api set: WordApi 1.4]
|
|
86597
86597
|
*/
|
|
86598
86598
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
86599
86599
|
/**
|
|
86600
|
-
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86600
|
+
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86601
86601
|
*
|
|
86602
86602
|
* @remarks
|
|
86603
86603
|
* [Api set: WordApi 1.4]
|
|
@@ -86670,7 +86670,7 @@ declare namespace Word {
|
|
|
86670
86670
|
*/
|
|
86671
86671
|
getNext(): Word.Field;
|
|
86672
86672
|
/**
|
|
86673
|
-
* Gets the next field. If this field is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86673
|
+
* Gets the next field. If this field is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86674
86674
|
*
|
|
86675
86675
|
* @remarks
|
|
86676
86676
|
* [Api set: WordApi 1.4]
|
|
@@ -86723,11 +86723,11 @@ declare namespace Word {
|
|
|
86723
86723
|
expand?: string;
|
|
86724
86724
|
}): Word.Field;
|
|
86725
86725
|
/**
|
|
86726
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86726
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
86727
86727
|
*/
|
|
86728
86728
|
track(): Word.Field;
|
|
86729
86729
|
/**
|
|
86730
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86730
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86731
86731
|
*/
|
|
86732
86732
|
untrack(): Word.Field;
|
|
86733
86733
|
/**
|
|
@@ -86755,7 +86755,7 @@ declare namespace Word {
|
|
|
86755
86755
|
*/
|
|
86756
86756
|
getFirst(): Word.Field;
|
|
86757
86757
|
/**
|
|
86758
|
-
* Gets the first field in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86758
|
+
* Gets the first field in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86759
86759
|
*
|
|
86760
86760
|
* @remarks
|
|
86761
86761
|
* [Api set: WordApi 1.4]
|
|
@@ -86789,11 +86789,11 @@ declare namespace Word {
|
|
|
86789
86789
|
*/
|
|
86790
86790
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.FieldCollection;
|
|
86791
86791
|
/**
|
|
86792
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86792
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
86793
86793
|
*/
|
|
86794
86794
|
track(): Word.FieldCollection;
|
|
86795
86795
|
/**
|
|
86796
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86796
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86797
86797
|
*/
|
|
86798
86798
|
untrack(): Word.FieldCollection;
|
|
86799
86799
|
/**
|
|
@@ -86918,11 +86918,11 @@ declare namespace Word {
|
|
|
86918
86918
|
expand?: string;
|
|
86919
86919
|
}): Word.Font;
|
|
86920
86920
|
/**
|
|
86921
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
86921
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
86922
86922
|
*/
|
|
86923
86923
|
track(): Word.Font;
|
|
86924
86924
|
/**
|
|
86925
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
86925
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
86926
86926
|
*/
|
|
86927
86927
|
untrack(): Word.Font;
|
|
86928
86928
|
/**
|
|
@@ -86955,7 +86955,7 @@ declare namespace Word {
|
|
|
86955
86955
|
*/
|
|
86956
86956
|
readonly parentContentControl: Word.ContentControl;
|
|
86957
86957
|
/**
|
|
86958
|
-
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86958
|
+
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86959
86959
|
*
|
|
86960
86960
|
* @remarks
|
|
86961
86961
|
* [Api set: WordApi 1.3]
|
|
@@ -86976,14 +86976,14 @@ declare namespace Word {
|
|
|
86976
86976
|
*/
|
|
86977
86977
|
readonly parentTableCell: Word.TableCell;
|
|
86978
86978
|
/**
|
|
86979
|
-
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86979
|
+
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86980
86980
|
*
|
|
86981
86981
|
* @remarks
|
|
86982
86982
|
* [Api set: WordApi 1.3]
|
|
86983
86983
|
*/
|
|
86984
86984
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
86985
86985
|
/**
|
|
86986
|
-
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
86986
|
+
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
86987
86987
|
*
|
|
86988
86988
|
* @remarks
|
|
86989
86989
|
* [Api set: WordApi 1.3]
|
|
@@ -87061,7 +87061,7 @@ declare namespace Word {
|
|
|
87061
87061
|
*/
|
|
87062
87062
|
getNext(): Word.InlinePicture;
|
|
87063
87063
|
/**
|
|
87064
|
-
* Gets the next inline image. If this inline image is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87064
|
+
* Gets the next inline image. If this inline image is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87065
87065
|
*
|
|
87066
87066
|
* @remarks
|
|
87067
87067
|
* [Api set: WordApi 1.3]
|
|
@@ -87193,11 +87193,11 @@ declare namespace Word {
|
|
|
87193
87193
|
expand?: string;
|
|
87194
87194
|
}): Word.InlinePicture;
|
|
87195
87195
|
/**
|
|
87196
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87196
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
87197
87197
|
*/
|
|
87198
87198
|
track(): Word.InlinePicture;
|
|
87199
87199
|
/**
|
|
87200
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87200
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87201
87201
|
*/
|
|
87202
87202
|
untrack(): Word.InlinePicture;
|
|
87203
87203
|
/**
|
|
@@ -87225,7 +87225,7 @@ declare namespace Word {
|
|
|
87225
87225
|
*/
|
|
87226
87226
|
getFirst(): Word.InlinePicture;
|
|
87227
87227
|
/**
|
|
87228
|
-
* Gets the first inline image in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87228
|
+
* Gets the first inline image in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87229
87229
|
*
|
|
87230
87230
|
* @remarks
|
|
87231
87231
|
* [Api set: WordApi 1.3]
|
|
@@ -87250,11 +87250,11 @@ declare namespace Word {
|
|
|
87250
87250
|
*/
|
|
87251
87251
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
87252
87252
|
/**
|
|
87253
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87253
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
87254
87254
|
*/
|
|
87255
87255
|
track(): Word.InlinePictureCollection;
|
|
87256
87256
|
/**
|
|
87257
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87257
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87258
87258
|
*/
|
|
87259
87259
|
untrack(): Word.InlinePictureCollection;
|
|
87260
87260
|
/**
|
|
@@ -87437,11 +87437,11 @@ declare namespace Word {
|
|
|
87437
87437
|
expand?: string;
|
|
87438
87438
|
}): Word.List;
|
|
87439
87439
|
/**
|
|
87440
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87440
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
87441
87441
|
*/
|
|
87442
87442
|
track(): Word.List;
|
|
87443
87443
|
/**
|
|
87444
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87444
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87445
87445
|
*/
|
|
87446
87446
|
untrack(): Word.List;
|
|
87447
87447
|
/**
|
|
@@ -87471,7 +87471,7 @@ declare namespace Word {
|
|
|
87471
87471
|
*/
|
|
87472
87472
|
getById(id: number): Word.List;
|
|
87473
87473
|
/**
|
|
87474
|
-
* Gets a list by its identifier. If there isn't a list with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87474
|
+
* Gets a list by its identifier. If there isn't a list with the identifier in this collection, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87475
87475
|
*
|
|
87476
87476
|
* @remarks
|
|
87477
87477
|
* [Api set: WordApi 1.3]
|
|
@@ -87487,7 +87487,7 @@ declare namespace Word {
|
|
|
87487
87487
|
*/
|
|
87488
87488
|
getFirst(): Word.List;
|
|
87489
87489
|
/**
|
|
87490
|
-
* Gets the first list in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87490
|
+
* Gets the first list in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87491
87491
|
*
|
|
87492
87492
|
* @remarks
|
|
87493
87493
|
* [Api set: WordApi 1.3]
|
|
@@ -87521,11 +87521,11 @@ declare namespace Word {
|
|
|
87521
87521
|
*/
|
|
87522
87522
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
87523
87523
|
/**
|
|
87524
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87524
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
87525
87525
|
*/
|
|
87526
87526
|
track(): Word.ListCollection;
|
|
87527
87527
|
/**
|
|
87528
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87528
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87529
87529
|
*/
|
|
87530
87530
|
untrack(): Word.ListCollection;
|
|
87531
87531
|
/**
|
|
@@ -87582,7 +87582,7 @@ declare namespace Word {
|
|
|
87582
87582
|
*/
|
|
87583
87583
|
getAncestor(parentOnly?: boolean): Word.Paragraph;
|
|
87584
87584
|
/**
|
|
87585
|
-
* Gets the list item parent, or the closest ancestor if the parent does not exist. If the list item has no ancestor, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87585
|
+
* Gets the list item parent, or the closest ancestor if the parent does not exist. If the list item has no ancestor, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87586
87586
|
*
|
|
87587
87587
|
* @remarks
|
|
87588
87588
|
* [Api set: WordApi 1.3]
|
|
@@ -87621,11 +87621,11 @@ declare namespace Word {
|
|
|
87621
87621
|
expand?: string;
|
|
87622
87622
|
}): Word.ListItem;
|
|
87623
87623
|
/**
|
|
87624
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87624
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
87625
87625
|
*/
|
|
87626
87626
|
track(): Word.ListItem;
|
|
87627
87627
|
/**
|
|
87628
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87628
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87629
87629
|
*/
|
|
87630
87630
|
untrack(): Word.ListItem;
|
|
87631
87631
|
/**
|
|
@@ -87687,7 +87687,7 @@ declare namespace Word {
|
|
|
87687
87687
|
*/
|
|
87688
87688
|
getNext(): Word.NoteItem;
|
|
87689
87689
|
/**
|
|
87690
|
-
* Gets the next note item of the same type. If this note item is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87690
|
+
* Gets the next note item of the same type. If this note item is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87691
87691
|
*
|
|
87692
87692
|
* @remarks
|
|
87693
87693
|
* [Api set: WordApi 1.5]
|
|
@@ -87715,11 +87715,11 @@ declare namespace Word {
|
|
|
87715
87715
|
expand?: string;
|
|
87716
87716
|
}): Word.NoteItem;
|
|
87717
87717
|
/**
|
|
87718
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87718
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
87719
87719
|
*/
|
|
87720
87720
|
track(): Word.NoteItem;
|
|
87721
87721
|
/**
|
|
87722
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87722
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87723
87723
|
*/
|
|
87724
87724
|
untrack(): Word.NoteItem;
|
|
87725
87725
|
/**
|
|
@@ -87747,7 +87747,7 @@ declare namespace Word {
|
|
|
87747
87747
|
*/
|
|
87748
87748
|
getFirst(): Word.NoteItem;
|
|
87749
87749
|
/**
|
|
87750
|
-
* Gets the first note item in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87750
|
+
* Gets the first note item in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87751
87751
|
*
|
|
87752
87752
|
* @remarks
|
|
87753
87753
|
* [Api set: WordApi 1.5]
|
|
@@ -87772,11 +87772,11 @@ declare namespace Word {
|
|
|
87772
87772
|
*/
|
|
87773
87773
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
87774
87774
|
/**
|
|
87775
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
87775
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
87776
87776
|
*/
|
|
87777
87777
|
track(): Word.NoteItemCollection;
|
|
87778
87778
|
/**
|
|
87779
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
87779
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
87780
87780
|
*/
|
|
87781
87781
|
untrack(): Word.NoteItemCollection;
|
|
87782
87782
|
/**
|
|
@@ -87851,14 +87851,14 @@ declare namespace Word {
|
|
|
87851
87851
|
*/
|
|
87852
87852
|
readonly listItem: Word.ListItem;
|
|
87853
87853
|
/**
|
|
87854
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87854
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87855
87855
|
*
|
|
87856
87856
|
* @remarks
|
|
87857
87857
|
* [Api set: WordApi 1.3]
|
|
87858
87858
|
*/
|
|
87859
87859
|
readonly listItemOrNullObject: Word.ListItem;
|
|
87860
87860
|
/**
|
|
87861
|
-
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87861
|
+
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87862
87862
|
*
|
|
87863
87863
|
* @remarks
|
|
87864
87864
|
* [Api set: WordApi 1.3]
|
|
@@ -87879,7 +87879,7 @@ declare namespace Word {
|
|
|
87879
87879
|
*/
|
|
87880
87880
|
readonly parentContentControl: Word.ContentControl;
|
|
87881
87881
|
/**
|
|
87882
|
-
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87882
|
+
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87883
87883
|
*
|
|
87884
87884
|
* @remarks
|
|
87885
87885
|
* [Api set: WordApi 1.3]
|
|
@@ -87900,14 +87900,14 @@ declare namespace Word {
|
|
|
87900
87900
|
*/
|
|
87901
87901
|
readonly parentTableCell: Word.TableCell;
|
|
87902
87902
|
/**
|
|
87903
|
-
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87903
|
+
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87904
87904
|
*
|
|
87905
87905
|
* @remarks
|
|
87906
87906
|
* [Api set: WordApi 1.3]
|
|
87907
87907
|
*/
|
|
87908
87908
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
87909
87909
|
/**
|
|
87910
|
-
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
87910
|
+
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
87911
87911
|
*
|
|
87912
87912
|
* @remarks
|
|
87913
87913
|
* [Api set: WordApi 1.3]
|
|
@@ -88097,7 +88097,7 @@ declare namespace Word {
|
|
|
88097
88097
|
*/
|
|
88098
88098
|
getNext(): Word.Paragraph;
|
|
88099
88099
|
/**
|
|
88100
|
-
* Gets the next paragraph. If the paragraph is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88100
|
+
* Gets the next paragraph. If the paragraph is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88101
88101
|
*
|
|
88102
88102
|
* @remarks
|
|
88103
88103
|
* [Api set: WordApi 1.3]
|
|
@@ -88118,7 +88118,7 @@ declare namespace Word {
|
|
|
88118
88118
|
*/
|
|
88119
88119
|
getPrevious(): Word.Paragraph;
|
|
88120
88120
|
/**
|
|
88121
|
-
* Gets the previous paragraph. If the paragraph is the first one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88121
|
+
* Gets the previous paragraph. If the paragraph is the first one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88122
88122
|
*
|
|
88123
88123
|
* @remarks
|
|
88124
88124
|
* [Api set: WordApi 1.3]
|
|
@@ -88330,11 +88330,11 @@ declare namespace Word {
|
|
|
88330
88330
|
expand?: string;
|
|
88331
88331
|
}): Word.Paragraph;
|
|
88332
88332
|
/**
|
|
88333
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
88333
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
88334
88334
|
*/
|
|
88335
88335
|
track(): Word.Paragraph;
|
|
88336
88336
|
/**
|
|
88337
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
88337
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
88338
88338
|
*/
|
|
88339
88339
|
untrack(): Word.Paragraph;
|
|
88340
88340
|
/**
|
|
@@ -88362,7 +88362,7 @@ declare namespace Word {
|
|
|
88362
88362
|
*/
|
|
88363
88363
|
getFirst(): Word.Paragraph;
|
|
88364
88364
|
/**
|
|
88365
|
-
* Gets the first paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88365
|
+
* Gets the first paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88366
88366
|
*
|
|
88367
88367
|
* @remarks
|
|
88368
88368
|
* [Api set: WordApi 1.3]
|
|
@@ -88376,7 +88376,7 @@ declare namespace Word {
|
|
|
88376
88376
|
*/
|
|
88377
88377
|
getLast(): Word.Paragraph;
|
|
88378
88378
|
/**
|
|
88379
|
-
* Gets the last paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88379
|
+
* Gets the last paragraph in this collection. If the collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88380
88380
|
*
|
|
88381
88381
|
* @remarks
|
|
88382
88382
|
* [Api set: WordApi 1.3]
|
|
@@ -88401,11 +88401,11 @@ declare namespace Word {
|
|
|
88401
88401
|
*/
|
|
88402
88402
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
88403
88403
|
/**
|
|
88404
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
88404
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
88405
88405
|
*/
|
|
88406
88406
|
track(): Word.ParagraphCollection;
|
|
88407
88407
|
/**
|
|
88408
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
88408
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
88409
88409
|
*/
|
|
88410
88410
|
untrack(): Word.ParagraphCollection;
|
|
88411
88411
|
/**
|
|
@@ -88551,11 +88551,11 @@ declare namespace Word {
|
|
|
88551
88551
|
expand?: string;
|
|
88552
88552
|
}): Word.ParagraphFormat;
|
|
88553
88553
|
/**
|
|
88554
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
88554
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
88555
88555
|
*/
|
|
88556
88556
|
track(): Word.ParagraphFormat;
|
|
88557
88557
|
/**
|
|
88558
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
88558
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
88559
88559
|
*/
|
|
88560
88560
|
untrack(): Word.ParagraphFormat;
|
|
88561
88561
|
/**
|
|
@@ -88644,7 +88644,7 @@ declare namespace Word {
|
|
|
88644
88644
|
*/
|
|
88645
88645
|
readonly parentContentControl: Word.ContentControl;
|
|
88646
88646
|
/**
|
|
88647
|
-
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88647
|
+
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88648
88648
|
*
|
|
88649
88649
|
* @remarks
|
|
88650
88650
|
* [Api set: WordApi 1.3]
|
|
@@ -88665,14 +88665,14 @@ declare namespace Word {
|
|
|
88665
88665
|
*/
|
|
88666
88666
|
readonly parentTableCell: Word.TableCell;
|
|
88667
88667
|
/**
|
|
88668
|
-
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88668
|
+
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88669
88669
|
*
|
|
88670
88670
|
* @remarks
|
|
88671
88671
|
* [Api set: WordApi 1.3]
|
|
88672
88672
|
*/
|
|
88673
88673
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
88674
88674
|
/**
|
|
88675
|
-
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88675
|
+
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88676
88676
|
*
|
|
88677
88677
|
* @remarks
|
|
88678
88678
|
* [Api set: WordApi 1.3]
|
|
@@ -88761,7 +88761,7 @@ declare namespace Word {
|
|
|
88761
88761
|
*/
|
|
88762
88762
|
expandTo(range: Word.Range): Word.Range;
|
|
88763
88763
|
/**
|
|
88764
|
-
* Returns a new range that extends from this range in either direction to cover another range. This range is not changed. If the two ranges do not have a union, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88764
|
+
* Returns a new range that extends from this range in either direction to cover another range. This range is not changed. If the two ranges do not have a union, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88765
88765
|
*
|
|
88766
88766
|
* @remarks
|
|
88767
88767
|
* [Api set: WordApi 1.3]
|
|
@@ -88823,7 +88823,7 @@ declare namespace Word {
|
|
|
88823
88823
|
*/
|
|
88824
88824
|
getNextTextRange(endingMarks: string[], trimSpacing?: boolean): Word.Range;
|
|
88825
88825
|
/**
|
|
88826
|
-
* Gets the next text range by using punctuation marks and/or other ending marks. If this text range is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
88826
|
+
* Gets the next text range by using punctuation marks and/or other ending marks. If this text range is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88827
88827
|
*
|
|
88828
88828
|
* @remarks
|
|
88829
88829
|
* [Api set: WordApi 1.3]
|
|
@@ -89040,7 +89040,7 @@ declare namespace Word {
|
|
|
89040
89040
|
*/
|
|
89041
89041
|
intersectWith(range: Word.Range): Word.Range;
|
|
89042
89042
|
/**
|
|
89043
|
-
* Returns a new range as the intersection of this range with another range. This range is not changed. If the two ranges are not overlapped or adjacent, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89043
|
+
* Returns a new range as the intersection of this range with another range. This range is not changed. If the two ranges are not overlapped or adjacent, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89044
89044
|
*
|
|
89045
89045
|
* @remarks
|
|
89046
89046
|
* [Api set: WordApi 1.3]
|
|
@@ -89118,11 +89118,11 @@ declare namespace Word {
|
|
|
89118
89118
|
expand?: string;
|
|
89119
89119
|
}): Word.Range;
|
|
89120
89120
|
/**
|
|
89121
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89121
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89122
89122
|
*/
|
|
89123
89123
|
track(): Word.Range;
|
|
89124
89124
|
/**
|
|
89125
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89125
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89126
89126
|
*/
|
|
89127
89127
|
untrack(): Word.Range;
|
|
89128
89128
|
/**
|
|
@@ -89150,7 +89150,7 @@ declare namespace Word {
|
|
|
89150
89150
|
*/
|
|
89151
89151
|
getFirst(): Word.Range;
|
|
89152
89152
|
/**
|
|
89153
|
-
* Gets the first range in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89153
|
+
* Gets the first range in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89154
89154
|
*
|
|
89155
89155
|
* @remarks
|
|
89156
89156
|
* [Api set: WordApi 1.3]
|
|
@@ -89175,11 +89175,11 @@ declare namespace Word {
|
|
|
89175
89175
|
*/
|
|
89176
89176
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
89177
89177
|
/**
|
|
89178
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89178
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89179
89179
|
*/
|
|
89180
89180
|
track(): Word.RangeCollection;
|
|
89181
89181
|
/**
|
|
89182
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89182
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89183
89183
|
*/
|
|
89184
89184
|
untrack(): Word.RangeCollection;
|
|
89185
89185
|
/**
|
|
@@ -89233,7 +89233,7 @@ declare namespace Word {
|
|
|
89233
89233
|
}
|
|
89234
89234
|
/**
|
|
89235
89235
|
* Specifies the options to be included in a search operation.
|
|
89236
|
-
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://
|
|
89236
|
+
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://learn.microsoft.com/office/dev/add-ins/word/search-option-guidance | Use search options to find text in your Word add-in}.
|
|
89237
89237
|
*
|
|
89238
89238
|
* @remarks
|
|
89239
89239
|
* [Api set: WordApi 1.1]
|
|
@@ -89397,7 +89397,7 @@ declare namespace Word {
|
|
|
89397
89397
|
*/
|
|
89398
89398
|
getNext(): Word.Section;
|
|
89399
89399
|
/**
|
|
89400
|
-
* Gets the next section. If this section is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89400
|
+
* Gets the next section. If this section is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89401
89401
|
*
|
|
89402
89402
|
* @remarks
|
|
89403
89403
|
* [Api set: WordApi 1.3]
|
|
@@ -89425,11 +89425,11 @@ declare namespace Word {
|
|
|
89425
89425
|
expand?: string;
|
|
89426
89426
|
}): Word.Section;
|
|
89427
89427
|
/**
|
|
89428
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89428
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89429
89429
|
*/
|
|
89430
89430
|
track(): Word.Section;
|
|
89431
89431
|
/**
|
|
89432
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89432
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89433
89433
|
*/
|
|
89434
89434
|
untrack(): Word.Section;
|
|
89435
89435
|
/**
|
|
@@ -89457,7 +89457,7 @@ declare namespace Word {
|
|
|
89457
89457
|
*/
|
|
89458
89458
|
getFirst(): Word.Section;
|
|
89459
89459
|
/**
|
|
89460
|
-
* Gets the first section in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89460
|
+
* Gets the first section in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89461
89461
|
*
|
|
89462
89462
|
* @remarks
|
|
89463
89463
|
* [Api set: WordApi 1.3]
|
|
@@ -89482,11 +89482,11 @@ declare namespace Word {
|
|
|
89482
89482
|
*/
|
|
89483
89483
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
89484
89484
|
/**
|
|
89485
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89485
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89486
89486
|
*/
|
|
89487
89487
|
track(): Word.SectionCollection;
|
|
89488
89488
|
/**
|
|
89489
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89489
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89490
89490
|
*/
|
|
89491
89491
|
untrack(): Word.SectionCollection;
|
|
89492
89492
|
/**
|
|
@@ -89555,11 +89555,11 @@ declare namespace Word {
|
|
|
89555
89555
|
expand?: string;
|
|
89556
89556
|
}): Word.Setting;
|
|
89557
89557
|
/**
|
|
89558
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89558
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89559
89559
|
*/
|
|
89560
89560
|
track(): Word.Setting;
|
|
89561
89561
|
/**
|
|
89562
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89562
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89563
89563
|
*/
|
|
89564
89564
|
untrack(): Word.Setting;
|
|
89565
89565
|
/**
|
|
@@ -89613,7 +89613,7 @@ declare namespace Word {
|
|
|
89613
89613
|
*/
|
|
89614
89614
|
getItem(key: string): Word.Setting;
|
|
89615
89615
|
/**
|
|
89616
|
-
* Gets a setting object by its key, which is case-sensitive. If the setting does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89616
|
+
* Gets a setting object by its key, which is case-sensitive. If the setting does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89617
89617
|
*
|
|
89618
89618
|
* @remarks
|
|
89619
89619
|
* [Api set: WordApi 1.4]
|
|
@@ -89640,11 +89640,11 @@ declare namespace Word {
|
|
|
89640
89640
|
*/
|
|
89641
89641
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
|
|
89642
89642
|
/**
|
|
89643
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89643
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89644
89644
|
*/
|
|
89645
89645
|
track(): Word.SettingCollection;
|
|
89646
89646
|
/**
|
|
89647
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89647
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89648
89648
|
*/
|
|
89649
89649
|
untrack(): Word.SettingCollection;
|
|
89650
89650
|
/**
|
|
@@ -89717,11 +89717,11 @@ declare namespace Word {
|
|
|
89717
89717
|
*/
|
|
89718
89718
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.StyleCollection;
|
|
89719
89719
|
/**
|
|
89720
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89720
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89721
89721
|
*/
|
|
89722
89722
|
track(): Word.StyleCollection;
|
|
89723
89723
|
/**
|
|
89724
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89724
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89725
89725
|
*/
|
|
89726
89726
|
untrack(): Word.StyleCollection;
|
|
89727
89727
|
/**
|
|
@@ -89867,11 +89867,11 @@ declare namespace Word {
|
|
|
89867
89867
|
expand?: string;
|
|
89868
89868
|
}): Word.Style;
|
|
89869
89869
|
/**
|
|
89870
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
89870
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
89871
89871
|
*/
|
|
89872
89872
|
track(): Word.Style;
|
|
89873
89873
|
/**
|
|
89874
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
89874
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
89875
89875
|
*/
|
|
89876
89876
|
untrack(): Word.Style;
|
|
89877
89877
|
/**
|
|
@@ -89932,7 +89932,7 @@ declare namespace Word {
|
|
|
89932
89932
|
*/
|
|
89933
89933
|
readonly parentContentControl: Word.ContentControl;
|
|
89934
89934
|
/**
|
|
89935
|
-
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89935
|
+
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89936
89936
|
*
|
|
89937
89937
|
* @remarks
|
|
89938
89938
|
* [Api set: WordApi 1.3]
|
|
@@ -89953,14 +89953,14 @@ declare namespace Word {
|
|
|
89953
89953
|
*/
|
|
89954
89954
|
readonly parentTableCell: Word.TableCell;
|
|
89955
89955
|
/**
|
|
89956
|
-
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89956
|
+
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89957
89957
|
*
|
|
89958
89958
|
* @remarks
|
|
89959
89959
|
* [Api set: WordApi 1.3]
|
|
89960
89960
|
*/
|
|
89961
89961
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
89962
89962
|
/**
|
|
89963
|
-
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
89963
|
+
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
89964
89964
|
*
|
|
89965
89965
|
* @remarks
|
|
89966
89966
|
* [Api set: WordApi 1.3]
|
|
@@ -90206,7 +90206,7 @@ declare namespace Word {
|
|
|
90206
90206
|
*/
|
|
90207
90207
|
getCell(rowIndex: number, cellIndex: number): Word.TableCell;
|
|
90208
90208
|
/**
|
|
90209
|
-
* Gets the table cell at a specified row and column. If the specified table cell does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90209
|
+
* Gets the table cell at a specified row and column. If the specified table cell does not exist, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90210
90210
|
*
|
|
90211
90211
|
* @remarks
|
|
90212
90212
|
* [Api set: WordApi 1.3]
|
|
@@ -90241,7 +90241,7 @@ declare namespace Word {
|
|
|
90241
90241
|
*/
|
|
90242
90242
|
getNext(): Word.Table;
|
|
90243
90243
|
/**
|
|
90244
|
-
* Gets the next table. If this table is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90244
|
+
* Gets the next table. If this table is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90245
90245
|
*
|
|
90246
90246
|
* @remarks
|
|
90247
90247
|
* [Api set: WordApi 1.3]
|
|
@@ -90255,7 +90255,7 @@ declare namespace Word {
|
|
|
90255
90255
|
*/
|
|
90256
90256
|
getParagraphAfter(): Word.Paragraph;
|
|
90257
90257
|
/**
|
|
90258
|
-
* Gets the paragraph after the table. If there isn't a paragraph after the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90258
|
+
* Gets the paragraph after the table. If there isn't a paragraph after the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90259
90259
|
*
|
|
90260
90260
|
* @remarks
|
|
90261
90261
|
* [Api set: WordApi 1.3]
|
|
@@ -90269,7 +90269,7 @@ declare namespace Word {
|
|
|
90269
90269
|
*/
|
|
90270
90270
|
getParagraphBefore(): Word.Paragraph;
|
|
90271
90271
|
/**
|
|
90272
|
-
* Gets the paragraph before the table. If there isn't a paragraph before the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90272
|
+
* Gets the paragraph before the table. If there isn't a paragraph before the table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90273
90273
|
*
|
|
90274
90274
|
* @remarks
|
|
90275
90275
|
* [Api set: WordApi 1.3]
|
|
@@ -90403,11 +90403,11 @@ declare namespace Word {
|
|
|
90403
90403
|
expand?: string;
|
|
90404
90404
|
}): Word.Table;
|
|
90405
90405
|
/**
|
|
90406
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90406
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
90407
90407
|
*/
|
|
90408
90408
|
track(): Word.Table;
|
|
90409
90409
|
/**
|
|
90410
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90410
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90411
90411
|
*/
|
|
90412
90412
|
untrack(): Word.Table;
|
|
90413
90413
|
/**
|
|
@@ -90435,7 +90435,7 @@ declare namespace Word {
|
|
|
90435
90435
|
*/
|
|
90436
90436
|
getFirst(): Word.Table;
|
|
90437
90437
|
/**
|
|
90438
|
-
* Gets the first table in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90438
|
+
* Gets the first table in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90439
90439
|
*
|
|
90440
90440
|
* @remarks
|
|
90441
90441
|
* [Api set: WordApi 1.3]
|
|
@@ -90460,11 +90460,11 @@ declare namespace Word {
|
|
|
90460
90460
|
*/
|
|
90461
90461
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
90462
90462
|
/**
|
|
90463
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90463
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
90464
90464
|
*/
|
|
90465
90465
|
track(): Word.TableCollection;
|
|
90466
90466
|
/**
|
|
90467
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90467
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90468
90468
|
*/
|
|
90469
90469
|
untrack(): Word.TableCollection;
|
|
90470
90470
|
/**
|
|
@@ -90646,7 +90646,7 @@ declare namespace Word {
|
|
|
90646
90646
|
*/
|
|
90647
90647
|
getNext(): Word.TableRow;
|
|
90648
90648
|
/**
|
|
90649
|
-
* Gets the next row. If this row is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90649
|
+
* Gets the next row. If this row is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90650
90650
|
*
|
|
90651
90651
|
* @remarks
|
|
90652
90652
|
* [Api set: WordApi 1.3]
|
|
@@ -90748,11 +90748,11 @@ declare namespace Word {
|
|
|
90748
90748
|
expand?: string;
|
|
90749
90749
|
}): Word.TableRow;
|
|
90750
90750
|
/**
|
|
90751
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90751
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
90752
90752
|
*/
|
|
90753
90753
|
track(): Word.TableRow;
|
|
90754
90754
|
/**
|
|
90755
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90755
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90756
90756
|
*/
|
|
90757
90757
|
untrack(): Word.TableRow;
|
|
90758
90758
|
/**
|
|
@@ -90780,7 +90780,7 @@ declare namespace Word {
|
|
|
90780
90780
|
*/
|
|
90781
90781
|
getFirst(): Word.TableRow;
|
|
90782
90782
|
/**
|
|
90783
|
-
* Gets the first row in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90783
|
+
* Gets the first row in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90784
90784
|
*
|
|
90785
90785
|
* @remarks
|
|
90786
90786
|
* [Api set: WordApi 1.3]
|
|
@@ -90805,11 +90805,11 @@ declare namespace Word {
|
|
|
90805
90805
|
*/
|
|
90806
90806
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
90807
90807
|
/**
|
|
90808
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
90808
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
90809
90809
|
*/
|
|
90810
90810
|
track(): Word.TableRowCollection;
|
|
90811
90811
|
/**
|
|
90812
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
90812
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
90813
90813
|
*/
|
|
90814
90814
|
untrack(): Word.TableRowCollection;
|
|
90815
90815
|
/**
|
|
@@ -90970,7 +90970,7 @@ declare namespace Word {
|
|
|
90970
90970
|
*/
|
|
90971
90971
|
getNext(): Word.TableCell;
|
|
90972
90972
|
/**
|
|
90973
|
-
* Gets the next cell. If this cell is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
90973
|
+
* Gets the next cell. If this cell is the last one, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
90974
90974
|
*
|
|
90975
90975
|
* @remarks
|
|
90976
90976
|
* [Api set: WordApi 1.3]
|
|
@@ -91050,11 +91050,11 @@ declare namespace Word {
|
|
|
91050
91050
|
expand?: string;
|
|
91051
91051
|
}): Word.TableCell;
|
|
91052
91052
|
/**
|
|
91053
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
91053
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
91054
91054
|
*/
|
|
91055
91055
|
track(): Word.TableCell;
|
|
91056
91056
|
/**
|
|
91057
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
91057
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
91058
91058
|
*/
|
|
91059
91059
|
untrack(): Word.TableCell;
|
|
91060
91060
|
/**
|
|
@@ -91082,7 +91082,7 @@ declare namespace Word {
|
|
|
91082
91082
|
*/
|
|
91083
91083
|
getFirst(): Word.TableCell;
|
|
91084
91084
|
/**
|
|
91085
|
-
* Gets the first table cell in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
91085
|
+
* Gets the first table cell in this collection. If this collection is empty, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
91086
91086
|
*
|
|
91087
91087
|
* @remarks
|
|
91088
91088
|
* [Api set: WordApi 1.3]
|
|
@@ -91107,11 +91107,11 @@ declare namespace Word {
|
|
|
91107
91107
|
*/
|
|
91108
91108
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
91109
91109
|
/**
|
|
91110
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
91110
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
91111
91111
|
*/
|
|
91112
91112
|
track(): Word.TableCellCollection;
|
|
91113
91113
|
/**
|
|
91114
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
91114
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
91115
91115
|
*/
|
|
91116
91116
|
untrack(): Word.TableCellCollection;
|
|
91117
91117
|
/**
|
|
@@ -91180,11 +91180,11 @@ declare namespace Word {
|
|
|
91180
91180
|
expand?: string;
|
|
91181
91181
|
}): Word.TableBorder;
|
|
91182
91182
|
/**
|
|
91183
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://
|
|
91183
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.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.
|
|
91184
91184
|
*/
|
|
91185
91185
|
track(): Word.TableBorder;
|
|
91186
91186
|
/**
|
|
91187
|
-
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://
|
|
91187
|
+
* Release the memory associated with this object, if it has previously been tracked. This call is shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.remove(thisObject)}. Having many tracked objects slows down the host application, so please remember to free any objects you add, once you're done using them. You will need to call `context.sync()` before the memory release takes effect.
|
|
91188
91188
|
*/
|
|
91189
91189
|
untrack(): Word.TableBorder;
|
|
91190
91190
|
/**
|
|
@@ -94545,7 +94545,7 @@ declare namespace Word {
|
|
|
94545
94545
|
*/
|
|
94546
94546
|
listItem?: Word.Interfaces.ListItemUpdateData;
|
|
94547
94547
|
/**
|
|
94548
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
94548
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
94549
94549
|
*
|
|
94550
94550
|
* @remarks
|
|
94551
94551
|
* [Api set: WordApi 1.3]
|
|
@@ -96135,7 +96135,7 @@ declare namespace Word {
|
|
|
96135
96135
|
*/
|
|
96136
96136
|
listItem?: Word.Interfaces.ListItemData;
|
|
96137
96137
|
/**
|
|
96138
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96138
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96139
96139
|
*
|
|
96140
96140
|
* @remarks
|
|
96141
96141
|
* [Api set: WordApi 1.3]
|
|
@@ -96965,7 +96965,7 @@ declare namespace Word {
|
|
|
96965
96965
|
*/
|
|
96966
96966
|
parentBody?: Word.Interfaces.BodyLoadOptions;
|
|
96967
96967
|
/**
|
|
96968
|
-
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96968
|
+
* Gets the parent body of the body. For example, a table cell body's parent body could be a header. If there isn't a parent body, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96969
96969
|
*
|
|
96970
96970
|
* @remarks
|
|
96971
96971
|
* [Api set: WordApi 1.3]
|
|
@@ -96979,7 +96979,7 @@ declare namespace Word {
|
|
|
96979
96979
|
*/
|
|
96980
96980
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
96981
96981
|
/**
|
|
96982
|
-
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96982
|
+
* Gets the content control that contains the body. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96983
96983
|
*
|
|
96984
96984
|
* @remarks
|
|
96985
96985
|
* [Api set: WordApi 1.3]
|
|
@@ -96993,7 +96993,7 @@ declare namespace Word {
|
|
|
96993
96993
|
*/
|
|
96994
96994
|
parentSection?: Word.Interfaces.SectionLoadOptions;
|
|
96995
96995
|
/**
|
|
96996
|
-
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
96996
|
+
* Gets the parent section of the body. If there isn't a parent section, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
96997
96997
|
*
|
|
96998
96998
|
* @remarks
|
|
96999
96999
|
* [Api set: WordApi 1.3]
|
|
@@ -97364,7 +97364,7 @@ declare namespace Word {
|
|
|
97364
97364
|
*/
|
|
97365
97365
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
97366
97366
|
/**
|
|
97367
|
-
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97367
|
+
* Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97368
97368
|
*
|
|
97369
97369
|
* @remarks
|
|
97370
97370
|
* [Api set: WordApi 1.3]
|
|
@@ -97385,14 +97385,14 @@ declare namespace Word {
|
|
|
97385
97385
|
*/
|
|
97386
97386
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
97387
97387
|
/**
|
|
97388
|
-
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97388
|
+
* Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97389
97389
|
*
|
|
97390
97390
|
* @remarks
|
|
97391
97391
|
* [Api set: WordApi 1.3]
|
|
97392
97392
|
*/
|
|
97393
97393
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
97394
97394
|
/**
|
|
97395
|
-
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97395
|
+
* Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97396
97396
|
*
|
|
97397
97397
|
* @remarks
|
|
97398
97398
|
* [Api set: WordApi 1.3]
|
|
@@ -97530,7 +97530,7 @@ declare namespace Word {
|
|
|
97530
97530
|
*/
|
|
97531
97531
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
97532
97532
|
/**
|
|
97533
|
-
* For EACH ITEM in the collection: Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97533
|
+
* For EACH ITEM in the collection: Gets the content control that contains the content control. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97534
97534
|
*
|
|
97535
97535
|
* @remarks
|
|
97536
97536
|
* [Api set: WordApi 1.3]
|
|
@@ -97551,14 +97551,14 @@ declare namespace Word {
|
|
|
97551
97551
|
*/
|
|
97552
97552
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
97553
97553
|
/**
|
|
97554
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97554
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the content control. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97555
97555
|
*
|
|
97556
97556
|
* @remarks
|
|
97557
97557
|
* [Api set: WordApi 1.3]
|
|
97558
97558
|
*/
|
|
97559
97559
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
97560
97560
|
/**
|
|
97561
|
-
* For EACH ITEM in the collection: Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
97561
|
+
* For EACH ITEM in the collection: Gets the table that contains the content control. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
97562
97562
|
*
|
|
97563
97563
|
* @remarks
|
|
97564
97564
|
* [Api set: WordApi 1.3]
|
|
@@ -98037,7 +98037,7 @@ declare namespace Word {
|
|
|
98037
98037
|
*/
|
|
98038
98038
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98039
98039
|
/**
|
|
98040
|
-
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98040
|
+
* Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98041
98041
|
*
|
|
98042
98042
|
* @remarks
|
|
98043
98043
|
* [Api set: WordApi 1.4]
|
|
@@ -98058,14 +98058,14 @@ declare namespace Word {
|
|
|
98058
98058
|
*/
|
|
98059
98059
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98060
98060
|
/**
|
|
98061
|
-
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98061
|
+
* Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98062
98062
|
*
|
|
98063
98063
|
* @remarks
|
|
98064
98064
|
* [Api set: WordApi 1.4]
|
|
98065
98065
|
*/
|
|
98066
98066
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98067
98067
|
/**
|
|
98068
|
-
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98068
|
+
* Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98069
98069
|
*
|
|
98070
98070
|
* @remarks
|
|
98071
98071
|
* [Api set: WordApi 1.4]
|
|
@@ -98142,7 +98142,7 @@ declare namespace Word {
|
|
|
98142
98142
|
*/
|
|
98143
98143
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98144
98144
|
/**
|
|
98145
|
-
* For EACH ITEM in the collection: Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98145
|
+
* For EACH ITEM in the collection: Gets the content control that contains the field. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98146
98146
|
*
|
|
98147
98147
|
* @remarks
|
|
98148
98148
|
* [Api set: WordApi 1.4]
|
|
@@ -98163,14 +98163,14 @@ declare namespace Word {
|
|
|
98163
98163
|
*/
|
|
98164
98164
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98165
98165
|
/**
|
|
98166
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98166
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the field. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98167
98167
|
*
|
|
98168
98168
|
* @remarks
|
|
98169
98169
|
* [Api set: WordApi 1.4]
|
|
98170
98170
|
*/
|
|
98171
98171
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98172
98172
|
/**
|
|
98173
|
-
* For EACH ITEM in the collection: Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98173
|
+
* For EACH ITEM in the collection: Gets the table that contains the field. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98174
98174
|
*
|
|
98175
98175
|
* @remarks
|
|
98176
98176
|
* [Api set: WordApi 1.4]
|
|
@@ -98336,7 +98336,7 @@ declare namespace Word {
|
|
|
98336
98336
|
*/
|
|
98337
98337
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98338
98338
|
/**
|
|
98339
|
-
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98339
|
+
* Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98340
98340
|
*
|
|
98341
98341
|
* @remarks
|
|
98342
98342
|
* [Api set: WordApi 1.3]
|
|
@@ -98357,14 +98357,14 @@ declare namespace Word {
|
|
|
98357
98357
|
*/
|
|
98358
98358
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98359
98359
|
/**
|
|
98360
|
-
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98360
|
+
* Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98361
98361
|
*
|
|
98362
98362
|
* @remarks
|
|
98363
98363
|
* [Api set: WordApi 1.3]
|
|
98364
98364
|
*/
|
|
98365
98365
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98366
98366
|
/**
|
|
98367
|
-
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98367
|
+
* Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98368
98368
|
*
|
|
98369
98369
|
* @remarks
|
|
98370
98370
|
* [Api set: WordApi 1.3]
|
|
@@ -98439,7 +98439,7 @@ declare namespace Word {
|
|
|
98439
98439
|
*/
|
|
98440
98440
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98441
98441
|
/**
|
|
98442
|
-
* For EACH ITEM in the collection: Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98442
|
+
* For EACH ITEM in the collection: Gets the content control that contains the inline image. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98443
98443
|
*
|
|
98444
98444
|
* @remarks
|
|
98445
98445
|
* [Api set: WordApi 1.3]
|
|
@@ -98460,14 +98460,14 @@ declare namespace Word {
|
|
|
98460
98460
|
*/
|
|
98461
98461
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98462
98462
|
/**
|
|
98463
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98463
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the inline image. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98464
98464
|
*
|
|
98465
98465
|
* @remarks
|
|
98466
98466
|
* [Api set: WordApi 1.3]
|
|
98467
98467
|
*/
|
|
98468
98468
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98469
98469
|
/**
|
|
98470
|
-
* For EACH ITEM in the collection: Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98470
|
+
* For EACH ITEM in the collection: Gets the table that contains the inline image. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98471
98471
|
*
|
|
98472
98472
|
* @remarks
|
|
98473
98473
|
* [Api set: WordApi 1.3]
|
|
@@ -98714,14 +98714,14 @@ declare namespace Word {
|
|
|
98714
98714
|
*/
|
|
98715
98715
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
98716
98716
|
/**
|
|
98717
|
-
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98717
|
+
* Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98718
98718
|
*
|
|
98719
98719
|
* @remarks
|
|
98720
98720
|
* [Api set: WordApi 1.3]
|
|
98721
98721
|
*/
|
|
98722
98722
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
98723
98723
|
/**
|
|
98724
|
-
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98724
|
+
* Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98725
98725
|
*
|
|
98726
98726
|
* @remarks
|
|
98727
98727
|
* [Api set: WordApi 1.3]
|
|
@@ -98742,7 +98742,7 @@ declare namespace Word {
|
|
|
98742
98742
|
*/
|
|
98743
98743
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98744
98744
|
/**
|
|
98745
|
-
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98745
|
+
* Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98746
98746
|
*
|
|
98747
98747
|
* @remarks
|
|
98748
98748
|
* [Api set: WordApi 1.3]
|
|
@@ -98763,14 +98763,14 @@ declare namespace Word {
|
|
|
98763
98763
|
*/
|
|
98764
98764
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98765
98765
|
/**
|
|
98766
|
-
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98766
|
+
* Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98767
98767
|
*
|
|
98768
98768
|
* @remarks
|
|
98769
98769
|
* [Api set: WordApi 1.3]
|
|
98770
98770
|
*/
|
|
98771
98771
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98772
98772
|
/**
|
|
98773
|
-
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98773
|
+
* Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98774
98774
|
*
|
|
98775
98775
|
* @remarks
|
|
98776
98776
|
* [Api set: WordApi 1.3]
|
|
@@ -98922,14 +98922,14 @@ declare namespace Word {
|
|
|
98922
98922
|
*/
|
|
98923
98923
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
98924
98924
|
/**
|
|
98925
|
-
* For EACH ITEM in the collection: Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98925
|
+
* For EACH ITEM in the collection: Gets the ListItem for the paragraph. If the paragraph is not part of a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98926
98926
|
*
|
|
98927
98927
|
* @remarks
|
|
98928
98928
|
* [Api set: WordApi 1.3]
|
|
98929
98929
|
*/
|
|
98930
98930
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
98931
98931
|
/**
|
|
98932
|
-
* For EACH ITEM in the collection: Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98932
|
+
* For EACH ITEM in the collection: Gets the List to which this paragraph belongs. If the paragraph is not in a list, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98933
98933
|
*
|
|
98934
98934
|
* @remarks
|
|
98935
98935
|
* [Api set: WordApi 1.3]
|
|
@@ -98950,7 +98950,7 @@ declare namespace Word {
|
|
|
98950
98950
|
*/
|
|
98951
98951
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
98952
98952
|
/**
|
|
98953
|
-
* For EACH ITEM in the collection: Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98953
|
+
* For EACH ITEM in the collection: Gets the content control that contains the paragraph. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98954
98954
|
*
|
|
98955
98955
|
* @remarks
|
|
98956
98956
|
* [Api set: WordApi 1.3]
|
|
@@ -98971,14 +98971,14 @@ declare namespace Word {
|
|
|
98971
98971
|
*/
|
|
98972
98972
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98973
98973
|
/**
|
|
98974
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98974
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the paragraph. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98975
98975
|
*
|
|
98976
98976
|
* @remarks
|
|
98977
98977
|
* [Api set: WordApi 1.3]
|
|
98978
98978
|
*/
|
|
98979
98979
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98980
98980
|
/**
|
|
98981
|
-
* For EACH ITEM in the collection: Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
98981
|
+
* For EACH ITEM in the collection: Gets the table that contains the paragraph. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
98982
98982
|
*
|
|
98983
98983
|
* @remarks
|
|
98984
98984
|
* [Api set: WordApi 1.3]
|
|
@@ -99240,7 +99240,7 @@ declare namespace Word {
|
|
|
99240
99240
|
*/
|
|
99241
99241
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99242
99242
|
/**
|
|
99243
|
-
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99243
|
+
* Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99244
99244
|
*
|
|
99245
99245
|
* @remarks
|
|
99246
99246
|
* [Api set: WordApi 1.3]
|
|
@@ -99261,14 +99261,14 @@ declare namespace Word {
|
|
|
99261
99261
|
*/
|
|
99262
99262
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99263
99263
|
/**
|
|
99264
|
-
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99264
|
+
* Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99265
99265
|
*
|
|
99266
99266
|
* @remarks
|
|
99267
99267
|
* [Api set: WordApi 1.3]
|
|
99268
99268
|
*/
|
|
99269
99269
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99270
99270
|
/**
|
|
99271
|
-
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99271
|
+
* Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99272
99272
|
*
|
|
99273
99273
|
* @remarks
|
|
99274
99274
|
* [Api set: WordApi 1.3]
|
|
@@ -99343,7 +99343,7 @@ declare namespace Word {
|
|
|
99343
99343
|
*/
|
|
99344
99344
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99345
99345
|
/**
|
|
99346
|
-
* For EACH ITEM in the collection: Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99346
|
+
* For EACH ITEM in the collection: Gets the content control that contains the range. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99347
99347
|
*
|
|
99348
99348
|
* @remarks
|
|
99349
99349
|
* [Api set: WordApi 1.3]
|
|
@@ -99364,14 +99364,14 @@ declare namespace Word {
|
|
|
99364
99364
|
*/
|
|
99365
99365
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99366
99366
|
/**
|
|
99367
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99367
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the range. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99368
99368
|
*
|
|
99369
99369
|
* @remarks
|
|
99370
99370
|
* [Api set: WordApi 1.3]
|
|
99371
99371
|
*/
|
|
99372
99372
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99373
99373
|
/**
|
|
99374
|
-
* For EACH ITEM in the collection: Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99374
|
+
* For EACH ITEM in the collection: Gets the table that contains the range. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99375
99375
|
*
|
|
99376
99376
|
* @remarks
|
|
99377
99377
|
* [Api set: WordApi 1.3]
|
|
@@ -99415,7 +99415,7 @@ declare namespace Word {
|
|
|
99415
99415
|
}
|
|
99416
99416
|
/**
|
|
99417
99417
|
* Specifies the options to be included in a search operation.
|
|
99418
|
-
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://
|
|
99418
|
+
To learn more about how to use search options in the Word JavaScript APIs, read {@link https://learn.microsoft.com/office/dev/add-ins/word/search-option-guidance | Use search options to find text in your Word add-in}.
|
|
99419
99419
|
*
|
|
99420
99420
|
* @remarks
|
|
99421
99421
|
* [Api set: WordApi 1.1]
|
|
@@ -99804,7 +99804,7 @@ declare namespace Word {
|
|
|
99804
99804
|
*/
|
|
99805
99805
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99806
99806
|
/**
|
|
99807
|
-
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99807
|
+
* Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99808
99808
|
*
|
|
99809
99809
|
* @remarks
|
|
99810
99810
|
* [Api set: WordApi 1.3]
|
|
@@ -99825,14 +99825,14 @@ declare namespace Word {
|
|
|
99825
99825
|
*/
|
|
99826
99826
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99827
99827
|
/**
|
|
99828
|
-
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99828
|
+
* Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99829
99829
|
*
|
|
99830
99830
|
* @remarks
|
|
99831
99831
|
* [Api set: WordApi 1.3]
|
|
99832
99832
|
*/
|
|
99833
99833
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99834
99834
|
/**
|
|
99835
|
-
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99835
|
+
* Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99836
99836
|
*
|
|
99837
99837
|
* @remarks
|
|
99838
99838
|
* [Api set: WordApi 1.3]
|
|
@@ -99991,7 +99991,7 @@ declare namespace Word {
|
|
|
99991
99991
|
*/
|
|
99992
99992
|
parentContentControl?: Word.Interfaces.ContentControlLoadOptions;
|
|
99993
99993
|
/**
|
|
99994
|
-
* For EACH ITEM in the collection: Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
99994
|
+
* For EACH ITEM in the collection: Gets the content control that contains the table. If there isn't a parent content control, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
99995
99995
|
*
|
|
99996
99996
|
* @remarks
|
|
99997
99997
|
* [Api set: WordApi 1.3]
|
|
@@ -100012,14 +100012,14 @@ declare namespace Word {
|
|
|
100012
100012
|
*/
|
|
100013
100013
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
100014
100014
|
/**
|
|
100015
|
-
* For EACH ITEM in the collection: Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
100015
|
+
* For EACH ITEM in the collection: Gets the table cell that contains this table. If it is not contained in a table cell, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
100016
100016
|
*
|
|
100017
100017
|
* @remarks
|
|
100018
100018
|
* [Api set: WordApi 1.3]
|
|
100019
100019
|
*/
|
|
100020
100020
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
100021
100021
|
/**
|
|
100022
|
-
* For EACH ITEM in the collection: Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://
|
|
100022
|
+
* For EACH ITEM in the collection: Gets the table that contains this table. If it is not contained in a table, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
100023
100023
|
*
|
|
100024
100024
|
* @remarks
|
|
100025
100025
|
* [Api set: WordApi 1.3]
|