@types/office-js-preview 1.0.416 → 1.0.418
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js-preview/README.md +1 -1
- office-js-preview/index.d.ts +110 -108
- office-js-preview/package.json +2 -2
office-js-preview/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Office.js (https://github.com/OfficeD
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 03 Oct 2023 20:06:12 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
|
|
14
14
|
|
office-js-preview/index.d.ts
CHANGED
|
@@ -88756,7 +88756,7 @@ declare namespace Word {
|
|
|
88756
88756
|
expand?: string;
|
|
88757
88757
|
}): Word.CritiqueAnnotation;
|
|
88758
88758
|
/**
|
|
88759
|
-
* 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
|
|
88759
|
+
* 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're 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.
|
|
88760
88760
|
*/
|
|
88761
88761
|
track(): Word.CritiqueAnnotation;
|
|
88762
88762
|
/**
|
|
@@ -88880,7 +88880,7 @@ declare namespace Word {
|
|
|
88880
88880
|
expand?: string;
|
|
88881
88881
|
}): Word.Annotation;
|
|
88882
88882
|
/**
|
|
88883
|
-
* 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
|
|
88883
|
+
* 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're 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.
|
|
88884
88884
|
*/
|
|
88885
88885
|
track(): Word.Annotation;
|
|
88886
88886
|
/**
|
|
@@ -89010,7 +89010,7 @@ declare namespace Word {
|
|
|
89010
89010
|
*/
|
|
89011
89011
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.AnnotationCollection;
|
|
89012
89012
|
/**
|
|
89013
|
-
* 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
|
|
89013
|
+
* 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're 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.
|
|
89014
89014
|
*/
|
|
89015
89015
|
track(): Word.AnnotationCollection;
|
|
89016
89016
|
/**
|
|
@@ -89321,7 +89321,7 @@ declare namespace Word {
|
|
|
89321
89321
|
* @remarks
|
|
89322
89322
|
* [Api set: WordApi 1.1]
|
|
89323
89323
|
*
|
|
89324
|
-
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support
|
|
89324
|
+
* Note: The `contentControlType` parameter was introduced in WordApi 1.5. `PlainText` support was added in WordApi 1.5. `CheckBox` support is currently in preview.
|
|
89325
89325
|
*
|
|
89326
89326
|
* @param contentControlType Optional. Content control type to insert. Must be 'RichText', 'PlainText', or 'CheckBox'. The default is 'RichText'.
|
|
89327
89327
|
*/
|
|
@@ -89508,7 +89508,7 @@ declare namespace Word {
|
|
|
89508
89508
|
*/
|
|
89509
89509
|
readonly onCommentSelected: OfficeExtension.EventHandlers<Word.CommentEventArgs>;
|
|
89510
89510
|
/**
|
|
89511
|
-
* 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
|
|
89511
|
+
* 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're 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.
|
|
89512
89512
|
*/
|
|
89513
89513
|
track(): Word.Body;
|
|
89514
89514
|
/**
|
|
@@ -89601,7 +89601,7 @@ declare namespace Word {
|
|
|
89601
89601
|
expand?: string;
|
|
89602
89602
|
}): Word.Border;
|
|
89603
89603
|
/**
|
|
89604
|
-
* 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
|
|
89604
|
+
* 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're 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.
|
|
89605
89605
|
*/
|
|
89606
89606
|
track(): Word.Border;
|
|
89607
89607
|
/**
|
|
@@ -89735,7 +89735,7 @@ declare namespace Word {
|
|
|
89735
89735
|
*/
|
|
89736
89736
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.BorderCollection;
|
|
89737
89737
|
/**
|
|
89738
|
-
* 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
|
|
89738
|
+
* 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're 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.
|
|
89739
89739
|
*/
|
|
89740
89740
|
track(): Word.BorderCollection;
|
|
89741
89741
|
/**
|
|
@@ -89883,7 +89883,7 @@ declare namespace Word {
|
|
|
89883
89883
|
expand?: string;
|
|
89884
89884
|
}): Word.Comment;
|
|
89885
89885
|
/**
|
|
89886
|
-
* 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
|
|
89886
|
+
* 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're 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.
|
|
89887
89887
|
*/
|
|
89888
89888
|
track(): Word.Comment;
|
|
89889
89889
|
/**
|
|
@@ -89940,7 +89940,7 @@ declare namespace Word {
|
|
|
89940
89940
|
*/
|
|
89941
89941
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
89942
89942
|
/**
|
|
89943
|
-
* 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
|
|
89943
|
+
* 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're 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.
|
|
89944
89944
|
*/
|
|
89945
89945
|
track(): Word.CommentCollection;
|
|
89946
89946
|
/**
|
|
@@ -90049,7 +90049,7 @@ declare namespace Word {
|
|
|
90049
90049
|
expand?: string;
|
|
90050
90050
|
}): Word.CommentContentRange;
|
|
90051
90051
|
/**
|
|
90052
|
-
* 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
|
|
90052
|
+
* 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're 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.
|
|
90053
90053
|
*/
|
|
90054
90054
|
track(): Word.CommentContentRange;
|
|
90055
90055
|
/**
|
|
@@ -90157,7 +90157,7 @@ declare namespace Word {
|
|
|
90157
90157
|
expand?: string;
|
|
90158
90158
|
}): Word.CommentReply;
|
|
90159
90159
|
/**
|
|
90160
|
-
* 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
|
|
90160
|
+
* 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're 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.
|
|
90161
90161
|
*/
|
|
90162
90162
|
track(): Word.CommentReply;
|
|
90163
90163
|
/**
|
|
@@ -90214,7 +90214,7 @@ declare namespace Word {
|
|
|
90214
90214
|
*/
|
|
90215
90215
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
90216
90216
|
/**
|
|
90217
|
-
* 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
|
|
90217
|
+
* 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're 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.
|
|
90218
90218
|
*/
|
|
90219
90219
|
track(): Word.CommentReplyCollection;
|
|
90220
90220
|
/**
|
|
@@ -90328,14 +90328,14 @@ declare namespace Word {
|
|
|
90328
90328
|
*/
|
|
90329
90329
|
readonly parentTableCell: Word.TableCell;
|
|
90330
90330
|
/**
|
|
90331
|
-
* Gets the table cell that contains the content control. If it
|
|
90331
|
+
* Gets the table cell that contains the content control. If it isn't 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}.
|
|
90332
90332
|
*
|
|
90333
90333
|
* @remarks
|
|
90334
90334
|
* [Api set: WordApi 1.3]
|
|
90335
90335
|
*/
|
|
90336
90336
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
90337
90337
|
/**
|
|
90338
|
-
* Gets the table that contains the content control. If it
|
|
90338
|
+
* Gets the table that contains the content control. If it isn't 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}.
|
|
90339
90339
|
*
|
|
90340
90340
|
* @remarks
|
|
90341
90341
|
* [Api set: WordApi 1.3]
|
|
@@ -90794,7 +90794,7 @@ declare namespace Word {
|
|
|
90794
90794
|
*/
|
|
90795
90795
|
readonly onSelectionChanged: OfficeExtension.EventHandlers<Word.ContentControlSelectionChangedEventArgs>;
|
|
90796
90796
|
/**
|
|
90797
|
-
* 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
|
|
90797
|
+
* 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're 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.
|
|
90798
90798
|
*/
|
|
90799
90799
|
track(): Word.ContentControl;
|
|
90800
90800
|
/**
|
|
@@ -90914,7 +90914,7 @@ declare namespace Word {
|
|
|
90914
90914
|
*/
|
|
90915
90915
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
90916
90916
|
/**
|
|
90917
|
-
* 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
|
|
90917
|
+
* 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're 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.
|
|
90918
90918
|
*/
|
|
90919
90919
|
track(): Word.ContentControlCollection;
|
|
90920
90920
|
/**
|
|
@@ -91010,7 +91010,7 @@ declare namespace Word {
|
|
|
91010
91010
|
expand?: string;
|
|
91011
91011
|
}): Word.CustomProperty;
|
|
91012
91012
|
/**
|
|
91013
|
-
* 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
|
|
91013
|
+
* 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're 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.
|
|
91014
91014
|
*/
|
|
91015
91015
|
track(): Word.CustomProperty;
|
|
91016
91016
|
/**
|
|
@@ -91068,7 +91068,7 @@ declare namespace Word {
|
|
|
91068
91068
|
*/
|
|
91069
91069
|
getItem(key: string): Word.CustomProperty;
|
|
91070
91070
|
/**
|
|
91071
|
-
* Gets a custom property object by its key, which is case-insensitive. If the custom property
|
|
91071
|
+
* Gets a custom property object by its key, which is case-insensitive. If the custom property doesn't 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}.
|
|
91072
91072
|
*
|
|
91073
91073
|
* @remarks
|
|
91074
91074
|
* [Api set: WordApi 1.3]
|
|
@@ -91095,7 +91095,7 @@ declare namespace Word {
|
|
|
91095
91095
|
*/
|
|
91096
91096
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
91097
91097
|
/**
|
|
91098
|
-
* 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
|
|
91098
|
+
* 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're 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.
|
|
91099
91099
|
*/
|
|
91100
91100
|
track(): Word.CustomPropertyCollection;
|
|
91101
91101
|
/**
|
|
@@ -91374,7 +91374,7 @@ declare namespace Word {
|
|
|
91374
91374
|
expand?: string;
|
|
91375
91375
|
}): Word.CustomXmlPart;
|
|
91376
91376
|
/**
|
|
91377
|
-
* 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
|
|
91377
|
+
* 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're 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.
|
|
91378
91378
|
*/
|
|
91379
91379
|
track(): Word.CustomXmlPart;
|
|
91380
91380
|
/**
|
|
@@ -91433,7 +91433,7 @@ declare namespace Word {
|
|
|
91433
91433
|
*/
|
|
91434
91434
|
getItem(id: string): Word.CustomXmlPart;
|
|
91435
91435
|
/**
|
|
91436
|
-
* Gets a custom XML part based on its ID. If the CustomXmlPart
|
|
91436
|
+
* Gets a custom XML part based on its ID. If the CustomXmlPart doesn't 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}.
|
|
91437
91437
|
*
|
|
91438
91438
|
* @remarks
|
|
91439
91439
|
* [Api set: WordApi 1.4]
|
|
@@ -91460,7 +91460,7 @@ declare namespace Word {
|
|
|
91460
91460
|
*/
|
|
91461
91461
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartCollection;
|
|
91462
91462
|
/**
|
|
91463
|
-
* 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
|
|
91463
|
+
* 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're 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.
|
|
91464
91464
|
*/
|
|
91465
91465
|
track(): Word.CustomXmlPartCollection;
|
|
91466
91466
|
/**
|
|
@@ -91501,7 +91501,7 @@ declare namespace Word {
|
|
|
91501
91501
|
*/
|
|
91502
91502
|
getItem(id: string): Word.CustomXmlPart;
|
|
91503
91503
|
/**
|
|
91504
|
-
* Gets a custom XML part based on its ID. If the CustomXmlPart
|
|
91504
|
+
* Gets a custom XML part based on its ID. If the CustomXmlPart doesn't 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}.
|
|
91505
91505
|
*
|
|
91506
91506
|
* @remarks
|
|
91507
91507
|
* [Api set: WordApi 1.4]
|
|
@@ -91542,7 +91542,7 @@ declare namespace Word {
|
|
|
91542
91542
|
*/
|
|
91543
91543
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartScopedCollection;
|
|
91544
91544
|
/**
|
|
91545
|
-
* 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
|
|
91545
|
+
* 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're 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.
|
|
91546
91546
|
*/
|
|
91547
91547
|
track(): Word.CustomXmlPartScopedCollection;
|
|
91548
91548
|
/**
|
|
@@ -91706,7 +91706,7 @@ declare namespace Word {
|
|
|
91706
91706
|
*/
|
|
91707
91707
|
getBookmarkRange(name: string): Word.Range;
|
|
91708
91708
|
/**
|
|
91709
|
-
* Gets a bookmark's range. If the bookmark
|
|
91709
|
+
* Gets a bookmark's range. If the bookmark doesn't 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}.
|
|
91710
91710
|
*
|
|
91711
91711
|
* @remarks
|
|
91712
91712
|
* [Api set: WordApi 1.4]
|
|
@@ -91929,7 +91929,7 @@ declare namespace Word {
|
|
|
91929
91929
|
*/
|
|
91930
91930
|
readonly onParagraphDeleted: OfficeExtension.EventHandlers<Word.ParagraphDeletedEventArgs>;
|
|
91931
91931
|
/**
|
|
91932
|
-
* 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
|
|
91932
|
+
* 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're 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.
|
|
91933
91933
|
*/
|
|
91934
91934
|
track(): Word.Document;
|
|
91935
91935
|
/**
|
|
@@ -92140,7 +92140,7 @@ declare namespace Word {
|
|
|
92140
92140
|
expand?: string;
|
|
92141
92141
|
}): Word.DocumentCreated;
|
|
92142
92142
|
/**
|
|
92143
|
-
* 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
|
|
92143
|
+
* 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're 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.
|
|
92144
92144
|
*/
|
|
92145
92145
|
track(): Word.DocumentCreated;
|
|
92146
92146
|
/**
|
|
@@ -92318,7 +92318,7 @@ declare namespace Word {
|
|
|
92318
92318
|
expand?: string;
|
|
92319
92319
|
}): Word.DocumentProperties;
|
|
92320
92320
|
/**
|
|
92321
|
-
* 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
|
|
92321
|
+
* 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're 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.
|
|
92322
92322
|
*/
|
|
92323
92323
|
track(): Word.DocumentProperties;
|
|
92324
92324
|
/**
|
|
@@ -92376,14 +92376,14 @@ declare namespace Word {
|
|
|
92376
92376
|
*/
|
|
92377
92377
|
readonly parentTableCell: Word.TableCell;
|
|
92378
92378
|
/**
|
|
92379
|
-
* Gets the table cell that contains the field. If it
|
|
92379
|
+
* Gets the table cell that contains the field. If it isn't 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}.
|
|
92380
92380
|
*
|
|
92381
92381
|
* @remarks
|
|
92382
92382
|
* [Api set: WordApi 1.4]
|
|
92383
92383
|
*/
|
|
92384
92384
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
92385
92385
|
/**
|
|
92386
|
-
* Gets the table that contains the field. If it
|
|
92386
|
+
* Gets the table that contains the field. If it isn't 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}.
|
|
92387
92387
|
*
|
|
92388
92388
|
* @remarks
|
|
92389
92389
|
* [Api set: WordApi 1.4]
|
|
@@ -92517,7 +92517,7 @@ declare namespace Word {
|
|
|
92517
92517
|
expand?: string;
|
|
92518
92518
|
}): Word.Field;
|
|
92519
92519
|
/**
|
|
92520
|
-
* 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
|
|
92520
|
+
* 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're 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.
|
|
92521
92521
|
*/
|
|
92522
92522
|
track(): Word.Field;
|
|
92523
92523
|
/**
|
|
@@ -92583,7 +92583,7 @@ declare namespace Word {
|
|
|
92583
92583
|
*/
|
|
92584
92584
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.FieldCollection;
|
|
92585
92585
|
/**
|
|
92586
|
-
* 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
|
|
92586
|
+
* 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're 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.
|
|
92587
92587
|
*/
|
|
92588
92588
|
track(): Word.FieldCollection;
|
|
92589
92589
|
/**
|
|
@@ -92720,7 +92720,7 @@ declare namespace Word {
|
|
|
92720
92720
|
expand?: string;
|
|
92721
92721
|
}): Word.Font;
|
|
92722
92722
|
/**
|
|
92723
|
-
* 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
|
|
92723
|
+
* 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're 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.
|
|
92724
92724
|
*/
|
|
92725
92725
|
track(): Word.Font;
|
|
92726
92726
|
/**
|
|
@@ -92778,14 +92778,14 @@ declare namespace Word {
|
|
|
92778
92778
|
*/
|
|
92779
92779
|
readonly parentTableCell: Word.TableCell;
|
|
92780
92780
|
/**
|
|
92781
|
-
* Gets the table cell that contains the inline image. If it
|
|
92781
|
+
* Gets the table cell that contains the inline image. If it isn't 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}.
|
|
92782
92782
|
*
|
|
92783
92783
|
* @remarks
|
|
92784
92784
|
* [Api set: WordApi 1.3]
|
|
92785
92785
|
*/
|
|
92786
92786
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
92787
92787
|
/**
|
|
92788
|
-
* Gets the table that contains the inline image. If it
|
|
92788
|
+
* Gets the table that contains the inline image. If it isn't 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}.
|
|
92789
92789
|
*
|
|
92790
92790
|
* @remarks
|
|
92791
92791
|
* [Api set: WordApi 1.3]
|
|
@@ -93005,7 +93005,7 @@ declare namespace Word {
|
|
|
93005
93005
|
expand?: string;
|
|
93006
93006
|
}): Word.InlinePicture;
|
|
93007
93007
|
/**
|
|
93008
|
-
* 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
|
|
93008
|
+
* 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're 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.
|
|
93009
93009
|
*/
|
|
93010
93010
|
track(): Word.InlinePicture;
|
|
93011
93011
|
/**
|
|
@@ -93062,7 +93062,7 @@ declare namespace Word {
|
|
|
93062
93062
|
*/
|
|
93063
93063
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
93064
93064
|
/**
|
|
93065
|
-
* 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
|
|
93065
|
+
* 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're 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.
|
|
93066
93066
|
*/
|
|
93067
93067
|
track(): Word.InlinePictureCollection;
|
|
93068
93068
|
/**
|
|
@@ -93291,7 +93291,7 @@ declare namespace Word {
|
|
|
93291
93291
|
expand?: string;
|
|
93292
93292
|
}): Word.List;
|
|
93293
93293
|
/**
|
|
93294
|
-
* 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
|
|
93294
|
+
* 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're 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.
|
|
93295
93295
|
*/
|
|
93296
93296
|
track(): Word.List;
|
|
93297
93297
|
/**
|
|
@@ -93375,7 +93375,7 @@ declare namespace Word {
|
|
|
93375
93375
|
*/
|
|
93376
93376
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
93377
93377
|
/**
|
|
93378
|
-
* 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
|
|
93378
|
+
* 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're 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.
|
|
93379
93379
|
*/
|
|
93380
93380
|
track(): Word.ListCollection;
|
|
93381
93381
|
/**
|
|
@@ -93436,7 +93436,7 @@ declare namespace Word {
|
|
|
93436
93436
|
*/
|
|
93437
93437
|
getAncestor(parentOnly?: boolean): Word.Paragraph;
|
|
93438
93438
|
/**
|
|
93439
|
-
* Gets the list item parent, or the closest ancestor if the parent
|
|
93439
|
+
* Gets the list item parent, or the closest ancestor if the parent doesn't 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}.
|
|
93440
93440
|
*
|
|
93441
93441
|
* @remarks
|
|
93442
93442
|
* [Api set: WordApi 1.3]
|
|
@@ -93475,7 +93475,7 @@ declare namespace Word {
|
|
|
93475
93475
|
expand?: string;
|
|
93476
93476
|
}): Word.ListItem;
|
|
93477
93477
|
/**
|
|
93478
|
-
* 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
|
|
93478
|
+
* 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're 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.
|
|
93479
93479
|
*/
|
|
93480
93480
|
track(): Word.ListItem;
|
|
93481
93481
|
/**
|
|
@@ -93616,7 +93616,7 @@ declare namespace Word {
|
|
|
93616
93616
|
expand?: string;
|
|
93617
93617
|
}): Word.ListLevel;
|
|
93618
93618
|
/**
|
|
93619
|
-
* 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
|
|
93619
|
+
* 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're 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.
|
|
93620
93620
|
*/
|
|
93621
93621
|
track(): Word.ListLevel;
|
|
93622
93622
|
/**
|
|
@@ -93676,7 +93676,7 @@ declare namespace Word {
|
|
|
93676
93676
|
*/
|
|
93677
93677
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListLevelCollection;
|
|
93678
93678
|
/**
|
|
93679
|
-
* 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
|
|
93679
|
+
* 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're 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.
|
|
93680
93680
|
*/
|
|
93681
93681
|
track(): Word.ListLevelCollection;
|
|
93682
93682
|
/**
|
|
@@ -93745,7 +93745,7 @@ declare namespace Word {
|
|
|
93745
93745
|
expand?: string;
|
|
93746
93746
|
}): Word.ListTemplate;
|
|
93747
93747
|
/**
|
|
93748
|
-
* 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
|
|
93748
|
+
* 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're 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.
|
|
93749
93749
|
*/
|
|
93750
93750
|
track(): Word.ListTemplate;
|
|
93751
93751
|
/**
|
|
@@ -93839,7 +93839,7 @@ declare namespace Word {
|
|
|
93839
93839
|
expand?: string;
|
|
93840
93840
|
}): Word.NoteItem;
|
|
93841
93841
|
/**
|
|
93842
|
-
* 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
|
|
93842
|
+
* 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're 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.
|
|
93843
93843
|
*/
|
|
93844
93844
|
track(): Word.NoteItem;
|
|
93845
93845
|
/**
|
|
@@ -93896,7 +93896,7 @@ declare namespace Word {
|
|
|
93896
93896
|
*/
|
|
93897
93897
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
93898
93898
|
/**
|
|
93899
|
-
* 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
|
|
93899
|
+
* 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're 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.
|
|
93900
93900
|
*/
|
|
93901
93901
|
track(): Word.NoteItemCollection;
|
|
93902
93902
|
/**
|
|
@@ -93975,14 +93975,14 @@ declare namespace Word {
|
|
|
93975
93975
|
*/
|
|
93976
93976
|
readonly listItem: Word.ListItem;
|
|
93977
93977
|
/**
|
|
93978
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
93978
|
+
* Gets the ListItem for the paragraph. If the paragraph isn't 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}.
|
|
93979
93979
|
*
|
|
93980
93980
|
* @remarks
|
|
93981
93981
|
* [Api set: WordApi 1.3]
|
|
93982
93982
|
*/
|
|
93983
93983
|
readonly listItemOrNullObject: Word.ListItem;
|
|
93984
93984
|
/**
|
|
93985
|
-
* Gets the List to which this paragraph belongs. If the paragraph
|
|
93985
|
+
* Gets the List to which this paragraph belongs. If the paragraph isn't 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}.
|
|
93986
93986
|
*
|
|
93987
93987
|
* @remarks
|
|
93988
93988
|
* [Api set: WordApi 1.3]
|
|
@@ -94024,14 +94024,14 @@ declare namespace Word {
|
|
|
94024
94024
|
*/
|
|
94025
94025
|
readonly parentTableCell: Word.TableCell;
|
|
94026
94026
|
/**
|
|
94027
|
-
* Gets the table cell that contains the paragraph. If it
|
|
94027
|
+
* Gets the table cell that contains the paragraph. If it isn't 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}.
|
|
94028
94028
|
*
|
|
94029
94029
|
* @remarks
|
|
94030
94030
|
* [Api set: WordApi 1.3]
|
|
94031
94031
|
*/
|
|
94032
94032
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
94033
94033
|
/**
|
|
94034
|
-
* Gets the table that contains the paragraph. If it
|
|
94034
|
+
* Gets the table that contains the paragraph. If it isn't 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}.
|
|
94035
94035
|
*
|
|
94036
94036
|
* @remarks
|
|
94037
94037
|
* [Api set: WordApi 1.3]
|
|
@@ -94541,7 +94541,7 @@ declare namespace Word {
|
|
|
94541
94541
|
*/
|
|
94542
94542
|
readonly onCommentSelected: OfficeExtension.EventHandlers<Word.CommentEventArgs>;
|
|
94543
94543
|
/**
|
|
94544
|
-
* 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
|
|
94544
|
+
* 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're 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.
|
|
94545
94545
|
*/
|
|
94546
94546
|
track(): Word.Paragraph;
|
|
94547
94547
|
/**
|
|
@@ -94612,7 +94612,7 @@ declare namespace Word {
|
|
|
94612
94612
|
*/
|
|
94613
94613
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
94614
94614
|
/**
|
|
94615
|
-
* 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
|
|
94615
|
+
* 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're 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.
|
|
94616
94616
|
*/
|
|
94617
94617
|
track(): Word.ParagraphCollection;
|
|
94618
94618
|
/**
|
|
@@ -94762,7 +94762,7 @@ declare namespace Word {
|
|
|
94762
94762
|
expand?: string;
|
|
94763
94763
|
}): Word.ParagraphFormat;
|
|
94764
94764
|
/**
|
|
94765
|
-
* 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
|
|
94765
|
+
* 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're 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.
|
|
94766
94766
|
*/
|
|
94767
94767
|
track(): Word.ParagraphFormat;
|
|
94768
94768
|
/**
|
|
@@ -94876,14 +94876,14 @@ declare namespace Word {
|
|
|
94876
94876
|
*/
|
|
94877
94877
|
readonly parentTableCell: Word.TableCell;
|
|
94878
94878
|
/**
|
|
94879
|
-
* Gets the table cell that contains the range. If it
|
|
94879
|
+
* Gets the table cell that contains the range. If it isn't 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}.
|
|
94880
94880
|
*
|
|
94881
94881
|
* @remarks
|
|
94882
94882
|
* [Api set: WordApi 1.3]
|
|
94883
94883
|
*/
|
|
94884
94884
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
94885
94885
|
/**
|
|
94886
|
-
* Gets the table that contains the range. If it
|
|
94886
|
+
* Gets the table that contains the range. If it isn't 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}.
|
|
94887
94887
|
*
|
|
94888
94888
|
* @remarks
|
|
94889
94889
|
* [Api set: WordApi 1.3]
|
|
@@ -95101,7 +95101,9 @@ declare namespace Word {
|
|
|
95101
95101
|
* @remarks
|
|
95102
95102
|
* [Api set: WordApi 1.4]
|
|
95103
95103
|
*
|
|
95104
|
-
*
|
|
95104
|
+
* Note: The conditions of inserting a bookmark are similar to doing so in the Word UI. To learn more about managing bookmarks in the Word UI, see {@link https://support.microsoft.com/office/f68d781f-0150-4583-a90e-a4009d99c2a0 | Add or delete bookmarks in a Word document or Outlook message}.
|
|
95105
|
+
*
|
|
95106
|
+
* @param name Required. The case-insensitive bookmark name. Only alphanumeric and underscore characters are supported. It must begin with a letter but if you want to tag the bookmark as hidden, then start the name with an underscore character. Names can't be longer than 40 characters.
|
|
95105
95107
|
*/
|
|
95106
95108
|
insertBookmark(name: string): void;
|
|
95107
95109
|
/**
|
|
@@ -95261,7 +95263,7 @@ declare namespace Word {
|
|
|
95261
95263
|
*/
|
|
95262
95264
|
intersectWith(range: Word.Range): Word.Range;
|
|
95263
95265
|
/**
|
|
95264
|
-
* Returns a new range as the intersection of this range with another range. This range
|
|
95266
|
+
* Returns a new range as the intersection of this range with another range. This range isn't 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}.
|
|
95265
95267
|
*
|
|
95266
95268
|
* @remarks
|
|
95267
95269
|
* [Api set: WordApi 1.3]
|
|
@@ -95379,7 +95381,7 @@ declare namespace Word {
|
|
|
95379
95381
|
*/
|
|
95380
95382
|
readonly onCommentSelected: OfficeExtension.EventHandlers<Word.CommentEventArgs>;
|
|
95381
95383
|
/**
|
|
95382
|
-
* 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
|
|
95384
|
+
* 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're 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.
|
|
95383
95385
|
*/
|
|
95384
95386
|
track(): Word.Range;
|
|
95385
95387
|
/**
|
|
@@ -95436,7 +95438,7 @@ declare namespace Word {
|
|
|
95436
95438
|
*/
|
|
95437
95439
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
95438
95440
|
/**
|
|
95439
|
-
* 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
|
|
95441
|
+
* 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're 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.
|
|
95440
95442
|
*/
|
|
95441
95443
|
track(): Word.RangeCollection;
|
|
95442
95444
|
/**
|
|
@@ -95768,7 +95770,7 @@ declare namespace Word {
|
|
|
95768
95770
|
expand?: string;
|
|
95769
95771
|
}): Word.Section;
|
|
95770
95772
|
/**
|
|
95771
|
-
* 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
|
|
95773
|
+
* 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're 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.
|
|
95772
95774
|
*/
|
|
95773
95775
|
track(): Word.Section;
|
|
95774
95776
|
/**
|
|
@@ -95825,7 +95827,7 @@ declare namespace Word {
|
|
|
95825
95827
|
*/
|
|
95826
95828
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
95827
95829
|
/**
|
|
95828
|
-
* 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
|
|
95830
|
+
* 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're 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.
|
|
95829
95831
|
*/
|
|
95830
95832
|
track(): Word.SectionCollection;
|
|
95831
95833
|
/**
|
|
@@ -95898,7 +95900,7 @@ declare namespace Word {
|
|
|
95898
95900
|
expand?: string;
|
|
95899
95901
|
}): Word.Setting;
|
|
95900
95902
|
/**
|
|
95901
|
-
* 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
|
|
95903
|
+
* 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're 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.
|
|
95902
95904
|
*/
|
|
95903
95905
|
track(): Word.Setting;
|
|
95904
95906
|
/**
|
|
@@ -95956,7 +95958,7 @@ declare namespace Word {
|
|
|
95956
95958
|
*/
|
|
95957
95959
|
getItem(key: string): Word.Setting;
|
|
95958
95960
|
/**
|
|
95959
|
-
* Gets a setting object by its key, which is case-sensitive. If the setting
|
|
95961
|
+
* Gets a setting object by its key, which is case-sensitive. If the setting doesn't 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}.
|
|
95960
95962
|
*
|
|
95961
95963
|
* @remarks
|
|
95962
95964
|
* [Api set: WordApi 1.4]
|
|
@@ -95983,7 +95985,7 @@ declare namespace Word {
|
|
|
95983
95985
|
*/
|
|
95984
95986
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
|
|
95985
95987
|
/**
|
|
95986
|
-
* 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
|
|
95988
|
+
* 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're 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.
|
|
95987
95989
|
*/
|
|
95988
95990
|
track(): Word.SettingCollection;
|
|
95989
95991
|
/**
|
|
@@ -96060,7 +96062,7 @@ declare namespace Word {
|
|
|
96060
96062
|
*/
|
|
96061
96063
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.StyleCollection;
|
|
96062
96064
|
/**
|
|
96063
|
-
* 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
|
|
96065
|
+
* 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're 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.
|
|
96064
96066
|
*/
|
|
96065
96067
|
track(): Word.StyleCollection;
|
|
96066
96068
|
/**
|
|
@@ -96250,7 +96252,7 @@ declare namespace Word {
|
|
|
96250
96252
|
expand?: string;
|
|
96251
96253
|
}): Word.Style;
|
|
96252
96254
|
/**
|
|
96253
|
-
* 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
|
|
96255
|
+
* 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're 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.
|
|
96254
96256
|
*/
|
|
96255
96257
|
track(): Word.Style;
|
|
96256
96258
|
/**
|
|
@@ -96327,7 +96329,7 @@ declare namespace Word {
|
|
|
96327
96329
|
expand?: string;
|
|
96328
96330
|
}): Word.Shading;
|
|
96329
96331
|
/**
|
|
96330
|
-
* 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
|
|
96332
|
+
* 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're 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.
|
|
96331
96333
|
*/
|
|
96332
96334
|
track(): Word.Shading;
|
|
96333
96335
|
/**
|
|
@@ -96413,14 +96415,14 @@ declare namespace Word {
|
|
|
96413
96415
|
*/
|
|
96414
96416
|
readonly parentTableCell: Word.TableCell;
|
|
96415
96417
|
/**
|
|
96416
|
-
* Gets the table cell that contains this table. If it
|
|
96418
|
+
* Gets the table cell that contains this table. If it isn't 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}.
|
|
96417
96419
|
*
|
|
96418
96420
|
* @remarks
|
|
96419
96421
|
* [Api set: WordApi 1.3]
|
|
96420
96422
|
*/
|
|
96421
96423
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
96422
96424
|
/**
|
|
96423
|
-
* Gets the table that contains this table. If it
|
|
96425
|
+
* Gets the table that contains this table. If it isn't 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}.
|
|
96424
96426
|
*
|
|
96425
96427
|
* @remarks
|
|
96426
96428
|
* [Api set: WordApi 1.3]
|
|
@@ -96666,7 +96668,7 @@ declare namespace Word {
|
|
|
96666
96668
|
*/
|
|
96667
96669
|
getCell(rowIndex: number, cellIndex: number): Word.TableCell;
|
|
96668
96670
|
/**
|
|
96669
|
-
* Gets the table cell at a specified row and column. If the specified table cell
|
|
96671
|
+
* Gets the table cell at a specified row and column. If the specified table cell doesn't 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}.
|
|
96670
96672
|
*
|
|
96671
96673
|
* @remarks
|
|
96672
96674
|
* [Api set: WordApi 1.3]
|
|
@@ -96863,7 +96865,7 @@ declare namespace Word {
|
|
|
96863
96865
|
expand?: string;
|
|
96864
96866
|
}): Word.Table;
|
|
96865
96867
|
/**
|
|
96866
|
-
* 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
|
|
96868
|
+
* 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're 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.
|
|
96867
96869
|
*/
|
|
96868
96870
|
track(): Word.Table;
|
|
96869
96871
|
/**
|
|
@@ -96972,7 +96974,7 @@ declare namespace Word {
|
|
|
96972
96974
|
expand?: string;
|
|
96973
96975
|
}): Word.TableStyle;
|
|
96974
96976
|
/**
|
|
96975
|
-
* 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
|
|
96977
|
+
* 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're 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.
|
|
96976
96978
|
*/
|
|
96977
96979
|
track(): Word.TableStyle;
|
|
96978
96980
|
/**
|
|
@@ -97029,7 +97031,7 @@ declare namespace Word {
|
|
|
97029
97031
|
*/
|
|
97030
97032
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
97031
97033
|
/**
|
|
97032
|
-
* 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
|
|
97034
|
+
* 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're 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.
|
|
97033
97035
|
*/
|
|
97034
97036
|
track(): Word.TableCollection;
|
|
97035
97037
|
/**
|
|
@@ -97325,7 +97327,7 @@ declare namespace Word {
|
|
|
97325
97327
|
expand?: string;
|
|
97326
97328
|
}): Word.TableRow;
|
|
97327
97329
|
/**
|
|
97328
|
-
* 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
|
|
97330
|
+
* 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're 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.
|
|
97329
97331
|
*/
|
|
97330
97332
|
track(): Word.TableRow;
|
|
97331
97333
|
/**
|
|
@@ -97382,7 +97384,7 @@ declare namespace Word {
|
|
|
97382
97384
|
*/
|
|
97383
97385
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
97384
97386
|
/**
|
|
97385
|
-
* 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
|
|
97387
|
+
* 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're 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.
|
|
97386
97388
|
*/
|
|
97387
97389
|
track(): Word.TableRowCollection;
|
|
97388
97390
|
/**
|
|
@@ -97627,7 +97629,7 @@ declare namespace Word {
|
|
|
97627
97629
|
expand?: string;
|
|
97628
97630
|
}): Word.TableCell;
|
|
97629
97631
|
/**
|
|
97630
|
-
* 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
|
|
97632
|
+
* 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're 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.
|
|
97631
97633
|
*/
|
|
97632
97634
|
track(): Word.TableCell;
|
|
97633
97635
|
/**
|
|
@@ -97684,7 +97686,7 @@ declare namespace Word {
|
|
|
97684
97686
|
*/
|
|
97685
97687
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
97686
97688
|
/**
|
|
97687
|
-
* 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
|
|
97689
|
+
* 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're 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.
|
|
97688
97690
|
*/
|
|
97689
97691
|
track(): Word.TableCellCollection;
|
|
97690
97692
|
/**
|
|
@@ -97757,7 +97759,7 @@ declare namespace Word {
|
|
|
97757
97759
|
expand?: string;
|
|
97758
97760
|
}): Word.TableBorder;
|
|
97759
97761
|
/**
|
|
97760
|
-
* 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
|
|
97762
|
+
* 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're 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.
|
|
97761
97763
|
*/
|
|
97762
97764
|
track(): Word.TableBorder;
|
|
97763
97765
|
/**
|
|
@@ -97874,7 +97876,7 @@ declare namespace Word {
|
|
|
97874
97876
|
expand?: string;
|
|
97875
97877
|
}): Word.TrackedChange;
|
|
97876
97878
|
/**
|
|
97877
|
-
* 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
|
|
97879
|
+
* 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're 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.
|
|
97878
97880
|
*/
|
|
97879
97881
|
track(): Word.TrackedChange;
|
|
97880
97882
|
/**
|
|
@@ -97968,7 +97970,7 @@ declare namespace Word {
|
|
|
97968
97970
|
*/
|
|
97969
97971
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TrackedChangeCollection;
|
|
97970
97972
|
/**
|
|
97971
|
-
* 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
|
|
97973
|
+
* 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're 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.
|
|
97972
97974
|
*/
|
|
97973
97975
|
track(): Word.TrackedChangeCollection;
|
|
97974
97976
|
/**
|
|
@@ -103025,7 +103027,7 @@ declare namespace Word {
|
|
|
103025
103027
|
*/
|
|
103026
103028
|
listItem?: Word.Interfaces.ListItemUpdateData;
|
|
103027
103029
|
/**
|
|
103028
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
103030
|
+
* Gets the ListItem for the paragraph. If the paragraph isn't 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}.
|
|
103029
103031
|
*
|
|
103030
103032
|
* @remarks
|
|
103031
103033
|
* [Api set: WordApi 1.3]
|
|
@@ -104964,7 +104966,7 @@ declare namespace Word {
|
|
|
104964
104966
|
*/
|
|
104965
104967
|
listItem?: Word.Interfaces.ListItemData;
|
|
104966
104968
|
/**
|
|
104967
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
104969
|
+
* Gets the ListItem for the paragraph. If the paragraph isn't 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}.
|
|
104968
104970
|
*
|
|
104969
104971
|
* @remarks
|
|
104970
104972
|
* [Api set: WordApi 1.3]
|
|
@@ -106596,14 +106598,14 @@ declare namespace Word {
|
|
|
106596
106598
|
*/
|
|
106597
106599
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
106598
106600
|
/**
|
|
106599
|
-
* Gets the table cell that contains the content control. If it
|
|
106601
|
+
* Gets the table cell that contains the content control. If it isn't 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}.
|
|
106600
106602
|
*
|
|
106601
106603
|
* @remarks
|
|
106602
106604
|
* [Api set: WordApi 1.3]
|
|
106603
106605
|
*/
|
|
106604
106606
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
106605
106607
|
/**
|
|
106606
|
-
* Gets the table that contains the content control. If it
|
|
106608
|
+
* Gets the table that contains the content control. If it isn't 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}.
|
|
106607
106609
|
*
|
|
106608
106610
|
* @remarks
|
|
106609
106611
|
* [Api set: WordApi 1.3]
|
|
@@ -106770,14 +106772,14 @@ declare namespace Word {
|
|
|
106770
106772
|
*/
|
|
106771
106773
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
106772
106774
|
/**
|
|
106773
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the content control. If it
|
|
106775
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the content control. If it isn't 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}.
|
|
106774
106776
|
*
|
|
106775
106777
|
* @remarks
|
|
106776
106778
|
* [Api set: WordApi 1.3]
|
|
106777
106779
|
*/
|
|
106778
106780
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
106779
106781
|
/**
|
|
106780
|
-
* For EACH ITEM in the collection: Gets the table that contains the content control. If it
|
|
106782
|
+
* For EACH ITEM in the collection: Gets the table that contains the content control. If it isn't 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}.
|
|
106781
106783
|
*
|
|
106782
106784
|
* @remarks
|
|
106783
106785
|
* [Api set: WordApi 1.3]
|
|
@@ -107398,14 +107400,14 @@ declare namespace Word {
|
|
|
107398
107400
|
*/
|
|
107399
107401
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
107400
107402
|
/**
|
|
107401
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the field. If it
|
|
107403
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the field. If it isn't 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}.
|
|
107402
107404
|
*
|
|
107403
107405
|
* @remarks
|
|
107404
107406
|
* [Api set: WordApi 1.4]
|
|
107405
107407
|
*/
|
|
107406
107408
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
107407
107409
|
/**
|
|
107408
|
-
* For EACH ITEM in the collection: Gets the table that contains the field. If it
|
|
107410
|
+
* For EACH ITEM in the collection: Gets the table that contains the field. If it isn't 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}.
|
|
107409
107411
|
*
|
|
107410
107412
|
* @remarks
|
|
107411
107413
|
* [Api set: WordApi 1.4]
|
|
@@ -107608,14 +107610,14 @@ declare namespace Word {
|
|
|
107608
107610
|
*/
|
|
107609
107611
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
107610
107612
|
/**
|
|
107611
|
-
* Gets the table cell that contains the inline image. If it
|
|
107613
|
+
* Gets the table cell that contains the inline image. If it isn't 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}.
|
|
107612
107614
|
*
|
|
107613
107615
|
* @remarks
|
|
107614
107616
|
* [Api set: WordApi 1.3]
|
|
107615
107617
|
*/
|
|
107616
107618
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
107617
107619
|
/**
|
|
107618
|
-
* Gets the table that contains the inline image. If it
|
|
107620
|
+
* Gets the table that contains the inline image. If it isn't 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}.
|
|
107619
107621
|
*
|
|
107620
107622
|
* @remarks
|
|
107621
107623
|
* [Api set: WordApi 1.3]
|
|
@@ -107719,14 +107721,14 @@ declare namespace Word {
|
|
|
107719
107721
|
*/
|
|
107720
107722
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
107721
107723
|
/**
|
|
107722
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the inline image. If it
|
|
107724
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the inline image. If it isn't 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}.
|
|
107723
107725
|
*
|
|
107724
107726
|
* @remarks
|
|
107725
107727
|
* [Api set: WordApi 1.3]
|
|
107726
107728
|
*/
|
|
107727
107729
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
107728
107730
|
/**
|
|
107729
|
-
* For EACH ITEM in the collection: Gets the table that contains the inline image. If it
|
|
107731
|
+
* For EACH ITEM in the collection: Gets the table that contains the inline image. If it isn't 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}.
|
|
107730
107732
|
*
|
|
107731
107733
|
* @remarks
|
|
107732
107734
|
* [Api set: WordApi 1.3]
|
|
@@ -108204,14 +108206,14 @@ declare namespace Word {
|
|
|
108204
108206
|
*/
|
|
108205
108207
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
108206
108208
|
/**
|
|
108207
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
108209
|
+
* Gets the ListItem for the paragraph. If the paragraph isn't 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}.
|
|
108208
108210
|
*
|
|
108209
108211
|
* @remarks
|
|
108210
108212
|
* [Api set: WordApi 1.3]
|
|
108211
108213
|
*/
|
|
108212
108214
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
108213
108215
|
/**
|
|
108214
|
-
* Gets the List to which this paragraph belongs. If the paragraph
|
|
108216
|
+
* Gets the List to which this paragraph belongs. If the paragraph isn't 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}.
|
|
108215
108217
|
*
|
|
108216
108218
|
* @remarks
|
|
108217
108219
|
* [Api set: WordApi 1.3]
|
|
@@ -108253,14 +108255,14 @@ declare namespace Word {
|
|
|
108253
108255
|
*/
|
|
108254
108256
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108255
108257
|
/**
|
|
108256
|
-
* Gets the table cell that contains the paragraph. If it
|
|
108258
|
+
* Gets the table cell that contains the paragraph. If it isn't 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}.
|
|
108257
108259
|
*
|
|
108258
108260
|
* @remarks
|
|
108259
108261
|
* [Api set: WordApi 1.3]
|
|
108260
108262
|
*/
|
|
108261
108263
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108262
108264
|
/**
|
|
108263
|
-
* Gets the table that contains the paragraph. If it
|
|
108265
|
+
* Gets the table that contains the paragraph. If it isn't 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}.
|
|
108264
108266
|
*
|
|
108265
108267
|
* @remarks
|
|
108266
108268
|
* [Api set: WordApi 1.3]
|
|
@@ -108420,14 +108422,14 @@ declare namespace Word {
|
|
|
108420
108422
|
*/
|
|
108421
108423
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
108422
108424
|
/**
|
|
108423
|
-
* For EACH ITEM in the collection: Gets the ListItem for the paragraph. If the paragraph
|
|
108425
|
+
* For EACH ITEM in the collection: Gets the ListItem for the paragraph. If the paragraph isn't 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}.
|
|
108424
108426
|
*
|
|
108425
108427
|
* @remarks
|
|
108426
108428
|
* [Api set: WordApi 1.3]
|
|
108427
108429
|
*/
|
|
108428
108430
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
108429
108431
|
/**
|
|
108430
|
-
* For EACH ITEM in the collection: Gets the List to which this paragraph belongs. If the paragraph
|
|
108432
|
+
* For EACH ITEM in the collection: Gets the List to which this paragraph belongs. If the paragraph isn't 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}.
|
|
108431
108433
|
*
|
|
108432
108434
|
* @remarks
|
|
108433
108435
|
* [Api set: WordApi 1.3]
|
|
@@ -108469,14 +108471,14 @@ declare namespace Word {
|
|
|
108469
108471
|
*/
|
|
108470
108472
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108471
108473
|
/**
|
|
108472
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the paragraph. If it
|
|
108474
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the paragraph. If it isn't 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}.
|
|
108473
108475
|
*
|
|
108474
108476
|
* @remarks
|
|
108475
108477
|
* [Api set: WordApi 1.3]
|
|
108476
108478
|
*/
|
|
108477
108479
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108478
108480
|
/**
|
|
108479
|
-
* For EACH ITEM in the collection: Gets the table that contains the paragraph. If it
|
|
108481
|
+
* For EACH ITEM in the collection: Gets the table that contains the paragraph. If it isn't 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}.
|
|
108480
108482
|
*
|
|
108481
108483
|
* @remarks
|
|
108482
108484
|
* [Api set: WordApi 1.3]
|
|
@@ -108767,14 +108769,14 @@ declare namespace Word {
|
|
|
108767
108769
|
*/
|
|
108768
108770
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108769
108771
|
/**
|
|
108770
|
-
* Gets the table cell that contains the range. If it
|
|
108772
|
+
* Gets the table cell that contains the range. If it isn't 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}.
|
|
108771
108773
|
*
|
|
108772
108774
|
* @remarks
|
|
108773
108775
|
* [Api set: WordApi 1.3]
|
|
108774
108776
|
*/
|
|
108775
108777
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108776
108778
|
/**
|
|
108777
|
-
* Gets the table that contains the range. If it
|
|
108779
|
+
* Gets the table that contains the range. If it isn't 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}.
|
|
108778
108780
|
*
|
|
108779
108781
|
* @remarks
|
|
108780
108782
|
* [Api set: WordApi 1.3]
|
|
@@ -108870,14 +108872,14 @@ declare namespace Word {
|
|
|
108870
108872
|
*/
|
|
108871
108873
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108872
108874
|
/**
|
|
108873
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the range. If it
|
|
108875
|
+
* For EACH ITEM in the collection: Gets the table cell that contains the range. If it isn't 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}.
|
|
108874
108876
|
*
|
|
108875
108877
|
* @remarks
|
|
108876
108878
|
* [Api set: WordApi 1.3]
|
|
108877
108879
|
*/
|
|
108878
108880
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108879
108881
|
/**
|
|
108880
|
-
* For EACH ITEM in the collection: Gets the table that contains the range. If it
|
|
108882
|
+
* For EACH ITEM in the collection: Gets the table that contains the range. If it isn't 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}.
|
|
108881
108883
|
*
|
|
108882
108884
|
* @remarks
|
|
108883
108885
|
* [Api set: WordApi 1.3]
|
|
@@ -109448,14 +109450,14 @@ declare namespace Word {
|
|
|
109448
109450
|
*/
|
|
109449
109451
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
109450
109452
|
/**
|
|
109451
|
-
* Gets the table cell that contains this table. If it
|
|
109453
|
+
* Gets the table cell that contains this table. If it isn't 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}.
|
|
109452
109454
|
*
|
|
109453
109455
|
* @remarks
|
|
109454
109456
|
* [Api set: WordApi 1.3]
|
|
109455
109457
|
*/
|
|
109456
109458
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
109457
109459
|
/**
|
|
109458
|
-
* Gets the table that contains this table. If it
|
|
109460
|
+
* Gets the table that contains this table. If it isn't 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}.
|
|
109459
109461
|
*
|
|
109460
109462
|
* @remarks
|
|
109461
109463
|
* [Api set: WordApi 1.3]
|
|
@@ -109704,14 +109706,14 @@ declare namespace Word {
|
|
|
109704
109706
|
*/
|
|
109705
109707
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
109706
109708
|
/**
|
|
109707
|
-
* For EACH ITEM in the collection: Gets the table cell that contains this table. If it
|
|
109709
|
+
* For EACH ITEM in the collection: Gets the table cell that contains this table. If it isn't 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}.
|
|
109708
109710
|
*
|
|
109709
109711
|
* @remarks
|
|
109710
109712
|
* [Api set: WordApi 1.3]
|
|
109711
109713
|
*/
|
|
109712
109714
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
109713
109715
|
/**
|
|
109714
|
-
* For EACH ITEM in the collection: Gets the table that contains this table. If it
|
|
109716
|
+
* For EACH ITEM in the collection: Gets the table that contains this table. If it isn't 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}.
|
|
109715
109717
|
*
|
|
109716
109718
|
* @remarks
|
|
109717
109719
|
* [Api set: WordApi 1.3]
|
office-js-preview/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js-preview",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.418",
|
|
4
4
|
"description": "TypeScript definitions for Office.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js-preview",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "1168ea1a5287459c1483e0901702a2ce4b8b50ef54dd2284e86b7c9423f1b952",
|
|
49
49
|
"typeScriptVersion": "4.5"
|
|
50
50
|
}
|