@types/office-js 1.0.347 → 1.0.349
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- office-js/README.md +1 -1
- office-js/index.d.ts +94 -91
- office-js/package.json +2 -2
office-js/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.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 06 Oct 2023 19:35:19 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Excel`, `Office`, `OfficeCore`, `OfficeExtension`, `OneNote`, `PowerPoint`, `Visio`, `Word`
|
|
14
14
|
|
office-js/index.d.ts
CHANGED
|
@@ -14842,9 +14842,12 @@ declare namespace Office {
|
|
|
14842
14842
|
* To determine the Outlook client in which your add-in is running, use the `mailbox.diagnostics.hostName` property.
|
|
14843
14843
|
*
|
|
14844
14844
|
* @param data - The EWS request.
|
|
14845
|
-
* @param callback - When the method completes, the function passed in the callback parameter is called with a single parameter
|
|
14846
|
-
*
|
|
14847
|
-
*
|
|
14845
|
+
* @param callback - When the method completes, the function passed in the `callback` parameter is called with a single parameter,
|
|
14846
|
+
* `asyncResult`, which is an `Office.AsyncResult` object. The XML response of the EWS request is provided as a string
|
|
14847
|
+
* in the `asyncResult.value` property. In Outlook on the web, on Windows (starting in Version 2303 (Build 16225.10000)),
|
|
14848
|
+
* and on Mac (starting in Version 16.73 (23042601)), if the response exceeds 5 MB in size, an error message is returned
|
|
14849
|
+
* in the `asyncResult.error` property. In earlier versions of the Outlook desktop client, an error message is returned if
|
|
14850
|
+
* the response exceeds 1 MB in size.
|
|
14848
14851
|
* @param userContext - Optional. Any state data that is passed to the asynchronous method.
|
|
14849
14852
|
*/
|
|
14850
14853
|
makeEwsRequestAsync(data: any, callback: (asyncResult: Office.AsyncResult<string>) => void, userContext?: any): void;
|
|
@@ -84143,7 +84146,7 @@ declare namespace Word {
|
|
|
84143
84146
|
expand?: string;
|
|
84144
84147
|
}): Word.Body;
|
|
84145
84148
|
/**
|
|
84146
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
84149
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
84147
84150
|
*/
|
|
84148
84151
|
track(): Word.Body;
|
|
84149
84152
|
/**
|
|
@@ -84274,7 +84277,7 @@ declare namespace Word {
|
|
|
84274
84277
|
expand?: string;
|
|
84275
84278
|
}): Word.Comment;
|
|
84276
84279
|
/**
|
|
84277
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
84280
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
84278
84281
|
*/
|
|
84279
84282
|
track(): Word.Comment;
|
|
84280
84283
|
/**
|
|
@@ -84331,7 +84334,7 @@ declare namespace Word {
|
|
|
84331
84334
|
*/
|
|
84332
84335
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentCollection;
|
|
84333
84336
|
/**
|
|
84334
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
84337
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
84335
84338
|
*/
|
|
84336
84339
|
track(): Word.CommentCollection;
|
|
84337
84340
|
/**
|
|
@@ -84440,7 +84443,7 @@ declare namespace Word {
|
|
|
84440
84443
|
expand?: string;
|
|
84441
84444
|
}): Word.CommentContentRange;
|
|
84442
84445
|
/**
|
|
84443
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
84446
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
84444
84447
|
*/
|
|
84445
84448
|
track(): Word.CommentContentRange;
|
|
84446
84449
|
/**
|
|
@@ -84548,7 +84551,7 @@ declare namespace Word {
|
|
|
84548
84551
|
expand?: string;
|
|
84549
84552
|
}): Word.CommentReply;
|
|
84550
84553
|
/**
|
|
84551
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
84554
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
84552
84555
|
*/
|
|
84553
84556
|
track(): Word.CommentReply;
|
|
84554
84557
|
/**
|
|
@@ -84605,7 +84608,7 @@ declare namespace Word {
|
|
|
84605
84608
|
*/
|
|
84606
84609
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CommentReplyCollection;
|
|
84607
84610
|
/**
|
|
84608
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
84611
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
84609
84612
|
*/
|
|
84610
84613
|
track(): Word.CommentReplyCollection;
|
|
84611
84614
|
/**
|
|
@@ -85129,7 +85132,7 @@ declare namespace Word {
|
|
|
85129
85132
|
*/
|
|
85130
85133
|
readonly onSelectionChanged: OfficeExtension.EventHandlers<Word.ContentControlSelectionChangedEventArgs>;
|
|
85131
85134
|
/**
|
|
85132
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
85135
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
85133
85136
|
*/
|
|
85134
85137
|
track(): Word.ContentControl;
|
|
85135
85138
|
/**
|
|
@@ -85249,7 +85252,7 @@ declare namespace Word {
|
|
|
85249
85252
|
*/
|
|
85250
85253
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ContentControlCollection;
|
|
85251
85254
|
/**
|
|
85252
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
85255
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
85253
85256
|
*/
|
|
85254
85257
|
track(): Word.ContentControlCollection;
|
|
85255
85258
|
/**
|
|
@@ -85346,7 +85349,7 @@ declare namespace Word {
|
|
|
85346
85349
|
expand?: string;
|
|
85347
85350
|
}): Word.CustomProperty;
|
|
85348
85351
|
/**
|
|
85349
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
85352
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
85350
85353
|
*/
|
|
85351
85354
|
track(): Word.CustomProperty;
|
|
85352
85355
|
/**
|
|
@@ -85431,7 +85434,7 @@ declare namespace Word {
|
|
|
85431
85434
|
*/
|
|
85432
85435
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;
|
|
85433
85436
|
/**
|
|
85434
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
85437
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
85435
85438
|
*/
|
|
85436
85439
|
track(): Word.CustomPropertyCollection;
|
|
85437
85440
|
/**
|
|
@@ -85710,7 +85713,7 @@ declare namespace Word {
|
|
|
85710
85713
|
expand?: string;
|
|
85711
85714
|
}): Word.CustomXmlPart;
|
|
85712
85715
|
/**
|
|
85713
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
85716
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
85714
85717
|
*/
|
|
85715
85718
|
track(): Word.CustomXmlPart;
|
|
85716
85719
|
/**
|
|
@@ -85796,7 +85799,7 @@ declare namespace Word {
|
|
|
85796
85799
|
*/
|
|
85797
85800
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartCollection;
|
|
85798
85801
|
/**
|
|
85799
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
85802
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
85800
85803
|
*/
|
|
85801
85804
|
track(): Word.CustomXmlPartCollection;
|
|
85802
85805
|
/**
|
|
@@ -85878,7 +85881,7 @@ declare namespace Word {
|
|
|
85878
85881
|
*/
|
|
85879
85882
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomXmlPartScopedCollection;
|
|
85880
85883
|
/**
|
|
85881
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
85884
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
85882
85885
|
*/
|
|
85883
85886
|
track(): Word.CustomXmlPartScopedCollection;
|
|
85884
85887
|
/**
|
|
@@ -86008,7 +86011,7 @@ declare namespace Word {
|
|
|
86008
86011
|
* @remarks
|
|
86009
86012
|
* [Api set: WordApi 1.4]
|
|
86010
86013
|
*
|
|
86011
|
-
* @param name Required. The bookmark name
|
|
86014
|
+
* @param name Required. The case-insensitive bookmark name.
|
|
86012
86015
|
*/
|
|
86013
86016
|
deleteBookmark(name: string): void;
|
|
86014
86017
|
/**
|
|
@@ -86017,7 +86020,7 @@ declare namespace Word {
|
|
|
86017
86020
|
* @remarks
|
|
86018
86021
|
* [Api set: WordApi 1.4]
|
|
86019
86022
|
*
|
|
86020
|
-
* @param name Required. The bookmark name
|
|
86023
|
+
* @param name Required. The case-insensitive bookmark name.
|
|
86021
86024
|
*/
|
|
86022
86025
|
getBookmarkRange(name: string): Word.Range;
|
|
86023
86026
|
/**
|
|
@@ -86026,7 +86029,7 @@ declare namespace Word {
|
|
|
86026
86029
|
* @remarks
|
|
86027
86030
|
* [Api set: WordApi 1.4]
|
|
86028
86031
|
*
|
|
86029
|
-
* @param name Required. The bookmark name
|
|
86032
|
+
* @param name Required. The case-insensitive bookmark name.
|
|
86030
86033
|
*/
|
|
86031
86034
|
getBookmarkRangeOrNullObject(name: string): Word.Range;
|
|
86032
86035
|
/**
|
|
@@ -86154,7 +86157,7 @@ declare namespace Word {
|
|
|
86154
86157
|
*/
|
|
86155
86158
|
readonly onContentControlAdded: OfficeExtension.EventHandlers<Word.ContentControlAddedEventArgs>;
|
|
86156
86159
|
/**
|
|
86157
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
86160
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
86158
86161
|
*/
|
|
86159
86162
|
track(): Word.Document;
|
|
86160
86163
|
/**
|
|
@@ -86259,7 +86262,7 @@ declare namespace Word {
|
|
|
86259
86262
|
* @remarks
|
|
86260
86263
|
* [Api set: WordApiHiddenDocument 1.4]
|
|
86261
86264
|
*
|
|
86262
|
-
* @param name Required. The bookmark name
|
|
86265
|
+
* @param name Required. The case-insensitive bookmark name.
|
|
86263
86266
|
*/
|
|
86264
86267
|
deleteBookmark(name: string): void;
|
|
86265
86268
|
/**
|
|
@@ -86268,7 +86271,7 @@ declare namespace Word {
|
|
|
86268
86271
|
* @remarks
|
|
86269
86272
|
* [Api set: WordApiHiddenDocument 1.4]
|
|
86270
86273
|
*
|
|
86271
|
-
* @param name Required. The bookmark name
|
|
86274
|
+
* @param name Required. The case-insensitive bookmark name.
|
|
86272
86275
|
*/
|
|
86273
86276
|
getBookmarkRange(name: string): Word.Range;
|
|
86274
86277
|
/**
|
|
@@ -86277,7 +86280,7 @@ declare namespace Word {
|
|
|
86277
86280
|
* @remarks
|
|
86278
86281
|
* [Api set: WordApiHiddenDocument 1.4]
|
|
86279
86282
|
*
|
|
86280
|
-
* @param name Required. The bookmark name
|
|
86283
|
+
* @param name Required. The case-insensitive bookmark name.
|
|
86281
86284
|
*/
|
|
86282
86285
|
getBookmarkRangeOrNullObject(name: string): Word.Range;
|
|
86283
86286
|
/**
|
|
@@ -86365,7 +86368,7 @@ declare namespace Word {
|
|
|
86365
86368
|
expand?: string;
|
|
86366
86369
|
}): Word.DocumentCreated;
|
|
86367
86370
|
/**
|
|
86368
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
86371
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
86369
86372
|
*/
|
|
86370
86373
|
track(): Word.DocumentCreated;
|
|
86371
86374
|
/**
|
|
@@ -86543,7 +86546,7 @@ declare namespace Word {
|
|
|
86543
86546
|
expand?: string;
|
|
86544
86547
|
}): Word.DocumentProperties;
|
|
86545
86548
|
/**
|
|
86546
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
86549
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
86547
86550
|
*/
|
|
86548
86551
|
track(): Word.DocumentProperties;
|
|
86549
86552
|
/**
|
|
@@ -86601,14 +86604,14 @@ declare namespace Word {
|
|
|
86601
86604
|
*/
|
|
86602
86605
|
readonly parentTableCell: Word.TableCell;
|
|
86603
86606
|
/**
|
|
86604
|
-
* Gets the table cell that contains the field. If it
|
|
86607
|
+
* 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}.
|
|
86605
86608
|
*
|
|
86606
86609
|
* @remarks
|
|
86607
86610
|
* [Api set: WordApi 1.4]
|
|
86608
86611
|
*/
|
|
86609
86612
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
86610
86613
|
/**
|
|
86611
|
-
* Gets the table that contains the field. If it
|
|
86614
|
+
* 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}.
|
|
86612
86615
|
*
|
|
86613
86616
|
* @remarks
|
|
86614
86617
|
* [Api set: WordApi 1.4]
|
|
@@ -86734,7 +86737,7 @@ declare namespace Word {
|
|
|
86734
86737
|
expand?: string;
|
|
86735
86738
|
}): Word.Field;
|
|
86736
86739
|
/**
|
|
86737
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
86740
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
86738
86741
|
*/
|
|
86739
86742
|
track(): Word.Field;
|
|
86740
86743
|
/**
|
|
@@ -86800,7 +86803,7 @@ declare namespace Word {
|
|
|
86800
86803
|
*/
|
|
86801
86804
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.FieldCollection;
|
|
86802
86805
|
/**
|
|
86803
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
86806
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
86804
86807
|
*/
|
|
86805
86808
|
track(): Word.FieldCollection;
|
|
86806
86809
|
/**
|
|
@@ -86929,7 +86932,7 @@ declare namespace Word {
|
|
|
86929
86932
|
expand?: string;
|
|
86930
86933
|
}): Word.Font;
|
|
86931
86934
|
/**
|
|
86932
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
86935
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
86933
86936
|
*/
|
|
86934
86937
|
track(): Word.Font;
|
|
86935
86938
|
/**
|
|
@@ -86987,14 +86990,14 @@ declare namespace Word {
|
|
|
86987
86990
|
*/
|
|
86988
86991
|
readonly parentTableCell: Word.TableCell;
|
|
86989
86992
|
/**
|
|
86990
|
-
* Gets the table cell that contains the inline image. If it
|
|
86993
|
+
* 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}.
|
|
86991
86994
|
*
|
|
86992
86995
|
* @remarks
|
|
86993
86996
|
* [Api set: WordApi 1.3]
|
|
86994
86997
|
*/
|
|
86995
86998
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
86996
86999
|
/**
|
|
86997
|
-
* Gets the table that contains the inline image. If it
|
|
87000
|
+
* 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}.
|
|
86998
87001
|
*
|
|
86999
87002
|
* @remarks
|
|
87000
87003
|
* [Api set: WordApi 1.3]
|
|
@@ -87206,7 +87209,7 @@ declare namespace Word {
|
|
|
87206
87209
|
expand?: string;
|
|
87207
87210
|
}): Word.InlinePicture;
|
|
87208
87211
|
/**
|
|
87209
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
87212
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
87210
87213
|
*/
|
|
87211
87214
|
track(): Word.InlinePicture;
|
|
87212
87215
|
/**
|
|
@@ -87263,7 +87266,7 @@ declare namespace Word {
|
|
|
87263
87266
|
*/
|
|
87264
87267
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.InlinePictureCollection;
|
|
87265
87268
|
/**
|
|
87266
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
87269
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
87267
87270
|
*/
|
|
87268
87271
|
track(): Word.InlinePictureCollection;
|
|
87269
87272
|
/**
|
|
@@ -87450,7 +87453,7 @@ declare namespace Word {
|
|
|
87450
87453
|
expand?: string;
|
|
87451
87454
|
}): Word.List;
|
|
87452
87455
|
/**
|
|
87453
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
87456
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
87454
87457
|
*/
|
|
87455
87458
|
track(): Word.List;
|
|
87456
87459
|
/**
|
|
@@ -87534,7 +87537,7 @@ declare namespace Word {
|
|
|
87534
87537
|
*/
|
|
87535
87538
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ListCollection;
|
|
87536
87539
|
/**
|
|
87537
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
87540
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
87538
87541
|
*/
|
|
87539
87542
|
track(): Word.ListCollection;
|
|
87540
87543
|
/**
|
|
@@ -87634,7 +87637,7 @@ declare namespace Word {
|
|
|
87634
87637
|
expand?: string;
|
|
87635
87638
|
}): Word.ListItem;
|
|
87636
87639
|
/**
|
|
87637
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
87640
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
87638
87641
|
*/
|
|
87639
87642
|
track(): Word.ListItem;
|
|
87640
87643
|
/**
|
|
@@ -87728,7 +87731,7 @@ declare namespace Word {
|
|
|
87728
87731
|
expand?: string;
|
|
87729
87732
|
}): Word.NoteItem;
|
|
87730
87733
|
/**
|
|
87731
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
87734
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
87732
87735
|
*/
|
|
87733
87736
|
track(): Word.NoteItem;
|
|
87734
87737
|
/**
|
|
@@ -87785,7 +87788,7 @@ declare namespace Word {
|
|
|
87785
87788
|
*/
|
|
87786
87789
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.NoteItemCollection;
|
|
87787
87790
|
/**
|
|
87788
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
87791
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
87789
87792
|
*/
|
|
87790
87793
|
track(): Word.NoteItemCollection;
|
|
87791
87794
|
/**
|
|
@@ -87864,7 +87867,7 @@ declare namespace Word {
|
|
|
87864
87867
|
*/
|
|
87865
87868
|
readonly listItem: Word.ListItem;
|
|
87866
87869
|
/**
|
|
87867
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
87870
|
+
* 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}.
|
|
87868
87871
|
*
|
|
87869
87872
|
* @remarks
|
|
87870
87873
|
* [Api set: WordApi 1.3]
|
|
@@ -87913,14 +87916,14 @@ declare namespace Word {
|
|
|
87913
87916
|
*/
|
|
87914
87917
|
readonly parentTableCell: Word.TableCell;
|
|
87915
87918
|
/**
|
|
87916
|
-
* Gets the table cell that contains the paragraph. If it
|
|
87919
|
+
* 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}.
|
|
87917
87920
|
*
|
|
87918
87921
|
* @remarks
|
|
87919
87922
|
* [Api set: WordApi 1.3]
|
|
87920
87923
|
*/
|
|
87921
87924
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
87922
87925
|
/**
|
|
87923
|
-
* Gets the table that contains the paragraph. If it
|
|
87926
|
+
* 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}.
|
|
87924
87927
|
*
|
|
87925
87928
|
* @remarks
|
|
87926
87929
|
* [Api set: WordApi 1.3]
|
|
@@ -88345,7 +88348,7 @@ declare namespace Word {
|
|
|
88345
88348
|
expand?: string;
|
|
88346
88349
|
}): Word.Paragraph;
|
|
88347
88350
|
/**
|
|
88348
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
88351
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
88349
88352
|
*/
|
|
88350
88353
|
track(): Word.Paragraph;
|
|
88351
88354
|
/**
|
|
@@ -88416,7 +88419,7 @@ declare namespace Word {
|
|
|
88416
88419
|
*/
|
|
88417
88420
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.ParagraphCollection;
|
|
88418
88421
|
/**
|
|
88419
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
88422
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
88420
88423
|
*/
|
|
88421
88424
|
track(): Word.ParagraphCollection;
|
|
88422
88425
|
/**
|
|
@@ -88566,7 +88569,7 @@ declare namespace Word {
|
|
|
88566
88569
|
expand?: string;
|
|
88567
88570
|
}): Word.ParagraphFormat;
|
|
88568
88571
|
/**
|
|
88569
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
88572
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
88570
88573
|
*/
|
|
88571
88574
|
track(): Word.ParagraphFormat;
|
|
88572
88575
|
/**
|
|
@@ -88680,14 +88683,14 @@ declare namespace Word {
|
|
|
88680
88683
|
*/
|
|
88681
88684
|
readonly parentTableCell: Word.TableCell;
|
|
88682
88685
|
/**
|
|
88683
|
-
* Gets the table cell that contains the range. If it
|
|
88686
|
+
* 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}.
|
|
88684
88687
|
*
|
|
88685
88688
|
* @remarks
|
|
88686
88689
|
* [Api set: WordApi 1.3]
|
|
88687
88690
|
*/
|
|
88688
88691
|
readonly parentTableCellOrNullObject: Word.TableCell;
|
|
88689
88692
|
/**
|
|
88690
|
-
* Gets the table that contains the range. If it
|
|
88693
|
+
* 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}.
|
|
88691
88694
|
*
|
|
88692
88695
|
* @remarks
|
|
88693
88696
|
* [Api set: WordApi 1.3]
|
|
@@ -88776,7 +88779,7 @@ declare namespace Word {
|
|
|
88776
88779
|
*/
|
|
88777
88780
|
expandTo(range: Word.Range): Word.Range;
|
|
88778
88781
|
/**
|
|
88779
|
-
* Returns a new range that extends from this range in either direction to cover another range. This range
|
|
88782
|
+
* Returns a new range that extends from this range in either direction to cover another range. This range isn't changed. If the two ranges don't have a union, then this method will return an object with its `isNullObject` property set to `true`. For further information, see {@link https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
88780
88783
|
*
|
|
88781
88784
|
* @remarks
|
|
88782
88785
|
* [Api set: WordApi 1.3]
|
|
@@ -89059,7 +89062,7 @@ declare namespace Word {
|
|
|
89059
89062
|
*/
|
|
89060
89063
|
intersectWith(range: Word.Range): Word.Range;
|
|
89061
89064
|
/**
|
|
89062
|
-
* Returns a new range as the intersection of this range with another range. This range
|
|
89065
|
+
* Returns a new range as the intersection of this range with another range. This range isn't changed. If the two ranges aren't 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}.
|
|
89063
89066
|
*
|
|
89064
89067
|
* @remarks
|
|
89065
89068
|
* [Api set: WordApi 1.3]
|
|
@@ -89137,7 +89140,7 @@ declare namespace Word {
|
|
|
89137
89140
|
expand?: string;
|
|
89138
89141
|
}): Word.Range;
|
|
89139
89142
|
/**
|
|
89140
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89143
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89141
89144
|
*/
|
|
89142
89145
|
track(): Word.Range;
|
|
89143
89146
|
/**
|
|
@@ -89194,7 +89197,7 @@ declare namespace Word {
|
|
|
89194
89197
|
*/
|
|
89195
89198
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.RangeCollection;
|
|
89196
89199
|
/**
|
|
89197
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89200
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89198
89201
|
*/
|
|
89199
89202
|
track(): Word.RangeCollection;
|
|
89200
89203
|
/**
|
|
@@ -89444,7 +89447,7 @@ declare namespace Word {
|
|
|
89444
89447
|
expand?: string;
|
|
89445
89448
|
}): Word.Section;
|
|
89446
89449
|
/**
|
|
89447
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89450
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89448
89451
|
*/
|
|
89449
89452
|
track(): Word.Section;
|
|
89450
89453
|
/**
|
|
@@ -89501,7 +89504,7 @@ declare namespace Word {
|
|
|
89501
89504
|
*/
|
|
89502
89505
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SectionCollection;
|
|
89503
89506
|
/**
|
|
89504
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89507
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89505
89508
|
*/
|
|
89506
89509
|
track(): Word.SectionCollection;
|
|
89507
89510
|
/**
|
|
@@ -89574,7 +89577,7 @@ declare namespace Word {
|
|
|
89574
89577
|
expand?: string;
|
|
89575
89578
|
}): Word.Setting;
|
|
89576
89579
|
/**
|
|
89577
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89580
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89578
89581
|
*/
|
|
89579
89582
|
track(): Word.Setting;
|
|
89580
89583
|
/**
|
|
@@ -89632,7 +89635,7 @@ declare namespace Word {
|
|
|
89632
89635
|
*/
|
|
89633
89636
|
getItem(key: string): Word.Setting;
|
|
89634
89637
|
/**
|
|
89635
|
-
* Gets a setting object by its key, which is case-sensitive. If the setting
|
|
89638
|
+
* 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}.
|
|
89636
89639
|
*
|
|
89637
89640
|
* @remarks
|
|
89638
89641
|
* [Api set: WordApi 1.4]
|
|
@@ -89659,7 +89662,7 @@ declare namespace Word {
|
|
|
89659
89662
|
*/
|
|
89660
89663
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.SettingCollection;
|
|
89661
89664
|
/**
|
|
89662
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89665
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89663
89666
|
*/
|
|
89664
89667
|
track(): Word.SettingCollection;
|
|
89665
89668
|
/**
|
|
@@ -89736,7 +89739,7 @@ declare namespace Word {
|
|
|
89736
89739
|
*/
|
|
89737
89740
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.StyleCollection;
|
|
89738
89741
|
/**
|
|
89739
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89742
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89740
89743
|
*/
|
|
89741
89744
|
track(): Word.StyleCollection;
|
|
89742
89745
|
/**
|
|
@@ -89886,7 +89889,7 @@ declare namespace Word {
|
|
|
89886
89889
|
expand?: string;
|
|
89887
89890
|
}): Word.Style;
|
|
89888
89891
|
/**
|
|
89889
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
89892
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
89890
89893
|
*/
|
|
89891
89894
|
track(): Word.Style;
|
|
89892
89895
|
/**
|
|
@@ -90422,7 +90425,7 @@ declare namespace Word {
|
|
|
90422
90425
|
expand?: string;
|
|
90423
90426
|
}): Word.Table;
|
|
90424
90427
|
/**
|
|
90425
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
90428
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
90426
90429
|
*/
|
|
90427
90430
|
track(): Word.Table;
|
|
90428
90431
|
/**
|
|
@@ -90479,7 +90482,7 @@ declare namespace Word {
|
|
|
90479
90482
|
*/
|
|
90480
90483
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCollection;
|
|
90481
90484
|
/**
|
|
90482
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
90485
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
90483
90486
|
*/
|
|
90484
90487
|
track(): Word.TableCollection;
|
|
90485
90488
|
/**
|
|
@@ -90767,7 +90770,7 @@ declare namespace Word {
|
|
|
90767
90770
|
expand?: string;
|
|
90768
90771
|
}): Word.TableRow;
|
|
90769
90772
|
/**
|
|
90770
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
90773
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
90771
90774
|
*/
|
|
90772
90775
|
track(): Word.TableRow;
|
|
90773
90776
|
/**
|
|
@@ -90824,7 +90827,7 @@ declare namespace Word {
|
|
|
90824
90827
|
*/
|
|
90825
90828
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableRowCollection;
|
|
90826
90829
|
/**
|
|
90827
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
90830
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
90828
90831
|
*/
|
|
90829
90832
|
track(): Word.TableRowCollection;
|
|
90830
90833
|
/**
|
|
@@ -91069,7 +91072,7 @@ declare namespace Word {
|
|
|
91069
91072
|
expand?: string;
|
|
91070
91073
|
}): Word.TableCell;
|
|
91071
91074
|
/**
|
|
91072
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
91075
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
91073
91076
|
*/
|
|
91074
91077
|
track(): Word.TableCell;
|
|
91075
91078
|
/**
|
|
@@ -91126,7 +91129,7 @@ declare namespace Word {
|
|
|
91126
91129
|
*/
|
|
91127
91130
|
load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.TableCellCollection;
|
|
91128
91131
|
/**
|
|
91129
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
91132
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
91130
91133
|
*/
|
|
91131
91134
|
track(): Word.TableCellCollection;
|
|
91132
91135
|
/**
|
|
@@ -91199,7 +91202,7 @@ declare namespace Word {
|
|
|
91199
91202
|
expand?: string;
|
|
91200
91203
|
}): Word.TableBorder;
|
|
91201
91204
|
/**
|
|
91202
|
-
* Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand for {@link https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member | context.trackedObjects.add(thisObject)}. If you
|
|
91205
|
+
* Track the object for automatic adjustment based on surrounding changes in the document. This call is 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.
|
|
91203
91206
|
*/
|
|
91204
91207
|
track(): Word.TableBorder;
|
|
91205
91208
|
/**
|
|
@@ -94564,7 +94567,7 @@ declare namespace Word {
|
|
|
94564
94567
|
*/
|
|
94565
94568
|
listItem?: Word.Interfaces.ListItemUpdateData;
|
|
94566
94569
|
/**
|
|
94567
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
94570
|
+
* 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}.
|
|
94568
94571
|
*
|
|
94569
94572
|
* @remarks
|
|
94570
94573
|
* [Api set: WordApi 1.3]
|
|
@@ -96154,7 +96157,7 @@ declare namespace Word {
|
|
|
96154
96157
|
*/
|
|
96155
96158
|
listItem?: Word.Interfaces.ListItemData;
|
|
96156
96159
|
/**
|
|
96157
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
96160
|
+
* 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}.
|
|
96158
96161
|
*
|
|
96159
96162
|
* @remarks
|
|
96160
96163
|
* [Api set: WordApi 1.3]
|
|
@@ -98077,14 +98080,14 @@ declare namespace Word {
|
|
|
98077
98080
|
*/
|
|
98078
98081
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98079
98082
|
/**
|
|
98080
|
-
* Gets the table cell that contains the field. If it
|
|
98083
|
+
* 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}.
|
|
98081
98084
|
*
|
|
98082
98085
|
* @remarks
|
|
98083
98086
|
* [Api set: WordApi 1.4]
|
|
98084
98087
|
*/
|
|
98085
98088
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98086
98089
|
/**
|
|
98087
|
-
* Gets the table that contains the field. If it
|
|
98090
|
+
* 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}.
|
|
98088
98091
|
*
|
|
98089
98092
|
* @remarks
|
|
98090
98093
|
* [Api set: WordApi 1.4]
|
|
@@ -98182,14 +98185,14 @@ declare namespace Word {
|
|
|
98182
98185
|
*/
|
|
98183
98186
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98184
98187
|
/**
|
|
98185
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the field. If it
|
|
98188
|
+
* 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}.
|
|
98186
98189
|
*
|
|
98187
98190
|
* @remarks
|
|
98188
98191
|
* [Api set: WordApi 1.4]
|
|
98189
98192
|
*/
|
|
98190
98193
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98191
98194
|
/**
|
|
98192
|
-
* For EACH ITEM in the collection: Gets the table that contains the field. If it
|
|
98195
|
+
* 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}.
|
|
98193
98196
|
*
|
|
98194
98197
|
* @remarks
|
|
98195
98198
|
* [Api set: WordApi 1.4]
|
|
@@ -98376,14 +98379,14 @@ declare namespace Word {
|
|
|
98376
98379
|
*/
|
|
98377
98380
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98378
98381
|
/**
|
|
98379
|
-
* Gets the table cell that contains the inline image. If it
|
|
98382
|
+
* 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}.
|
|
98380
98383
|
*
|
|
98381
98384
|
* @remarks
|
|
98382
98385
|
* [Api set: WordApi 1.3]
|
|
98383
98386
|
*/
|
|
98384
98387
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98385
98388
|
/**
|
|
98386
|
-
* Gets the table that contains the inline image. If it
|
|
98389
|
+
* 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}.
|
|
98387
98390
|
*
|
|
98388
98391
|
* @remarks
|
|
98389
98392
|
* [Api set: WordApi 1.3]
|
|
@@ -98479,14 +98482,14 @@ declare namespace Word {
|
|
|
98479
98482
|
*/
|
|
98480
98483
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98481
98484
|
/**
|
|
98482
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the inline image. If it
|
|
98485
|
+
* 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}.
|
|
98483
98486
|
*
|
|
98484
98487
|
* @remarks
|
|
98485
98488
|
* [Api set: WordApi 1.3]
|
|
98486
98489
|
*/
|
|
98487
98490
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98488
98491
|
/**
|
|
98489
|
-
* For EACH ITEM in the collection: Gets the table that contains the inline image. If it
|
|
98492
|
+
* 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}.
|
|
98490
98493
|
*
|
|
98491
98494
|
* @remarks
|
|
98492
98495
|
* [Api set: WordApi 1.3]
|
|
@@ -98733,14 +98736,14 @@ declare namespace Word {
|
|
|
98733
98736
|
*/
|
|
98734
98737
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
98735
98738
|
/**
|
|
98736
|
-
* Gets the ListItem for the paragraph. If the paragraph
|
|
98739
|
+
* 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}.
|
|
98737
98740
|
*
|
|
98738
98741
|
* @remarks
|
|
98739
98742
|
* [Api set: WordApi 1.3]
|
|
98740
98743
|
*/
|
|
98741
98744
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
98742
98745
|
/**
|
|
98743
|
-
* Gets the List to which this paragraph belongs. If the paragraph
|
|
98746
|
+
* 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}.
|
|
98744
98747
|
*
|
|
98745
98748
|
* @remarks
|
|
98746
98749
|
* [Api set: WordApi 1.3]
|
|
@@ -98782,14 +98785,14 @@ declare namespace Word {
|
|
|
98782
98785
|
*/
|
|
98783
98786
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98784
98787
|
/**
|
|
98785
|
-
* Gets the table cell that contains the paragraph. If it
|
|
98788
|
+
* 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}.
|
|
98786
98789
|
*
|
|
98787
98790
|
* @remarks
|
|
98788
98791
|
* [Api set: WordApi 1.3]
|
|
98789
98792
|
*/
|
|
98790
98793
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98791
98794
|
/**
|
|
98792
|
-
* Gets the table that contains the paragraph. If it
|
|
98795
|
+
* 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}.
|
|
98793
98796
|
*
|
|
98794
98797
|
* @remarks
|
|
98795
98798
|
* [Api set: WordApi 1.3]
|
|
@@ -98941,14 +98944,14 @@ declare namespace Word {
|
|
|
98941
98944
|
*/
|
|
98942
98945
|
listItem?: Word.Interfaces.ListItemLoadOptions;
|
|
98943
98946
|
/**
|
|
98944
|
-
* For EACH ITEM in the collection: Gets the ListItem for the paragraph. If the paragraph
|
|
98947
|
+
* 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}.
|
|
98945
98948
|
*
|
|
98946
98949
|
* @remarks
|
|
98947
98950
|
* [Api set: WordApi 1.3]
|
|
98948
98951
|
*/
|
|
98949
98952
|
listItemOrNullObject?: Word.Interfaces.ListItemLoadOptions;
|
|
98950
98953
|
/**
|
|
98951
|
-
* For EACH ITEM in the collection: Gets the List to which this paragraph belongs. If the paragraph
|
|
98954
|
+
* 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}.
|
|
98952
98955
|
*
|
|
98953
98956
|
* @remarks
|
|
98954
98957
|
* [Api set: WordApi 1.3]
|
|
@@ -98990,14 +98993,14 @@ declare namespace Word {
|
|
|
98990
98993
|
*/
|
|
98991
98994
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
98992
98995
|
/**
|
|
98993
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the paragraph. If it
|
|
98996
|
+
* 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}.
|
|
98994
98997
|
*
|
|
98995
98998
|
* @remarks
|
|
98996
98999
|
* [Api set: WordApi 1.3]
|
|
98997
99000
|
*/
|
|
98998
99001
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
98999
99002
|
/**
|
|
99000
|
-
* For EACH ITEM in the collection: Gets the table that contains the paragraph. If it
|
|
99003
|
+
* 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}.
|
|
99001
99004
|
*
|
|
99002
99005
|
* @remarks
|
|
99003
99006
|
* [Api set: WordApi 1.3]
|
|
@@ -99280,14 +99283,14 @@ declare namespace Word {
|
|
|
99280
99283
|
*/
|
|
99281
99284
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99282
99285
|
/**
|
|
99283
|
-
* Gets the table cell that contains the range. If it
|
|
99286
|
+
* 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}.
|
|
99284
99287
|
*
|
|
99285
99288
|
* @remarks
|
|
99286
99289
|
* [Api set: WordApi 1.3]
|
|
99287
99290
|
*/
|
|
99288
99291
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99289
99292
|
/**
|
|
99290
|
-
* Gets the table that contains the range. If it
|
|
99293
|
+
* 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}.
|
|
99291
99294
|
*
|
|
99292
99295
|
* @remarks
|
|
99293
99296
|
* [Api set: WordApi 1.3]
|
|
@@ -99383,14 +99386,14 @@ declare namespace Word {
|
|
|
99383
99386
|
*/
|
|
99384
99387
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99385
99388
|
/**
|
|
99386
|
-
* For EACH ITEM in the collection: Gets the table cell that contains the range. If it
|
|
99389
|
+
* 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}.
|
|
99387
99390
|
*
|
|
99388
99391
|
* @remarks
|
|
99389
99392
|
* [Api set: WordApi 1.3]
|
|
99390
99393
|
*/
|
|
99391
99394
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99392
99395
|
/**
|
|
99393
|
-
* For EACH ITEM in the collection: Gets the table that contains the range. If it
|
|
99396
|
+
* 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}.
|
|
99394
99397
|
*
|
|
99395
99398
|
* @remarks
|
|
99396
99399
|
* [Api set: WordApi 1.3]
|
|
@@ -99844,14 +99847,14 @@ declare namespace Word {
|
|
|
99844
99847
|
*/
|
|
99845
99848
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
99846
99849
|
/**
|
|
99847
|
-
* Gets the table cell that contains this table. If it
|
|
99850
|
+
* 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}.
|
|
99848
99851
|
*
|
|
99849
99852
|
* @remarks
|
|
99850
99853
|
* [Api set: WordApi 1.3]
|
|
99851
99854
|
*/
|
|
99852
99855
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
99853
99856
|
/**
|
|
99854
|
-
* Gets the table that contains this table. If it
|
|
99857
|
+
* 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}.
|
|
99855
99858
|
*
|
|
99856
99859
|
* @remarks
|
|
99857
99860
|
* [Api set: WordApi 1.3]
|
|
@@ -100031,14 +100034,14 @@ declare namespace Word {
|
|
|
100031
100034
|
*/
|
|
100032
100035
|
parentTableCell?: Word.Interfaces.TableCellLoadOptions;
|
|
100033
100036
|
/**
|
|
100034
|
-
* For EACH ITEM in the collection: Gets the table cell that contains this table. If it
|
|
100037
|
+
* 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}.
|
|
100035
100038
|
*
|
|
100036
100039
|
* @remarks
|
|
100037
100040
|
* [Api set: WordApi 1.3]
|
|
100038
100041
|
*/
|
|
100039
100042
|
parentTableCellOrNullObject?: Word.Interfaces.TableCellLoadOptions;
|
|
100040
100043
|
/**
|
|
100041
|
-
* For EACH ITEM in the collection: Gets the table that contains this table. If it
|
|
100044
|
+
* 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}.
|
|
100042
100045
|
*
|
|
100043
100046
|
* @remarks
|
|
100044
100047
|
* [Api set: WordApi 1.3]
|
office-js/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/office-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.349",
|
|
4
4
|
"description": "TypeScript definitions for Office.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/office-js",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,6 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"scripts": {},
|
|
47
47
|
"dependencies": {},
|
|
48
|
-
"typesPublisherContentHash": "
|
|
48
|
+
"typesPublisherContentHash": "17c7eafb0c249980c06196b73d160a493e31c2c8b5e5009ee334f07b399fa986",
|
|
49
49
|
"typeScriptVersion": "4.5"
|
|
50
50
|
}
|