@types/office-js-preview 1.0.375 → 1.0.377
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 +393 -160
- 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: Thu, 09 Mar 2023 21:32:39 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
|
@@ -19898,6 +19898,63 @@ declare namespace Excel {
|
|
|
19898
19898
|
referencedValues?: ReferencedValue[];
|
|
19899
19899
|
}
|
|
19900
19900
|
/**
|
|
19901
|
+
* Represents a card layout that is best used for an array.
|
|
19902
|
+
*
|
|
19903
|
+
* @remarks
|
|
19904
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19905
|
+
* @beta
|
|
19906
|
+
*/
|
|
19907
|
+
interface EntityArrayCardLayout {
|
|
19908
|
+
/**
|
|
19909
|
+
* Represents the type of this layout.
|
|
19910
|
+
*
|
|
19911
|
+
* @remarks
|
|
19912
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19913
|
+
* @beta
|
|
19914
|
+
*/
|
|
19915
|
+
layout: EntityCardLayoutType.array | "Array";
|
|
19916
|
+
/**
|
|
19917
|
+
* Represents name of the property that contains the array shown in the card.
|
|
19918
|
+
*
|
|
19919
|
+
* @remarks
|
|
19920
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19921
|
+
* @beta
|
|
19922
|
+
*/
|
|
19923
|
+
arrayProperty: string;
|
|
19924
|
+
/**
|
|
19925
|
+
* Represents name of the property that contains the array shown in the card. Default value is "Array".
|
|
19926
|
+
*
|
|
19927
|
+
* @remarks
|
|
19928
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19929
|
+
* @beta
|
|
19930
|
+
*/
|
|
19931
|
+
displayName?: string;
|
|
19932
|
+
/**
|
|
19933
|
+
* Represents the count of rows which the card claims are in the array. A card may report a different number of rows than it actually has to display smaller amounts of preview data.
|
|
19934
|
+
*
|
|
19935
|
+
* @remarks
|
|
19936
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19937
|
+
* @beta
|
|
19938
|
+
*/
|
|
19939
|
+
rowsToReport?: number;
|
|
19940
|
+
/**
|
|
19941
|
+
* Represents the count of columns which the card claims are in the array. A card may report a different number of columns than it actually has to display smaller amounts of preview data.
|
|
19942
|
+
*
|
|
19943
|
+
* @remarks
|
|
19944
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19945
|
+
* @beta
|
|
19946
|
+
*/
|
|
19947
|
+
columnsToReport?: number;
|
|
19948
|
+
/**
|
|
19949
|
+
* Represents whether the first row of the array is treated as a header.
|
|
19950
|
+
*
|
|
19951
|
+
* @remarks
|
|
19952
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
19953
|
+
* @beta
|
|
19954
|
+
*/
|
|
19955
|
+
firstRowIsHeader?: boolean;
|
|
19956
|
+
}
|
|
19957
|
+
/**
|
|
19901
19958
|
* Represents types of #BLOCKED! errors.
|
|
19902
19959
|
*
|
|
19903
19960
|
* @remarks
|
|
@@ -20372,7 +20429,32 @@ declare namespace Excel {
|
|
|
20372
20429
|
* @remarks
|
|
20373
20430
|
* [Api set: ExcelApi 1.16]
|
|
20374
20431
|
*/
|
|
20375
|
-
type CardLayout = EntityCardLayout;
|
|
20432
|
+
type CardLayout = EntityCardLayout | EntityArrayCardLayout;
|
|
20433
|
+
/**
|
|
20434
|
+
* Types of entity card layouts.
|
|
20435
|
+
*
|
|
20436
|
+
* @remarks
|
|
20437
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20438
|
+
* @beta
|
|
20439
|
+
*/
|
|
20440
|
+
enum EntityCardLayoutType {
|
|
20441
|
+
/**
|
|
20442
|
+
* Entity layout of the entity card.
|
|
20443
|
+
*
|
|
20444
|
+
* @remarks
|
|
20445
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20446
|
+
* @beta
|
|
20447
|
+
*/
|
|
20448
|
+
entity = "Entity",
|
|
20449
|
+
/**
|
|
20450
|
+
* Array layout of the entity card.
|
|
20451
|
+
*
|
|
20452
|
+
* @remarks
|
|
20453
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
20454
|
+
* @beta
|
|
20455
|
+
*/
|
|
20456
|
+
array = "Array"
|
|
20457
|
+
}
|
|
20376
20458
|
/**
|
|
20377
20459
|
* The compact layout properties for an entity.
|
|
20378
20460
|
*
|
|
@@ -24953,7 +25035,7 @@ declare namespace Excel {
|
|
|
24953
25035
|
propertyMetadata?: CellValuePropertyMetadata;
|
|
24954
25036
|
}
|
|
24955
25037
|
/**
|
|
24956
|
-
* Represents
|
|
25038
|
+
* Represents a set of properties without a schema or defined structure.
|
|
24957
25039
|
*
|
|
24958
25040
|
* @remarks
|
|
24959
25041
|
* [Api set: ExcelApi 1.16]
|
|
@@ -25045,7 +25127,7 @@ declare namespace Excel {
|
|
|
25045
25127
|
compact?: CompactLayout;
|
|
25046
25128
|
}
|
|
25047
25129
|
/**
|
|
25048
|
-
* Represents a card layout best used for an
|
|
25130
|
+
* Represents a card layout that is best used for an array.
|
|
25049
25131
|
*
|
|
25050
25132
|
* @remarks
|
|
25051
25133
|
* [Api set: ExcelApi 1.16]
|
|
@@ -25057,7 +25139,7 @@ declare namespace Excel {
|
|
|
25057
25139
|
* @remarks
|
|
25058
25140
|
* [Api set: ExcelApi 1.16]
|
|
25059
25141
|
*/
|
|
25060
|
-
layout?: "Entity";
|
|
25142
|
+
layout?: EntityCardLayoutType.entity | "Entity";
|
|
25061
25143
|
}
|
|
25062
25144
|
/**
|
|
25063
25145
|
* Represents the types of the `ErrorCellValue` object.
|
|
@@ -27143,12 +27225,12 @@ declare namespace Excel {
|
|
|
27143
27225
|
/**
|
|
27144
27226
|
* Notifies when a worksheet is moved within a workbook.
|
|
27145
27227
|
|
|
27146
|
-
|
|
27147
|
-
|
|
27148
|
-
|
|
27149
|
-
|
|
27150
|
-
|
|
27151
|
-
|
|
27228
|
+
If a worksheet is moved from one position within the workbook to another
|
|
27229
|
+
via the Excel UI, then this API will trigger an event. Note that if
|
|
27230
|
+
the position of a worksheet changes as a result of moving a different worksheet,
|
|
27231
|
+
then this event won't trigger for both position changes. This event only triggers
|
|
27232
|
+
for the primary worksheet move, and not any worksheet position changes that occur
|
|
27233
|
+
as a result of that primary move.
|
|
27152
27234
|
*
|
|
27153
27235
|
* @remarks
|
|
27154
27236
|
* [Api set: ExcelApiOnline 1.1]
|
|
@@ -27735,6 +27817,115 @@ declare namespace Excel {
|
|
|
27735
27817
|
*/
|
|
27736
27818
|
undo = "undo"
|
|
27737
27819
|
}
|
|
27820
|
+
/**
|
|
27821
|
+
* Represents a recorded change to the task, to be used as an input parameter.
|
|
27822
|
+
*
|
|
27823
|
+
* @remarks
|
|
27824
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27825
|
+
* @beta
|
|
27826
|
+
*/
|
|
27827
|
+
interface DocumentTaskChangeProperties {
|
|
27828
|
+
/**
|
|
27829
|
+
* Represents the user assigned to the task for an `assign` change action, or the user unassigned from the task for an `unassign` change action.
|
|
27830
|
+
*
|
|
27831
|
+
* @remarks
|
|
27832
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27833
|
+
* @beta
|
|
27834
|
+
*/
|
|
27835
|
+
assignee?: Excel.EmailIdentity;
|
|
27836
|
+
/**
|
|
27837
|
+
* Represents the identity of the user who made the task change.
|
|
27838
|
+
*
|
|
27839
|
+
* @remarks
|
|
27840
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27841
|
+
* @beta
|
|
27842
|
+
*/
|
|
27843
|
+
changedBy: Excel.EmailIdentity;
|
|
27844
|
+
/**
|
|
27845
|
+
* Represents the ID of the `comment` or `commentReply` to which the task change is anchored.
|
|
27846
|
+
*
|
|
27847
|
+
* @remarks
|
|
27848
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27849
|
+
* @beta
|
|
27850
|
+
*/
|
|
27851
|
+
commentId?: string;
|
|
27852
|
+
/**
|
|
27853
|
+
* Represents the creation date and time of the task change record. All dates are in UTC.
|
|
27854
|
+
*
|
|
27855
|
+
* @remarks
|
|
27856
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27857
|
+
* @beta
|
|
27858
|
+
*/
|
|
27859
|
+
createdDateTime?: Date;
|
|
27860
|
+
/**
|
|
27861
|
+
* Represents the task's due date and time. It is used for the `setSchedule` change action.
|
|
27862
|
+
It is in UTC time zone. It can be set to `null` to remove the due date and time. It should be set together with `startDateTime` to avoid conflicts.
|
|
27863
|
+
*
|
|
27864
|
+
* @remarks
|
|
27865
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27866
|
+
* @beta
|
|
27867
|
+
*/
|
|
27868
|
+
dueDateTime?: Date;
|
|
27869
|
+
/**
|
|
27870
|
+
* The unique GUID of the task change.
|
|
27871
|
+
*
|
|
27872
|
+
* @remarks
|
|
27873
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27874
|
+
* @beta
|
|
27875
|
+
*/
|
|
27876
|
+
id: string;
|
|
27877
|
+
/**
|
|
27878
|
+
* Represents the task's completion percentage. It is used for the `setPercentComplete` change action.
|
|
27879
|
+
This is a value betwen 0 and 100, where 100 represents a completed task. Changing this value to 100 also completes the associated comment. Changing the completion from 100 to a lower value reactivates the associated comment.
|
|
27880
|
+
*
|
|
27881
|
+
* @remarks
|
|
27882
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27883
|
+
* @beta
|
|
27884
|
+
*/
|
|
27885
|
+
percentComplete?: number;
|
|
27886
|
+
/**
|
|
27887
|
+
* Represents the task's priority. It is used for the `setPriority` change action.
|
|
27888
|
+
This is a value between 0 and 10, with 5 being the default priority if not set, and where 0 represents the highest priority.
|
|
27889
|
+
*
|
|
27890
|
+
* @remarks
|
|
27891
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27892
|
+
* @beta
|
|
27893
|
+
*/
|
|
27894
|
+
priority?: number;
|
|
27895
|
+
/**
|
|
27896
|
+
* Represents the task's start date and time. It is used for the `setSchedule` change action.
|
|
27897
|
+
It is in UTC time zone. It can be set to `null` to remove the start date and time. It should be set together with `dueDateTime` to avoid conflicts.
|
|
27898
|
+
*
|
|
27899
|
+
* @remarks
|
|
27900
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27901
|
+
* @beta
|
|
27902
|
+
*/
|
|
27903
|
+
startDateTime?: Date;
|
|
27904
|
+
/**
|
|
27905
|
+
* Represents the task's title. It is used for the `setTitle` change action.
|
|
27906
|
+
*
|
|
27907
|
+
* @remarks
|
|
27908
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27909
|
+
* @beta
|
|
27910
|
+
*/
|
|
27911
|
+
title?: string;
|
|
27912
|
+
/**
|
|
27913
|
+
* Represents the action type of the task change record. Some examples of action types are assign, undo, and setPriority.
|
|
27914
|
+
*
|
|
27915
|
+
* @remarks
|
|
27916
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27917
|
+
* @beta
|
|
27918
|
+
*/
|
|
27919
|
+
type: Excel.DocumentTaskChangeAction | "unknown" | "create" | "assign" | "unassign" | "unassignAll" | "setSchedule" | "setPercentComplete" | "setPriority" | "remove" | "restore" | "setTitle" | "undo";
|
|
27920
|
+
/**
|
|
27921
|
+
* Represents the `DocumentTaskChange.id` property that was undone for the `undo` change action.
|
|
27922
|
+
*
|
|
27923
|
+
* @remarks
|
|
27924
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27925
|
+
* @beta
|
|
27926
|
+
*/
|
|
27927
|
+
undoChangeId?: string;
|
|
27928
|
+
}
|
|
27738
27929
|
/**
|
|
27739
27930
|
* Represents a recorded change to the task.
|
|
27740
27931
|
*
|
|
@@ -27752,7 +27943,7 @@ declare namespace Excel {
|
|
|
27752
27943
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27753
27944
|
* @beta
|
|
27754
27945
|
*/
|
|
27755
|
-
readonly assignee: Excel.
|
|
27946
|
+
readonly assignee: Excel.EmailIdentity;
|
|
27756
27947
|
/**
|
|
27757
27948
|
* Represents the identity of the user who made the task change.
|
|
27758
27949
|
*
|
|
@@ -27760,7 +27951,7 @@ declare namespace Excel {
|
|
|
27760
27951
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27761
27952
|
* @beta
|
|
27762
27953
|
*/
|
|
27763
|
-
readonly changedBy: Excel.
|
|
27954
|
+
readonly changedBy: Excel.EmailIdentity;
|
|
27764
27955
|
/**
|
|
27765
27956
|
* Represents the ID of the `comment` or `commentReply` to which the task change is anchored.
|
|
27766
27957
|
*
|
|
@@ -27956,6 +28147,64 @@ declare namespace Excel {
|
|
|
27956
28147
|
*/
|
|
27957
28148
|
id: string;
|
|
27958
28149
|
}
|
|
28150
|
+
/**
|
|
28151
|
+
* Represents information about a user's identity.
|
|
28152
|
+
*
|
|
28153
|
+
* @remarks
|
|
28154
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28155
|
+
* @beta
|
|
28156
|
+
*/
|
|
28157
|
+
interface EmailIdentity {
|
|
28158
|
+
/**
|
|
28159
|
+
* Represents the user's display name.
|
|
28160
|
+
*
|
|
28161
|
+
* @remarks
|
|
28162
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28163
|
+
* @beta
|
|
28164
|
+
*/
|
|
28165
|
+
displayName?: string;
|
|
28166
|
+
/**
|
|
28167
|
+
* Represents the user's email.
|
|
28168
|
+
*
|
|
28169
|
+
* @remarks
|
|
28170
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28171
|
+
* @beta
|
|
28172
|
+
*/
|
|
28173
|
+
email?: string;
|
|
28174
|
+
/**
|
|
28175
|
+
* Represents the user's unique ID.
|
|
28176
|
+
*
|
|
28177
|
+
* @remarks
|
|
28178
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28179
|
+
* @beta
|
|
28180
|
+
*/
|
|
28181
|
+
id: string;
|
|
28182
|
+
}
|
|
28183
|
+
/**
|
|
28184
|
+
* Represents information about a task's schedule.
|
|
28185
|
+
*
|
|
28186
|
+
* @remarks
|
|
28187
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28188
|
+
* @beta
|
|
28189
|
+
*/
|
|
28190
|
+
interface DocumentTaskSchedule {
|
|
28191
|
+
/**
|
|
28192
|
+
* Gets the date and time that the task is due. All dates are in UTC.
|
|
28193
|
+
*
|
|
28194
|
+
* @remarks
|
|
28195
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28196
|
+
* @beta
|
|
28197
|
+
*/
|
|
28198
|
+
dueDateTime: Date;
|
|
28199
|
+
/**
|
|
28200
|
+
* Gets the date and time that the task should start. All dates are in UTC.
|
|
28201
|
+
*
|
|
28202
|
+
* @remarks
|
|
28203
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28204
|
+
* @beta
|
|
28205
|
+
*/
|
|
28206
|
+
startDateTime: Date;
|
|
28207
|
+
}
|
|
27959
28208
|
/**
|
|
27960
28209
|
* Represents a task.
|
|
27961
28210
|
*
|
|
@@ -27989,7 +28238,7 @@ declare namespace Excel {
|
|
|
27989
28238
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27990
28239
|
* @beta
|
|
27991
28240
|
*/
|
|
27992
|
-
readonly assignees: Excel.
|
|
28241
|
+
readonly assignees: Excel.EmailIdentity[];
|
|
27993
28242
|
/**
|
|
27994
28243
|
* Gets the most recent user to have completed the task.
|
|
27995
28244
|
*
|
|
@@ -27997,7 +28246,7 @@ declare namespace Excel {
|
|
|
27997
28246
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
27998
28247
|
* @beta
|
|
27999
28248
|
*/
|
|
28000
|
-
readonly completedBy: Excel.
|
|
28249
|
+
readonly completedBy: Excel.EmailIdentity;
|
|
28001
28250
|
/**
|
|
28002
28251
|
* Gets the date and time that the task was completed. All dates are in UTC.
|
|
28003
28252
|
*
|
|
@@ -28013,7 +28262,7 @@ declare namespace Excel {
|
|
|
28013
28262
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28014
28263
|
* @beta
|
|
28015
28264
|
*/
|
|
28016
|
-
readonly createdBy: Excel.
|
|
28265
|
+
readonly createdBy: Excel.EmailIdentity;
|
|
28017
28266
|
/**
|
|
28018
28267
|
* Gets the date and time that the task was created. All dates are in UTC.
|
|
28019
28268
|
*
|
|
@@ -28022,14 +28271,6 @@ declare namespace Excel {
|
|
|
28022
28271
|
* @beta
|
|
28023
28272
|
*/
|
|
28024
28273
|
readonly createdDateTime: Date;
|
|
28025
|
-
/**
|
|
28026
|
-
* Gets or sets the date and time the task is due.
|
|
28027
|
-
*
|
|
28028
|
-
* @remarks
|
|
28029
|
-
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28030
|
-
* @beta
|
|
28031
|
-
*/
|
|
28032
|
-
dueDateTime: Date;
|
|
28033
28274
|
/**
|
|
28034
28275
|
* Gets the ID of the task.
|
|
28035
28276
|
*
|
|
@@ -28055,13 +28296,13 @@ declare namespace Excel {
|
|
|
28055
28296
|
*/
|
|
28056
28297
|
priority: number;
|
|
28057
28298
|
/**
|
|
28058
|
-
* Gets or sets the date and time the task
|
|
28299
|
+
* Gets or sets the date and time the task should start and is due.
|
|
28059
28300
|
*
|
|
28060
28301
|
* @remarks
|
|
28061
28302
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
28062
28303
|
* @beta
|
|
28063
28304
|
*/
|
|
28064
|
-
|
|
28305
|
+
startAndDueDateTime: Excel.DocumentTaskSchedule;
|
|
28065
28306
|
/**
|
|
28066
28307
|
* Specifies title of the task.
|
|
28067
28308
|
*
|
|
@@ -28079,7 +28320,7 @@ declare namespace Excel {
|
|
|
28079
28320
|
*
|
|
28080
28321
|
* @param assignee The identity of the user to add to the assignee list.
|
|
28081
28322
|
*/
|
|
28082
|
-
assign(assignee: Excel.
|
|
28323
|
+
assign(assignee: Excel.EmailIdentity): void;
|
|
28083
28324
|
/**
|
|
28084
28325
|
* Removes the given user from the list of assignees attached to the task.
|
|
28085
28326
|
*
|
|
@@ -28089,7 +28330,7 @@ declare namespace Excel {
|
|
|
28089
28330
|
*
|
|
28090
28331
|
* @param assignee The identity of the user to remove from the assignee list.
|
|
28091
28332
|
*/
|
|
28092
|
-
unassign(assignee: Excel.
|
|
28333
|
+
unassign(assignee: Excel.EmailIdentity): void;
|
|
28093
28334
|
/**
|
|
28094
28335
|
* Removes all users from the list of assignees attached to the task.
|
|
28095
28336
|
*
|
|
@@ -28260,8 +28501,8 @@ declare namespace Excel {
|
|
|
28260
28501
|
/**
|
|
28261
28502
|
* Equals comparator criterion.
|
|
28262
28503
|
|
|
28263
|
-
|
|
28264
|
-
|
|
28504
|
+
Required Criteria: {`comparator`}.
|
|
28505
|
+
Optional Criteria: {`wholeDays`, `exclusive`}.
|
|
28265
28506
|
* @remarks
|
|
28266
28507
|
* [Api set: ExcelApi 1.12]
|
|
28267
28508
|
*/
|
|
@@ -28269,8 +28510,8 @@ declare namespace Excel {
|
|
|
28269
28510
|
/**
|
|
28270
28511
|
* Date is before comparator date.
|
|
28271
28512
|
|
|
28272
|
-
|
|
28273
|
-
|
|
28513
|
+
Required Criteria: {`comparator`}.
|
|
28514
|
+
Optional Criteria: {`wholeDays`}.
|
|
28274
28515
|
* @remarks
|
|
28275
28516
|
* [Api set: ExcelApi 1.12]
|
|
28276
28517
|
*/
|
|
@@ -28278,8 +28519,8 @@ declare namespace Excel {
|
|
|
28278
28519
|
/**
|
|
28279
28520
|
* Date is before or equal to comparator date.
|
|
28280
28521
|
|
|
28281
|
-
|
|
28282
|
-
|
|
28522
|
+
Required Criteria: {`comparator`}.
|
|
28523
|
+
Optional Criteria: {`wholeDays`}.
|
|
28283
28524
|
* @remarks
|
|
28284
28525
|
* [Api set: ExcelApi 1.12]
|
|
28285
28526
|
*/
|
|
@@ -28287,8 +28528,8 @@ declare namespace Excel {
|
|
|
28287
28528
|
/**
|
|
28288
28529
|
* Date is after comparator date.
|
|
28289
28530
|
|
|
28290
|
-
|
|
28291
|
-
|
|
28531
|
+
Required Criteria: {`comparator`}.
|
|
28532
|
+
Optional Criteria: {`wholeDays`}.
|
|
28292
28533
|
* @remarks
|
|
28293
28534
|
* [Api set: ExcelApi 1.12]
|
|
28294
28535
|
*/
|
|
@@ -28296,8 +28537,8 @@ declare namespace Excel {
|
|
|
28296
28537
|
/**
|
|
28297
28538
|
* Date is after or equal to comparator date.
|
|
28298
28539
|
|
|
28299
|
-
|
|
28300
|
-
|
|
28540
|
+
Required Criteria: {`comparator`}.
|
|
28541
|
+
Optional Criteria: {`wholeDays`}.
|
|
28301
28542
|
* @remarks
|
|
28302
28543
|
* [Api set: ExcelApi 1.12]
|
|
28303
28544
|
*/
|
|
@@ -28305,8 +28546,8 @@ declare namespace Excel {
|
|
|
28305
28546
|
/**
|
|
28306
28547
|
* Between `lowerBound` and `upperBound` dates.
|
|
28307
28548
|
|
|
28308
|
-
|
|
28309
|
-
|
|
28549
|
+
Required Criteria: {`lowerBound`, `upperBound`}.
|
|
28550
|
+
Optional Criteria: {`wholeDays`, `exclusive`}.
|
|
28310
28551
|
* @remarks
|
|
28311
28552
|
* [Api set: ExcelApi 1.12]
|
|
28312
28553
|
*/
|
|
@@ -28522,8 +28763,8 @@ declare namespace Excel {
|
|
|
28522
28763
|
/**
|
|
28523
28764
|
* Equals comparator criterion.
|
|
28524
28765
|
|
|
28525
|
-
|
|
28526
|
-
|
|
28766
|
+
Required Criteria: {`comparator`}.
|
|
28767
|
+
Optional Criteria: {`exclusive`}.
|
|
28527
28768
|
* @remarks
|
|
28528
28769
|
* [Api set: ExcelApi 1.12]
|
|
28529
28770
|
*/
|
|
@@ -28531,8 +28772,8 @@ declare namespace Excel {
|
|
|
28531
28772
|
/**
|
|
28532
28773
|
* Label begins with substring criterion.
|
|
28533
28774
|
|
|
28534
|
-
|
|
28535
|
-
|
|
28775
|
+
Required Criteria: {`substring`}.
|
|
28776
|
+
Optional Criteria: {`exclusive`}.
|
|
28536
28777
|
* @remarks
|
|
28537
28778
|
* [Api set: ExcelApi 1.12]
|
|
28538
28779
|
*/
|
|
@@ -28540,8 +28781,8 @@ declare namespace Excel {
|
|
|
28540
28781
|
/**
|
|
28541
28782
|
* Label ends with substring criterion.
|
|
28542
28783
|
|
|
28543
|
-
|
|
28544
|
-
|
|
28784
|
+
Required Criteria: {`substring`}.
|
|
28785
|
+
Optional Criteria: {`exclusive`}.
|
|
28545
28786
|
* @remarks
|
|
28546
28787
|
* [Api set: ExcelApi 1.12]
|
|
28547
28788
|
*/
|
|
@@ -28549,8 +28790,8 @@ declare namespace Excel {
|
|
|
28549
28790
|
/**
|
|
28550
28791
|
* Label contains substring criterion.
|
|
28551
28792
|
|
|
28552
|
-
|
|
28553
|
-
|
|
28793
|
+
Required Criteria: {`substring`}.
|
|
28794
|
+
Optional Criteria: {`exclusive`}.
|
|
28554
28795
|
* @remarks
|
|
28555
28796
|
* [Api set: ExcelApi 1.12]
|
|
28556
28797
|
*/
|
|
@@ -28558,7 +28799,7 @@ declare namespace Excel {
|
|
|
28558
28799
|
/**
|
|
28559
28800
|
* Greater than comparator criterion.
|
|
28560
28801
|
|
|
28561
|
-
|
|
28802
|
+
Required Criteria: {`comparator`}.
|
|
28562
28803
|
* @remarks
|
|
28563
28804
|
* [Api set: ExcelApi 1.12]
|
|
28564
28805
|
*/
|
|
@@ -28566,7 +28807,7 @@ declare namespace Excel {
|
|
|
28566
28807
|
/**
|
|
28567
28808
|
* Greater than or equal to comparator criterion.
|
|
28568
28809
|
|
|
28569
|
-
|
|
28810
|
+
Required Criteria: {`comparator`}.
|
|
28570
28811
|
* @remarks
|
|
28571
28812
|
* [Api set: ExcelApi 1.12]
|
|
28572
28813
|
*/
|
|
@@ -28574,7 +28815,7 @@ declare namespace Excel {
|
|
|
28574
28815
|
/**
|
|
28575
28816
|
* Less than comparator criterion.
|
|
28576
28817
|
|
|
28577
|
-
|
|
28818
|
+
Required Criteria: {`comparator`}.
|
|
28578
28819
|
* @remarks
|
|
28579
28820
|
* [Api set: ExcelApi 1.12]
|
|
28580
28821
|
*/
|
|
@@ -28582,7 +28823,7 @@ declare namespace Excel {
|
|
|
28582
28823
|
/**
|
|
28583
28824
|
* Less than or equal to comparator criterion.
|
|
28584
28825
|
|
|
28585
|
-
|
|
28826
|
+
Required Criteria: {`comparator`}.
|
|
28586
28827
|
* @remarks
|
|
28587
28828
|
* [Api set: ExcelApi 1.12]
|
|
28588
28829
|
*/
|
|
@@ -28590,8 +28831,8 @@ declare namespace Excel {
|
|
|
28590
28831
|
/**
|
|
28591
28832
|
* Between `lowerBound` and `upperBound` criteria.
|
|
28592
28833
|
|
|
28593
|
-
|
|
28594
|
-
|
|
28834
|
+
Required Criteria: {`lowerBound`, `upperBound`}.
|
|
28835
|
+
Optional Criteria: {`exclusive`}.
|
|
28595
28836
|
* @remarks
|
|
28596
28837
|
* [Api set: ExcelApi 1.12]
|
|
28597
28838
|
*/
|
|
@@ -28904,8 +29145,8 @@ declare namespace Excel {
|
|
|
28904
29145
|
/**
|
|
28905
29146
|
* Equals comparator criterion.
|
|
28906
29147
|
|
|
28907
|
-
|
|
28908
|
-
|
|
29148
|
+
Required Criteria: {`value`, `comparator`}.
|
|
29149
|
+
Optional Criteria: {`exclusive`}.
|
|
28909
29150
|
* @remarks
|
|
28910
29151
|
* [Api set: ExcelApi 1.12]
|
|
28911
29152
|
*/
|
|
@@ -28913,7 +29154,7 @@ declare namespace Excel {
|
|
|
28913
29154
|
/**
|
|
28914
29155
|
* Greater than comparator criterion.
|
|
28915
29156
|
|
|
28916
|
-
|
|
29157
|
+
Required Criteria: {`value`, `comparator`}.
|
|
28917
29158
|
* @remarks
|
|
28918
29159
|
* [Api set: ExcelApi 1.12]
|
|
28919
29160
|
*/
|
|
@@ -28921,7 +29162,7 @@ declare namespace Excel {
|
|
|
28921
29162
|
/**
|
|
28922
29163
|
* Greater than or equal to comparator criterion.
|
|
28923
29164
|
|
|
28924
|
-
|
|
29165
|
+
Required Criteria: {`value`, `comparator`}.
|
|
28925
29166
|
* @remarks
|
|
28926
29167
|
* [Api set: ExcelApi 1.12]
|
|
28927
29168
|
*/
|
|
@@ -28929,7 +29170,7 @@ declare namespace Excel {
|
|
|
28929
29170
|
/**
|
|
28930
29171
|
* Less than comparator criterion.
|
|
28931
29172
|
|
|
28932
|
-
|
|
29173
|
+
Required Criteria: {`value`, `comparator`}.
|
|
28933
29174
|
* @remarks
|
|
28934
29175
|
* [Api set: ExcelApi 1.12]
|
|
28935
29176
|
*/
|
|
@@ -28937,7 +29178,7 @@ declare namespace Excel {
|
|
|
28937
29178
|
/**
|
|
28938
29179
|
* Less than or equal to comparator criterion.
|
|
28939
29180
|
|
|
28940
|
-
|
|
29181
|
+
Required Criteria: {`value`, `comparator`}.
|
|
28941
29182
|
* @remarks
|
|
28942
29183
|
* [Api set: ExcelApi 1.12]
|
|
28943
29184
|
*/
|
|
@@ -28945,8 +29186,8 @@ declare namespace Excel {
|
|
|
28945
29186
|
/**
|
|
28946
29187
|
* Between `lowerBound` and `upperBound` criteria.
|
|
28947
29188
|
|
|
28948
|
-
|
|
28949
|
-
|
|
29189
|
+
Required Criteria: {`value`, `lowerBound`, `upperBound`}.
|
|
29190
|
+
Optional Criteria: {`exclusive`}.
|
|
28950
29191
|
* @remarks
|
|
28951
29192
|
* [Api set: ExcelApi 1.12]
|
|
28952
29193
|
*/
|
|
@@ -28954,7 +29195,7 @@ declare namespace Excel {
|
|
|
28954
29195
|
/**
|
|
28955
29196
|
* In top N (`threshold`) [items, percent, sum] of value category.
|
|
28956
29197
|
|
|
28957
|
-
|
|
29198
|
+
Required Criteria: {`value`, `threshold`, `selectionType`}.
|
|
28958
29199
|
* @remarks
|
|
28959
29200
|
* [Api set: ExcelApi 1.12]
|
|
28960
29201
|
*/
|
|
@@ -28962,7 +29203,7 @@ declare namespace Excel {
|
|
|
28962
29203
|
/**
|
|
28963
29204
|
* In bottom N (`threshold`) [items, percent, sum] of value category.
|
|
28964
29205
|
|
|
28965
|
-
|
|
29206
|
+
Required Criteria: {`value`, `threshold`, `selectionType`}.
|
|
28966
29207
|
* @remarks
|
|
28967
29208
|
* [Api set: ExcelApi 1.12]
|
|
28968
29209
|
*/
|
|
@@ -32797,9 +33038,9 @@ declare namespace Excel {
|
|
|
32797
33038
|
/**
|
|
32798
33039
|
* Occurs when a left-clicked/tapped action happens in the worksheet. This event will not be fired when clicking in the following cases:
|
|
32799
33040
|
|
|
32800
|
-
|
|
33041
|
+
- The user drags the mouse for multi-selection.
|
|
32801
33042
|
|
|
32802
|
-
|
|
33043
|
+
- The user selects a cell in the mode when cell arguments are selected for formula references.
|
|
32803
33044
|
*
|
|
32804
33045
|
* @remarks
|
|
32805
33046
|
* [Api set: ExcelApi 1.10]
|
|
@@ -33773,10 +34014,10 @@ declare namespace Excel {
|
|
|
33773
34014
|
set(properties: Excel.Range): void;
|
|
33774
34015
|
/**
|
|
33775
34016
|
* Fills a range from the current range to the destination range using the specified AutoFill logic.
|
|
33776
|
-
|
|
33777
|
-
|
|
34017
|
+
The destination range can be `null` or can extend the source range either horizontally or vertically.
|
|
34018
|
+
Discontiguous ranges are not supported.
|
|
33778
34019
|
|
|
33779
|
-
|
|
34020
|
+
For more information, see {@link https://support.microsoft.com/office/2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
|
|
33780
34021
|
*
|
|
33781
34022
|
* @remarks
|
|
33782
34023
|
* [Api set: ExcelApi 1.9, ExcelApi Preview for null `destinationRange`]
|
|
@@ -33787,10 +34028,10 @@ declare namespace Excel {
|
|
|
33787
34028
|
autoFill(destinationRange?: Range | string, autoFillType?: Excel.AutoFillType): void;
|
|
33788
34029
|
/**
|
|
33789
34030
|
* Fills a range from the current range to the destination range using the specified AutoFill logic.
|
|
33790
|
-
|
|
33791
|
-
|
|
34031
|
+
The destination range can be `null` or can extend the source range either horizontally or vertically.
|
|
34032
|
+
Discontiguous ranges are not supported.
|
|
33792
34033
|
|
|
33793
|
-
|
|
34034
|
+
For more information, see {@link https://support.microsoft.com/office/2e79a709-c814-4b27-8bc2-c4dc84d49464 | Use AutoFill and Flash Fill}.
|
|
33794
34035
|
*
|
|
33795
34036
|
* @remarks
|
|
33796
34037
|
* [Api set: ExcelApi 1.9, ExcelApi Preview for null `destinationRange`]
|
|
@@ -33842,8 +34083,8 @@ declare namespace Excel {
|
|
|
33842
34083
|
*/
|
|
33843
34084
|
convertToLinkedDataType(serviceID: number, languageCulture: string): void;
|
|
33844
34085
|
/**
|
|
33845
|
-
* Copies cell data or formatting from the source range or `RangeAreas` to the current range.
|
|
33846
|
-
|
|
34086
|
+
* Copies cell data or formatting from the source range or `RangeAreas` to the current range. The destination range can be a different size than the source range or `RangeAreas`. The destination is expanded automatically if it's smaller than the source.
|
|
34087
|
+
Note: Like the copy functionality in the Excel UI, if the destination range is an exact multiple greater than the source range in either rows or columns, then the source content is replicated multiple times. For example, a 2x2 range copy into a 2x6 range will result in 3 copies of the original 2x2 range.
|
|
33847
34088
|
*
|
|
33848
34089
|
* @remarks
|
|
33849
34090
|
* [Api set: ExcelApi 1.9]
|
|
@@ -33855,8 +34096,8 @@ declare namespace Excel {
|
|
|
33855
34096
|
*/
|
|
33856
34097
|
copyFrom(sourceRange: Range | RangeAreas | string, copyType?: Excel.RangeCopyType, skipBlanks?: boolean, transpose?: boolean): void;
|
|
33857
34098
|
/**
|
|
33858
|
-
* Copies cell data or formatting from the source range or `RangeAreas` to the current range.
|
|
33859
|
-
|
|
34099
|
+
* Copies cell data or formatting from the source range or `RangeAreas` to the current range. The destination range can be a different size than the source range or `RangeAreas`. The destination is expanded automatically if it's smaller than the source.
|
|
34100
|
+
Note: Like the copy functionality in the Excel UI, if the destination range is an exact multiple greater than the source range in either rows or columns, then the source content is replicated multiple times. For example, a 2x2 range copy into a 2x6 range will result in 3 copies of the original 2x2 range.
|
|
33860
34101
|
*
|
|
33861
34102
|
* @remarks
|
|
33862
34103
|
* [Api set: ExcelApi 1.9]
|
|
@@ -38661,16 +38902,16 @@ declare namespace Excel {
|
|
|
38661
38902
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
38662
38903
|
* @beta
|
|
38663
38904
|
*/
|
|
38664
|
-
|
|
38665
|
-
|
|
38666
|
-
|
|
38905
|
+
getDataRange(): OfficeExtension.ClientResult<string>;
|
|
38906
|
+
/**
|
|
38907
|
+
* Gets the data source of the whole chart. If the data range is empty, then this method returns an object with its `isNullObject` property set to `true`.
|
|
38667
38908
|
For further information, see {@link https://docs.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties | *OrNullObject methods and properties}.
|
|
38668
|
-
|
|
38669
|
-
|
|
38670
|
-
|
|
38671
|
-
|
|
38672
|
-
|
|
38673
|
-
|
|
38909
|
+
*
|
|
38910
|
+
* @remarks
|
|
38911
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
38912
|
+
* @beta
|
|
38913
|
+
*/
|
|
38914
|
+
getDataRangeOrNullObject(): OfficeExtension.ClientResult<string>;
|
|
38674
38915
|
/**
|
|
38675
38916
|
* Gets the data table on the chart. If the chart doesn't allow a data table, it will throw an exception.
|
|
38676
38917
|
*
|
|
@@ -43334,7 +43575,7 @@ declare namespace Excel {
|
|
|
43334
43575
|
*/
|
|
43335
43576
|
date: string;
|
|
43336
43577
|
/**
|
|
43337
|
-
* How specific the date should be used to keep data. For example, if the date is 2005-04-02 and the
|
|
43578
|
+
* How specific the date should be used to keep data. For example, if the date is 2005-04-02 and the specificity is set to "month", the filter operation will keep all rows with a date in the month of April 2005.
|
|
43338
43579
|
*
|
|
43339
43580
|
* @remarks
|
|
43340
43581
|
* [Api set: ExcelApi 1.2]
|
|
@@ -43524,6 +43765,14 @@ declare namespace Excel {
|
|
|
43524
43765
|
class NumberFormatInfo extends OfficeExtension.ClientObject {
|
|
43525
43766
|
/** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
|
|
43526
43767
|
context: RequestContext;
|
|
43768
|
+
/**
|
|
43769
|
+
* Gets the currency symbol for currency values. This is based on current system settings.
|
|
43770
|
+
*
|
|
43771
|
+
* @remarks
|
|
43772
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
43773
|
+
* @beta
|
|
43774
|
+
*/
|
|
43775
|
+
readonly currencySymbol: string;
|
|
43527
43776
|
/**
|
|
43528
43777
|
* Gets the string used as the decimal separator for numeric values. This is based on current system settings.
|
|
43529
43778
|
*
|
|
@@ -44282,9 +44531,9 @@ declare namespace Excel {
|
|
|
44282
44531
|
/**
|
|
44283
44532
|
* The alt text description of the PivotTable.
|
|
44284
44533
|
|
|
44285
|
-
|
|
44286
|
-
|
|
44287
|
-
|
|
44534
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
44535
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
44536
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
44288
44537
|
*
|
|
44289
44538
|
* @remarks
|
|
44290
44539
|
* [Api set: ExcelApi 1.13]
|
|
@@ -44293,9 +44542,9 @@ declare namespace Excel {
|
|
|
44293
44542
|
/**
|
|
44294
44543
|
* The alt text title of the PivotTable.
|
|
44295
44544
|
|
|
44296
|
-
|
|
44297
|
-
|
|
44298
|
-
|
|
44545
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
44546
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
44547
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
44299
44548
|
*
|
|
44300
44549
|
* @remarks
|
|
44301
44550
|
* [Api set: ExcelApi 1.13]
|
|
@@ -45648,7 +45897,7 @@ declare namespace Excel {
|
|
|
45648
45897
|
descending = "Descending"
|
|
45649
45898
|
}
|
|
45650
45899
|
/**
|
|
45651
|
-
* Aggregation function for the
|
|
45900
|
+
* Aggregation function for the `DataPivotHierarchy`.
|
|
45652
45901
|
*
|
|
45653
45902
|
* @remarks
|
|
45654
45903
|
* [Api set: ExcelApi 1.8]
|
|
@@ -49625,7 +49874,7 @@ declare namespace Excel {
|
|
|
49625
49874
|
toJSON(): Excel.Interfaces.PageBreakCollectionData;
|
|
49626
49875
|
}
|
|
49627
49876
|
/**
|
|
49628
|
-
* Represents a collection of all the data connections that are part of the workbook
|
|
49877
|
+
* Represents a collection of all the data connections that are part of the workbook.
|
|
49629
49878
|
*
|
|
49630
49879
|
* @remarks
|
|
49631
49880
|
* [Api set: ExcelApi 1.7]
|
|
@@ -50034,7 +50283,7 @@ declare namespace Excel {
|
|
|
50034
50283
|
*
|
|
50035
50284
|
* @param assignee The assignee's user identity information.
|
|
50036
50285
|
*/
|
|
50037
|
-
assignTask(assignee: Excel.
|
|
50286
|
+
assignTask(assignee: Excel.EmailIdentity): Excel.DocumentTask;
|
|
50038
50287
|
/**
|
|
50039
50288
|
* Deletes the comment and all the connected replies.
|
|
50040
50289
|
*
|
|
@@ -50282,7 +50531,7 @@ declare namespace Excel {
|
|
|
50282
50531
|
*
|
|
50283
50532
|
* @param assignee The assignee's user identity information.
|
|
50284
50533
|
*/
|
|
50285
|
-
assignTask(assignee: Excel.
|
|
50534
|
+
assignTask(assignee: Excel.EmailIdentity): Excel.DocumentTask;
|
|
50286
50535
|
/**
|
|
50287
50536
|
* Deletes the comment reply.
|
|
50288
50537
|
*
|
|
@@ -63573,14 +63822,6 @@ declare namespace Excel {
|
|
|
63573
63822
|
}
|
|
63574
63823
|
/** An interface for updating data on the DocumentTask object, for use in `documentTask.set({ ... })`. */
|
|
63575
63824
|
interface DocumentTaskUpdateData {
|
|
63576
|
-
/**
|
|
63577
|
-
* Gets or sets the date and time the task is due.
|
|
63578
|
-
*
|
|
63579
|
-
* @remarks
|
|
63580
|
-
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
63581
|
-
* @beta
|
|
63582
|
-
*/
|
|
63583
|
-
dueDateTime?: Date;
|
|
63584
63825
|
/**
|
|
63585
63826
|
* Specifies the completion percentage of the task. This is a value between 0 and 100, where 100 represents a completed task.
|
|
63586
63827
|
*
|
|
@@ -63598,13 +63839,13 @@ declare namespace Excel {
|
|
|
63598
63839
|
*/
|
|
63599
63840
|
priority?: number;
|
|
63600
63841
|
/**
|
|
63601
|
-
* Gets or sets the date and time the task
|
|
63842
|
+
* Gets or sets the date and time the task should start and is due.
|
|
63602
63843
|
*
|
|
63603
63844
|
* @remarks
|
|
63604
63845
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
63605
63846
|
* @beta
|
|
63606
63847
|
*/
|
|
63607
|
-
|
|
63848
|
+
startAndDueDateTime?: Excel.DocumentTaskSchedule;
|
|
63608
63849
|
/**
|
|
63609
63850
|
* Specifies title of the task.
|
|
63610
63851
|
*
|
|
@@ -66608,9 +66849,9 @@ declare namespace Excel {
|
|
|
66608
66849
|
/**
|
|
66609
66850
|
* The alt text description of the PivotTable.
|
|
66610
66851
|
|
|
66611
|
-
|
|
66612
|
-
|
|
66613
|
-
|
|
66852
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
66853
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
66854
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
66614
66855
|
*
|
|
66615
66856
|
* @remarks
|
|
66616
66857
|
* [Api set: ExcelApi 1.13]
|
|
@@ -66619,9 +66860,9 @@ declare namespace Excel {
|
|
|
66619
66860
|
/**
|
|
66620
66861
|
* The alt text title of the PivotTable.
|
|
66621
66862
|
|
|
66622
|
-
|
|
66623
|
-
|
|
66624
|
-
|
|
66863
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
66864
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
66865
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
66625
66866
|
*
|
|
66626
66867
|
* @remarks
|
|
66627
66868
|
* [Api set: ExcelApi 1.13]
|
|
@@ -68608,7 +68849,7 @@ declare namespace Excel {
|
|
|
68608
68849
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
68609
68850
|
* @beta
|
|
68610
68851
|
*/
|
|
68611
|
-
assignee?: Excel.
|
|
68852
|
+
assignee?: Excel.EmailIdentity;
|
|
68612
68853
|
/**
|
|
68613
68854
|
* Represents the identity of the user who made the task change.
|
|
68614
68855
|
*
|
|
@@ -68616,7 +68857,7 @@ declare namespace Excel {
|
|
|
68616
68857
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
68617
68858
|
* @beta
|
|
68618
68859
|
*/
|
|
68619
|
-
changedBy?: Excel.
|
|
68860
|
+
changedBy?: Excel.EmailIdentity;
|
|
68620
68861
|
/**
|
|
68621
68862
|
* Represents the ID of the `Comment` or `CommentReply` to which the task change is anchored.
|
|
68622
68863
|
*
|
|
@@ -68715,7 +68956,7 @@ declare namespace Excel {
|
|
|
68715
68956
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
68716
68957
|
* @beta
|
|
68717
68958
|
*/
|
|
68718
|
-
assignees?: Excel.
|
|
68959
|
+
assignees?: Excel.EmailIdentity[];
|
|
68719
68960
|
/**
|
|
68720
68961
|
* Gets the most recent user to have completed the task.
|
|
68721
68962
|
*
|
|
@@ -68723,7 +68964,7 @@ declare namespace Excel {
|
|
|
68723
68964
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
68724
68965
|
* @beta
|
|
68725
68966
|
*/
|
|
68726
|
-
completedBy?: Excel.
|
|
68967
|
+
completedBy?: Excel.EmailIdentity;
|
|
68727
68968
|
/**
|
|
68728
68969
|
* Gets the date and time that the task was completed. All dates are in UTC.
|
|
68729
68970
|
*
|
|
@@ -68739,7 +68980,7 @@ declare namespace Excel {
|
|
|
68739
68980
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
68740
68981
|
* @beta
|
|
68741
68982
|
*/
|
|
68742
|
-
createdBy?: Excel.
|
|
68983
|
+
createdBy?: Excel.EmailIdentity;
|
|
68743
68984
|
/**
|
|
68744
68985
|
* Gets the date and time that the task was created. All dates are in UTC.
|
|
68745
68986
|
*
|
|
@@ -68748,14 +68989,6 @@ declare namespace Excel {
|
|
|
68748
68989
|
* @beta
|
|
68749
68990
|
*/
|
|
68750
68991
|
createdDateTime?: Date;
|
|
68751
|
-
/**
|
|
68752
|
-
* Gets or sets the date and time the task is due.
|
|
68753
|
-
*
|
|
68754
|
-
* @remarks
|
|
68755
|
-
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
68756
|
-
* @beta
|
|
68757
|
-
*/
|
|
68758
|
-
dueDateTime?: Date;
|
|
68759
68992
|
/**
|
|
68760
68993
|
* Gets the ID of the task.
|
|
68761
68994
|
*
|
|
@@ -68781,13 +69014,13 @@ declare namespace Excel {
|
|
|
68781
69014
|
*/
|
|
68782
69015
|
priority?: number;
|
|
68783
69016
|
/**
|
|
68784
|
-
* Gets or sets the date and time the task
|
|
69017
|
+
* Gets or sets the date and time the task should start and is due.
|
|
68785
69018
|
*
|
|
68786
69019
|
* @remarks
|
|
68787
69020
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
68788
69021
|
* @beta
|
|
68789
69022
|
*/
|
|
68790
|
-
|
|
69023
|
+
startAndDueDateTime?: Excel.DocumentTaskSchedule;
|
|
68791
69024
|
/**
|
|
68792
69025
|
* Specifies title of the task.
|
|
68793
69026
|
*
|
|
@@ -72833,6 +73066,14 @@ declare namespace Excel {
|
|
|
72833
73066
|
}
|
|
72834
73067
|
/** An interface describing the data returned by calling `numberFormatInfo.toJSON()`. */
|
|
72835
73068
|
interface NumberFormatInfoData {
|
|
73069
|
+
/**
|
|
73070
|
+
* Gets the currency symbol for currency values. This is based on current system settings.
|
|
73071
|
+
*
|
|
73072
|
+
* @remarks
|
|
73073
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
73074
|
+
* @beta
|
|
73075
|
+
*/
|
|
73076
|
+
currencySymbol?: string;
|
|
72836
73077
|
/**
|
|
72837
73078
|
* Gets the string used as the decimal separator for numeric values. This is based on current system settings.
|
|
72838
73079
|
*
|
|
@@ -73012,9 +73253,9 @@ declare namespace Excel {
|
|
|
73012
73253
|
/**
|
|
73013
73254
|
* The alt text description of the PivotTable.
|
|
73014
73255
|
|
|
73015
|
-
|
|
73016
|
-
|
|
73017
|
-
|
|
73256
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
73257
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
73258
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
73018
73259
|
*
|
|
73019
73260
|
* @remarks
|
|
73020
73261
|
* [Api set: ExcelApi 1.13]
|
|
@@ -73023,9 +73264,9 @@ declare namespace Excel {
|
|
|
73023
73264
|
/**
|
|
73024
73265
|
* The alt text title of the PivotTable.
|
|
73025
73266
|
|
|
73026
|
-
|
|
73027
|
-
|
|
73028
|
-
|
|
73267
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
73268
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
73269
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
73029
73270
|
*
|
|
73030
73271
|
* @remarks
|
|
73031
73272
|
* [Api set: ExcelApi 1.13]
|
|
@@ -75960,14 +76201,6 @@ declare namespace Excel {
|
|
|
75960
76201
|
* @beta
|
|
75961
76202
|
*/
|
|
75962
76203
|
createdDateTime?: boolean;
|
|
75963
|
-
/**
|
|
75964
|
-
* Gets or sets the date and time the task is due.
|
|
75965
|
-
*
|
|
75966
|
-
* @remarks
|
|
75967
|
-
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
75968
|
-
* @beta
|
|
75969
|
-
*/
|
|
75970
|
-
dueDateTime?: boolean;
|
|
75971
76204
|
/**
|
|
75972
76205
|
* Gets the ID of the task.
|
|
75973
76206
|
*
|
|
@@ -75993,13 +76226,13 @@ declare namespace Excel {
|
|
|
75993
76226
|
*/
|
|
75994
76227
|
priority?: boolean;
|
|
75995
76228
|
/**
|
|
75996
|
-
* Gets or sets the date and time the task
|
|
76229
|
+
* Gets or sets the date and time the task should start and is due.
|
|
75997
76230
|
*
|
|
75998
76231
|
* @remarks
|
|
75999
76232
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
76000
76233
|
* @beta
|
|
76001
76234
|
*/
|
|
76002
|
-
|
|
76235
|
+
startAndDueDateTime?: boolean;
|
|
76003
76236
|
/**
|
|
76004
76237
|
* Specifies title of the task.
|
|
76005
76238
|
*
|
|
@@ -76069,14 +76302,6 @@ declare namespace Excel {
|
|
|
76069
76302
|
* @beta
|
|
76070
76303
|
*/
|
|
76071
76304
|
createdDateTime?: boolean;
|
|
76072
|
-
/**
|
|
76073
|
-
* For EACH ITEM in the collection: Gets or sets the date and time the task is due.
|
|
76074
|
-
*
|
|
76075
|
-
* @remarks
|
|
76076
|
-
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
76077
|
-
* @beta
|
|
76078
|
-
*/
|
|
76079
|
-
dueDateTime?: boolean;
|
|
76080
76305
|
/**
|
|
76081
76306
|
* For EACH ITEM in the collection: Gets the ID of the task.
|
|
76082
76307
|
*
|
|
@@ -76102,13 +76327,13 @@ declare namespace Excel {
|
|
|
76102
76327
|
*/
|
|
76103
76328
|
priority?: boolean;
|
|
76104
76329
|
/**
|
|
76105
|
-
* For EACH ITEM in the collection: Gets or sets the date and time the task
|
|
76330
|
+
* For EACH ITEM in the collection: Gets or sets the date and time the task should start and is due.
|
|
76106
76331
|
*
|
|
76107
76332
|
* @remarks
|
|
76108
76333
|
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
76109
76334
|
* @beta
|
|
76110
76335
|
*/
|
|
76111
|
-
|
|
76336
|
+
startAndDueDateTime?: boolean;
|
|
76112
76337
|
/**
|
|
76113
76338
|
* For EACH ITEM in the collection: Specifies title of the task.
|
|
76114
76339
|
*
|
|
@@ -82117,6 +82342,14 @@ declare namespace Excel {
|
|
|
82117
82342
|
Specifying `$all` for the LoadOptions loads all the scalar properties (e.g.: `Range.address`) but not the navigational properties (e.g.: `Range.format.fill.color`).
|
|
82118
82343
|
*/
|
|
82119
82344
|
$all?: boolean;
|
|
82345
|
+
/**
|
|
82346
|
+
* Gets the currency symbol for currency values. This is based on current system settings.
|
|
82347
|
+
*
|
|
82348
|
+
* @remarks
|
|
82349
|
+
* [Api set: ExcelApi BETA (PREVIEW ONLY)]
|
|
82350
|
+
* @beta
|
|
82351
|
+
*/
|
|
82352
|
+
currencySymbol?: boolean;
|
|
82120
82353
|
/**
|
|
82121
82354
|
* Gets the string used as the decimal separator for numeric values. This is based on current system settings.
|
|
82122
82355
|
*
|
|
@@ -82486,9 +82719,9 @@ declare namespace Excel {
|
|
|
82486
82719
|
/**
|
|
82487
82720
|
* The alt text description of the PivotTable.
|
|
82488
82721
|
|
|
82489
|
-
|
|
82490
|
-
|
|
82491
|
-
|
|
82722
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
82723
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
82724
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
82492
82725
|
*
|
|
82493
82726
|
* @remarks
|
|
82494
82727
|
* [Api set: ExcelApi 1.13]
|
|
@@ -82497,9 +82730,9 @@ declare namespace Excel {
|
|
|
82497
82730
|
/**
|
|
82498
82731
|
* The alt text title of the PivotTable.
|
|
82499
82732
|
|
|
82500
|
-
|
|
82501
|
-
|
|
82502
|
-
|
|
82733
|
+
Alt text provides alternative, text-based representations of the information contained in the PivotTable.
|
|
82734
|
+
This information is useful for people with vision or cognitive impairments who may not be able to see or understand the table.
|
|
82735
|
+
A title can be read to a person with a disability and is used to determine whether they wish to hear the description of the content.
|
|
82503
82736
|
*
|
|
82504
82737
|
* @remarks
|
|
82505
82738
|
* [Api set: ExcelApi 1.13]
|
|
@@ -118215,7 +118448,7 @@ declare namespace PowerPoint {
|
|
|
118215
118448
|
* @remarks
|
|
118216
118449
|
* [Api set: PowerPointApi 1.3]
|
|
118217
118450
|
*
|
|
118218
|
-
* @param key The ID of the tag.
|
|
118451
|
+
* @param key The ID of the tag. The `key` parameter is case-sensitive.
|
|
118219
118452
|
* @returns The tag with the unique ID. If such a tag does not exist, an error is thrown.
|
|
118220
118453
|
*/
|
|
118221
118454
|
getItem(key: string): PowerPoint.Tag;
|
|
@@ -118235,7 +118468,7 @@ declare namespace PowerPoint {
|
|
|
118235
118468
|
* @remarks
|
|
118236
118469
|
* [Api set: PowerPointApi 1.3]
|
|
118237
118470
|
*
|
|
118238
|
-
* @param key The ID of the tag.
|
|
118471
|
+
* @param key The ID of the tag. The `key` parameter is case-sensitive.
|
|
118239
118472
|
* @returns The tag with the unique ID. If such a tag does not exist, an object with an `isNullObject` property set to true is returned.
|
|
118240
118473
|
*/
|
|
118241
118474
|
getItemOrNullObject(key: string): PowerPoint.Tag;
|
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.377",
|
|
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": "7176c843b8384af543ec345483b02f476b1303b35766ab426e6f2c7867efed34",
|
|
49
49
|
"typeScriptVersion": "4.2"
|
|
50
50
|
}
|