@types/office-js-preview 1.0.417 → 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 +107 -107
- 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]
|
|
@@ -95263,7 +95263,7 @@ declare namespace Word {
|
|
|
95263
95263
|
*/
|
|
95264
95264
|
intersectWith(range: Word.Range): Word.Range;
|
|
95265
95265
|
/**
|
|
95266
|
-
* 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}.
|
|
95267
95267
|
*
|
|
95268
95268
|
* @remarks
|
|
95269
95269
|
* [Api set: WordApi 1.3]
|
|
@@ -95381,7 +95381,7 @@ declare namespace Word {
|
|
|
95381
95381
|
*/
|
|
95382
95382
|
readonly onCommentSelected: OfficeExtension.EventHandlers<Word.CommentEventArgs>;
|
|
95383
95383
|
/**
|
|
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
|
|
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.
|
|
95385
95385
|
*/
|
|
95386
95386
|
track(): Word.Range;
|
|
95387
95387
|
/**
|
|
@@ -95438,7 +95438,7 @@ declare namespace Word {
|
|
|
95438
95438
|
*/
|
|
95439
95439
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
95440
95440
|
/**
|
|
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
|
|
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.
|
|
95442
95442
|
*/
|
|
95443
95443
|
track(): Word.RangeCollection;
|
|
95444
95444
|
/**
|
|
@@ -95770,7 +95770,7 @@ declare namespace Word {
|
|
|
95770
95770
|
expand?: string;
|
|
95771
95771
|
}): Word.Section;
|
|
95772
95772
|
/**
|
|
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
|
|
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.
|
|
95774
95774
|
*/
|
|
95775
95775
|
track(): Word.Section;
|
|
95776
95776
|
/**
|
|
@@ -95827,7 +95827,7 @@ declare namespace Word {
|
|
|
95827
95827
|
*/
|
|
95828
95828
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
95829
95829
|
/**
|
|
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
|
|
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.
|
|
95831
95831
|
*/
|
|
95832
95832
|
track(): Word.SectionCollection;
|
|
95833
95833
|
/**
|
|
@@ -95900,7 +95900,7 @@ declare namespace Word {
|
|
|
95900
95900
|
expand?: string;
|
|
95901
95901
|
}): Word.Setting;
|
|
95902
95902
|
/**
|
|
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
|
|
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.
|
|
95904
95904
|
*/
|
|
95905
95905
|
track(): Word.Setting;
|
|
95906
95906
|
/**
|
|
@@ -95958,7 +95958,7 @@ declare namespace Word {
|
|
|
95958
95958
|
*/
|
|
95959
95959
|
getItem(key: string): Word.Setting;
|
|
95960
95960
|
/**
|
|
95961
|
-
* 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}.
|
|
95962
95962
|
*
|
|
95963
95963
|
* @remarks
|
|
95964
95964
|
* [Api set: WordApi 1.4]
|
|
@@ -95985,7 +95985,7 @@ declare namespace Word {
|
|
|
95985
95985
|
*/
|
|
95986
95986
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
|
|
95987
95987
|
/**
|
|
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
|
|
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.
|
|
95989
95989
|
*/
|
|
95990
95990
|
track(): Word.SettingCollection;
|
|
95991
95991
|
/**
|
|
@@ -96062,7 +96062,7 @@ declare namespace Word {
|
|
|
96062
96062
|
*/
|
|
96063
96063
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.StyleCollection;
|
|
96064
96064
|
/**
|
|
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
|
|
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.
|
|
96066
96066
|
*/
|
|
96067
96067
|
track(): Word.StyleCollection;
|
|
96068
96068
|
/**
|
|
@@ -96252,7 +96252,7 @@ declare namespace Word {
|
|
|
96252
96252
|
expand?: string;
|
|
96253
96253
|
}): Word.Style;
|
|
96254
96254
|
/**
|
|
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
|
|
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.
|
|
96256
96256
|
*/
|
|
96257
96257
|
track(): Word.Style;
|
|
96258
96258
|
/**
|
|
@@ -96329,7 +96329,7 @@ declare namespace Word {
|
|
|
96329
96329
|
expand?: string;
|
|
96330
96330
|
}): Word.Shading;
|
|
96331
96331
|
/**
|
|
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
|
|
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.
|
|
96333
96333
|
*/
|
|
96334
96334
|
track(): Word.Shading;
|
|
96335
96335
|
/**
|
|
@@ -96415,14 +96415,14 @@ declare namespace Word {
|
|
|
96415
96415
|
*/
|
|
96416
96416
|
readonly parentTableCell: Word.TableCell;
|
|
96417
96417
|
/**
|
|
96418
|
-
* 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}.
|
|
96419
96419
|
*
|
|
96420
96420
|
* @remarks
|
|
96421
96421
|
* [Api set: WordApi 1.3]
|
|
96422
96422
|
*/
|
|
96423
96423
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
96424
96424
|
/**
|
|
96425
|
-
* 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}.
|
|
96426
96426
|
*
|
|
96427
96427
|
* @remarks
|
|
96428
96428
|
* [Api set: WordApi 1.3]
|
|
@@ -96668,7 +96668,7 @@ declare namespace Word {
|
|
|
96668
96668
|
*/
|
|
96669
96669
|
getCell(rowIndex: number, cellIndex: number): Word.TableCell;
|
|
96670
96670
|
/**
|
|
96671
|
-
* 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}.
|
|
96672
96672
|
*
|
|
96673
96673
|
* @remarks
|
|
96674
96674
|
* [Api set: WordApi 1.3]
|
|
@@ -96865,7 +96865,7 @@ declare namespace Word {
|
|
|
96865
96865
|
expand?: string;
|
|
96866
96866
|
}): Word.Table;
|
|
96867
96867
|
/**
|
|
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
|
|
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.
|
|
96869
96869
|
*/
|
|
96870
96870
|
track(): Word.Table;
|
|
96871
96871
|
/**
|
|
@@ -96974,7 +96974,7 @@ declare namespace Word {
|
|
|
96974
96974
|
expand?: string;
|
|
96975
96975
|
}): Word.TableStyle;
|
|
96976
96976
|
/**
|
|
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
|
|
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.
|
|
96978
96978
|
*/
|
|
96979
96979
|
track(): Word.TableStyle;
|
|
96980
96980
|
/**
|
|
@@ -97031,7 +97031,7 @@ declare namespace Word {
|
|
|
97031
97031
|
*/
|
|
97032
97032
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
97033
97033
|
/**
|
|
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
|
|
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.
|
|
97035
97035
|
*/
|
|
97036
97036
|
track(): Word.TableCollection;
|
|
97037
97037
|
/**
|
|
@@ -97327,7 +97327,7 @@ declare namespace Word {
|
|
|
97327
97327
|
expand?: string;
|
|
97328
97328
|
}): Word.TableRow;
|
|
97329
97329
|
/**
|
|
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
|
|
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.
|
|
97331
97331
|
*/
|
|
97332
97332
|
track(): Word.TableRow;
|
|
97333
97333
|
/**
|
|
@@ -97384,7 +97384,7 @@ declare namespace Word {
|
|
|
97384
97384
|
*/
|
|
97385
97385
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
97386
97386
|
/**
|
|
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
|
|
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.
|
|
97388
97388
|
*/
|
|
97389
97389
|
track(): Word.TableRowCollection;
|
|
97390
97390
|
/**
|
|
@@ -97629,7 +97629,7 @@ declare namespace Word {
|
|
|
97629
97629
|
expand?: string;
|
|
97630
97630
|
}): Word.TableCell;
|
|
97631
97631
|
/**
|
|
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
|
|
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.
|
|
97633
97633
|
*/
|
|
97634
97634
|
track(): Word.TableCell;
|
|
97635
97635
|
/**
|
|
@@ -97686,7 +97686,7 @@ declare namespace Word {
|
|
|
97686
97686
|
*/
|
|
97687
97687
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
97688
97688
|
/**
|
|
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
|
|
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.
|
|
97690
97690
|
*/
|
|
97691
97691
|
track(): Word.TableCellCollection;
|
|
97692
97692
|
/**
|
|
@@ -97759,7 +97759,7 @@ declare namespace Word {
|
|
|
97759
97759
|
expand?: string;
|
|
97760
97760
|
}): Word.TableBorder;
|
|
97761
97761
|
/**
|
|
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
|
|
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.
|
|
97763
97763
|
*/
|
|
97764
97764
|
track(): Word.TableBorder;
|
|
97765
97765
|
/**
|
|
@@ -97876,7 +97876,7 @@ declare namespace Word {
|
|
|
97876
97876
|
expand?: string;
|
|
97877
97877
|
}): Word.TrackedChange;
|
|
97878
97878
|
/**
|
|
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
|
|
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.
|
|
97880
97880
|
*/
|
|
97881
97881
|
track(): Word.TrackedChange;
|
|
97882
97882
|
/**
|
|
@@ -97970,7 +97970,7 @@ declare namespace Word {
|
|
|
97970
97970
|
*/
|
|
97971
97971
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TrackedChangeCollection;
|
|
97972
97972
|
/**
|
|
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
|
|
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.
|
|
97974
97974
|
*/
|
|
97975
97975
|
track(): Word.TrackedChangeCollection;
|
|
97976
97976
|
/**
|
|
@@ -103027,7 +103027,7 @@ declare namespace Word {
|
|
|
103027
103027
|
*/
|
|
103028
103028
|
listItem?: Word.Interfaces.ListItemUpdateData;
|
|
103029
103029
|
/**
|
|
103030
|
-
* 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}.
|
|
103031
103031
|
*
|
|
103032
103032
|
* @remarks
|
|
103033
103033
|
* [Api set: WordApi 1.3]
|
|
@@ -104966,7 +104966,7 @@ declare namespace Word {
|
|
|
104966
104966
|
*/
|
|
104967
104967
|
listItem?: Word.Interfaces.ListItemData;
|
|
104968
104968
|
/**
|
|
104969
|
-
* 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}.
|
|
104970
104970
|
*
|
|
104971
104971
|
* @remarks
|
|
104972
104972
|
* [Api set: WordApi 1.3]
|
|
@@ -106598,14 +106598,14 @@ declare namespace Word {
|
|
|
106598
106598
|
*/
|
|
106599
106599
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
106600
106600
|
/**
|
|
106601
|
-
* 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}.
|
|
106602
106602
|
*
|
|
106603
106603
|
* @remarks
|
|
106604
106604
|
* [Api set: WordApi 1.3]
|
|
106605
106605
|
*/
|
|
106606
106606
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
106607
106607
|
/**
|
|
106608
|
-
* 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}.
|
|
106609
106609
|
*
|
|
106610
106610
|
* @remarks
|
|
106611
106611
|
* [Api set: WordApi 1.3]
|
|
@@ -106772,14 +106772,14 @@ declare namespace Word {
|
|
|
106772
106772
|
*/
|
|
106773
106773
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
106774
106774
|
/**
|
|
106775
|
-
* 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}.
|
|
106776
106776
|
*
|
|
106777
106777
|
* @remarks
|
|
106778
106778
|
* [Api set: WordApi 1.3]
|
|
106779
106779
|
*/
|
|
106780
106780
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
106781
106781
|
/**
|
|
106782
|
-
* 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}.
|
|
106783
106783
|
*
|
|
106784
106784
|
* @remarks
|
|
106785
106785
|
* [Api set: WordApi 1.3]
|
|
@@ -107400,14 +107400,14 @@ declare namespace Word {
|
|
|
107400
107400
|
*/
|
|
107401
107401
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
107402
107402
|
/**
|
|
107403
|
-
* 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}.
|
|
107404
107404
|
*
|
|
107405
107405
|
* @remarks
|
|
107406
107406
|
* [Api set: WordApi 1.4]
|
|
107407
107407
|
*/
|
|
107408
107408
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
107409
107409
|
/**
|
|
107410
|
-
* 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}.
|
|
107411
107411
|
*
|
|
107412
107412
|
* @remarks
|
|
107413
107413
|
* [Api set: WordApi 1.4]
|
|
@@ -107610,14 +107610,14 @@ declare namespace Word {
|
|
|
107610
107610
|
*/
|
|
107611
107611
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
107612
107612
|
/**
|
|
107613
|
-
* 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}.
|
|
107614
107614
|
*
|
|
107615
107615
|
* @remarks
|
|
107616
107616
|
* [Api set: WordApi 1.3]
|
|
107617
107617
|
*/
|
|
107618
107618
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
107619
107619
|
/**
|
|
107620
|
-
* 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}.
|
|
107621
107621
|
*
|
|
107622
107622
|
* @remarks
|
|
107623
107623
|
* [Api set: WordApi 1.3]
|
|
@@ -107721,14 +107721,14 @@ declare namespace Word {
|
|
|
107721
107721
|
*/
|
|
107722
107722
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
107723
107723
|
/**
|
|
107724
|
-
* 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}.
|
|
107725
107725
|
*
|
|
107726
107726
|
* @remarks
|
|
107727
107727
|
* [Api set: WordApi 1.3]
|
|
107728
107728
|
*/
|
|
107729
107729
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
107730
107730
|
/**
|
|
107731
|
-
* 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}.
|
|
107732
107732
|
*
|
|
107733
107733
|
* @remarks
|
|
107734
107734
|
* [Api set: WordApi 1.3]
|
|
@@ -108206,14 +108206,14 @@ declare namespace Word {
|
|
|
108206
108206
|
*/
|
|
108207
108207
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
108208
108208
|
/**
|
|
108209
|
-
* 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}.
|
|
108210
108210
|
*
|
|
108211
108211
|
* @remarks
|
|
108212
108212
|
* [Api set: WordApi 1.3]
|
|
108213
108213
|
*/
|
|
108214
108214
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
108215
108215
|
/**
|
|
108216
|
-
* 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}.
|
|
108217
108217
|
*
|
|
108218
108218
|
* @remarks
|
|
108219
108219
|
* [Api set: WordApi 1.3]
|
|
@@ -108255,14 +108255,14 @@ declare namespace Word {
|
|
|
108255
108255
|
*/
|
|
108256
108256
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108257
108257
|
/**
|
|
108258
|
-
* 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}.
|
|
108259
108259
|
*
|
|
108260
108260
|
* @remarks
|
|
108261
108261
|
* [Api set: WordApi 1.3]
|
|
108262
108262
|
*/
|
|
108263
108263
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108264
108264
|
/**
|
|
108265
|
-
* 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}.
|
|
108266
108266
|
*
|
|
108267
108267
|
* @remarks
|
|
108268
108268
|
* [Api set: WordApi 1.3]
|
|
@@ -108422,14 +108422,14 @@ declare namespace Word {
|
|
|
108422
108422
|
*/
|
|
108423
108423
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
108424
108424
|
/**
|
|
108425
|
-
* 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}.
|
|
108426
108426
|
*
|
|
108427
108427
|
* @remarks
|
|
108428
108428
|
* [Api set: WordApi 1.3]
|
|
108429
108429
|
*/
|
|
108430
108430
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
108431
108431
|
/**
|
|
108432
|
-
* 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}.
|
|
108433
108433
|
*
|
|
108434
108434
|
* @remarks
|
|
108435
108435
|
* [Api set: WordApi 1.3]
|
|
@@ -108471,14 +108471,14 @@ declare namespace Word {
|
|
|
108471
108471
|
*/
|
|
108472
108472
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108473
108473
|
/**
|
|
108474
|
-
* 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}.
|
|
108475
108475
|
*
|
|
108476
108476
|
* @remarks
|
|
108477
108477
|
* [Api set: WordApi 1.3]
|
|
108478
108478
|
*/
|
|
108479
108479
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108480
108480
|
/**
|
|
108481
|
-
* 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}.
|
|
108482
108482
|
*
|
|
108483
108483
|
* @remarks
|
|
108484
108484
|
* [Api set: WordApi 1.3]
|
|
@@ -108769,14 +108769,14 @@ declare namespace Word {
|
|
|
108769
108769
|
*/
|
|
108770
108770
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108771
108771
|
/**
|
|
108772
|
-
* 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}.
|
|
108773
108773
|
*
|
|
108774
108774
|
* @remarks
|
|
108775
108775
|
* [Api set: WordApi 1.3]
|
|
108776
108776
|
*/
|
|
108777
108777
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108778
108778
|
/**
|
|
108779
|
-
* 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}.
|
|
108780
108780
|
*
|
|
108781
108781
|
* @remarks
|
|
108782
108782
|
* [Api set: WordApi 1.3]
|
|
@@ -108872,14 +108872,14 @@ declare namespace Word {
|
|
|
108872
108872
|
*/
|
|
108873
108873
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
108874
108874
|
/**
|
|
108875
|
-
* 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}.
|
|
108876
108876
|
*
|
|
108877
108877
|
* @remarks
|
|
108878
108878
|
* [Api set: WordApi 1.3]
|
|
108879
108879
|
*/
|
|
108880
108880
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
108881
108881
|
/**
|
|
108882
|
-
* 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}.
|
|
108883
108883
|
*
|
|
108884
108884
|
* @remarks
|
|
108885
108885
|
* [Api set: WordApi 1.3]
|
|
@@ -109450,14 +109450,14 @@ declare namespace Word {
|
|
|
109450
109450
|
*/
|
|
109451
109451
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
109452
109452
|
/**
|
|
109453
|
-
* 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}.
|
|
109454
109454
|
*
|
|
109455
109455
|
* @remarks
|
|
109456
109456
|
* [Api set: WordApi 1.3]
|
|
109457
109457
|
*/
|
|
109458
109458
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
109459
109459
|
/**
|
|
109460
|
-
* 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}.
|
|
109461
109461
|
*
|
|
109462
109462
|
* @remarks
|
|
109463
109463
|
* [Api set: WordApi 1.3]
|
|
@@ -109706,14 +109706,14 @@ declare namespace Word {
|
|
|
109706
109706
|
*/
|
|
109707
109707
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
109708
109708
|
/**
|
|
109709
|
-
* 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}.
|
|
109710
109710
|
*
|
|
109711
109711
|
* @remarks
|
|
109712
109712
|
* [Api set: WordApi 1.3]
|
|
109713
109713
|
*/
|
|
109714
109714
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
109715
109715
|
/**
|
|
109716
|
-
* 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}.
|
|
109717
109717
|
*
|
|
109718
109718
|
* @remarks
|
|
109719
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
|
}
|