@types/office-js 1.0.535 → 1.0.536

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.
Files changed (3) hide show
  1. office-js/README.md +1 -1
  2. office-js/index.d.ts +109 -129
  3. 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: Tue, 16 Sep 2025 02:07:17 GMT
11
+ * Last updated: Wed, 17 Sep 2025 18:02:44 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
office-js/index.d.ts CHANGED
@@ -25205,8 +25205,6 @@ declare namespace Excel {
25205
25205
  tooManyCells = "TooManyCells",
25206
25206
  /**
25207
25207
  * An error caused by a cell's formula evaluating to a lambda value. Displays as error type #CALC! in Excel.
25208
- *
25209
- * Warning: `lambdaInCell` was deprecated in ExcelApi 1.19.
25210
25208
  *
25211
25209
  * @deprecated Deprecated since ExcelApi 1.19.
25212
25210
  *
@@ -33976,7 +33974,7 @@ declare namespace Excel {
33976
33974
  */
33977
33975
  interface ChangedEventDetail {
33978
33976
  /**
33979
- * Represents the value after the change. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
33977
+ * Represents the value after the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
33980
33978
  *
33981
33979
  * @remarks
33982
33980
  * [Api set: ExcelApi 1.9]
@@ -33999,7 +33997,7 @@ declare namespace Excel {
33999
33997
  */
34000
33998
  valueAsJsonBefore: CellValue;
34001
33999
  /**
34002
- * Represents the value before the change. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
34000
+ * Represents the value before the change. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
34003
34001
  *
34004
34002
  * @remarks
34005
34003
  * [Api set: ExcelApi 1.9]
@@ -35636,7 +35634,7 @@ declare namespace Excel {
35636
35634
  getActiveChartOrNullObject(): Excel.Chart;
35637
35635
  /**
35638
35636
  * Gets the active shape in the workbook.
35639
- Throws an `ItemNotFound` if there is no active shape.
35637
+ Throws an `ItemNotFound` error if there is no active shape.
35640
35638
  *
35641
35639
  * @remarks
35642
35640
  * [Api set: ExcelApi 1.19]
@@ -37321,7 +37319,7 @@ declare namespace Excel {
37321
37319
  */
37322
37320
  readonly valueTypes: Excel.RangeValueType[][];
37323
37321
  /**
37324
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
37322
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
37325
37323
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
37326
37324
  *
37327
37325
  * @remarks
@@ -37330,7 +37328,7 @@ declare namespace Excel {
37330
37328
  values: any[][];
37331
37329
  /**
37332
37330
  * A JSON representation of the values in the cells in this range.
37333
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
37331
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
37334
37332
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
37335
37333
  *
37336
37334
  * @remarks
@@ -37339,7 +37337,7 @@ declare namespace Excel {
37339
37337
  valuesAsJson: CellValue[][];
37340
37338
  /**
37341
37339
  * A JSON representation of the values in the cells in this range.
37342
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
37340
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
37343
37341
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
37344
37342
  *
37345
37343
  * @remarks
@@ -39235,7 +39233,7 @@ declare namespace Excel {
39235
39233
  */
39236
39234
  readonly valueTypes: Excel.RangeValueType[][];
39237
39235
  /**
39238
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
39236
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
39239
39237
  *
39240
39238
  * @remarks
39241
39239
  * [Api set: ExcelApi 1.3]
@@ -39243,7 +39241,7 @@ declare namespace Excel {
39243
39241
  values: any[][];
39244
39242
  /**
39245
39243
  * A JSON representation of the values in the cells in this range.
39246
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39244
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39247
39245
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
39248
39246
  *
39249
39247
  * @remarks
@@ -39252,7 +39250,7 @@ declare namespace Excel {
39252
39250
  valuesAsJson: CellValue[][];
39253
39251
  /**
39254
39252
  * A JSON representation of the values in the cells in this range.
39255
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39253
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39256
39254
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
39257
39255
  *
39258
39256
  * @remarks
@@ -39661,7 +39659,7 @@ declare namespace Excel {
39661
39659
  readonly value: any;
39662
39660
  /**
39663
39661
  * A JSON representation of the values in this named item.
39664
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39662
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39665
39663
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
39666
39664
  *
39667
39665
  * @remarks
@@ -39670,7 +39668,7 @@ declare namespace Excel {
39670
39668
  readonly valueAsJson: CellValue | string;
39671
39669
  /**
39672
39670
  * A JSON representation of the values in this named item.
39673
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39671
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39674
39672
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
39675
39673
  *
39676
39674
  * @remarks
@@ -39767,7 +39765,7 @@ declare namespace Excel {
39767
39765
  readonly values: any[][];
39768
39766
  /**
39769
39767
  * A JSON representation of the values in this named item array.
39770
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39768
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39771
39769
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItemArrayValues.valuesAsJsonLocal`.
39772
39770
  *
39773
39771
  * @remarks
@@ -39776,7 +39774,7 @@ declare namespace Excel {
39776
39774
  readonly valuesAsJson: CellValue[][];
39777
39775
  /**
39778
39776
  * A JSON representation of the values in this named item array.
39779
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
39777
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
39780
39778
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItemArrayValues.valuesAsJson`.
39781
39779
  *
39782
39780
  * @remarks
@@ -40079,7 +40077,7 @@ declare namespace Excel {
40079
40077
  * [Api set: ExcelApi 1.1]
40080
40078
  *
40081
40079
  * @param address A `Range` object, or a string address or name of the range representing the data source. If the address does not contain a sheet name, the currently-active sheet is used. [Api set: ExcelApi 1.1 / 1.3. Prior to ExcelApi 1.3, this parameter must be a string. Starting with Excel Api 1.3, this parameter may be a Range object or a string.]
40082
- * @param hasHeaders A boolean value that indicates whether the data being imported has column labels. If the source does not contain headers (i.e., when this property set to `false`), Excel will automatically generate a header and shift the data down by one row.
40080
+ * @param hasHeaders A Boolean value that indicates whether the data being imported has column labels. If the source does not contain headers (i.e., when this property set to `false`), Excel will automatically generate a header and shift the data down by one row.
40083
40081
  */
40084
40082
  add(address: Range | string, hasHeaders: boolean): Excel.Table;
40085
40083
  /**
@@ -40619,7 +40617,7 @@ declare namespace Excel {
40619
40617
  */
40620
40618
  name: string;
40621
40619
  /**
40622
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
40620
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
40623
40621
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
40624
40622
  *
40625
40623
  * @remarks
@@ -40628,7 +40626,7 @@ declare namespace Excel {
40628
40626
  values: any[][];
40629
40627
  /**
40630
40628
  * A JSON representation of the values in the cells in this table column.
40631
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40629
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40632
40630
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
40633
40631
  *
40634
40632
  * @remarks
@@ -40637,7 +40635,7 @@ declare namespace Excel {
40637
40635
  valuesAsJson: CellValue[][];
40638
40636
  /**
40639
40637
  * A JSON representation of the values in the cells in this table column.
40640
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40638
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40641
40639
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
40642
40640
  *
40643
40641
  * @remarks
@@ -40859,7 +40857,7 @@ declare namespace Excel {
40859
40857
  */
40860
40858
  readonly index: number;
40861
40859
  /**
40862
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
40860
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
40863
40861
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
40864
40862
  *
40865
40863
  * @remarks
@@ -40868,7 +40866,7 @@ declare namespace Excel {
40868
40866
  values: any[][];
40869
40867
  /**
40870
40868
  * A JSON representation of the values in the cells in this table row.
40871
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40869
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40872
40870
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
40873
40871
  *
40874
40872
  * @remarks
@@ -40877,7 +40875,7 @@ declare namespace Excel {
40877
40875
  valuesAsJson: CellValue[][];
40878
40876
  /**
40879
40877
  * A JSON representation of the values in the cells in this table row.
40880
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
40878
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
40881
40879
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
40882
40880
  *
40883
40881
  * @remarks
@@ -41233,7 +41231,7 @@ declare namespace Excel {
41233
41231
  inCellDropDown: boolean;
41234
41232
  /**
41235
41233
  * Source of the list for data validation
41236
- When setting the value, it can be passed in as a `Range` object, or a string that contains a comma-separated number, boolean, or date.
41234
+ When setting the value, it can be passed in as a `Range` object, or a string that contains a comma-separated number, Boolean, or date.
41237
41235
  *
41238
41236
  * @remarks
41239
41237
  * [Api set: ExcelApi 1.8]
@@ -45361,7 +45359,7 @@ declare namespace Excel {
45361
45359
  */
45362
45360
  position: Excel.ChartTitlePosition | "Automatic" | "Top" | "Bottom" | "Left" | "Right";
45363
45361
  /**
45364
- * Represents a boolean value that determines if the chart title has a shadow.
45362
+ * Represents a Boolean value that determines if the chart title has a shadow.
45365
45363
  *
45366
45364
  * @remarks
45367
45365
  * [Api set: ExcelApi 1.7]
@@ -49696,7 +49694,7 @@ declare namespace Excel {
49696
49694
  */
49697
49695
  readonly key: string;
49698
49696
  /**
49699
- * Gets or sets the value of the custom property.
49697
+ * Specifies the value of the custom property.
49700
49698
  *
49701
49699
  * @remarks
49702
49700
  * [Api set: ExcelApi 1.12]
@@ -53322,14 +53320,14 @@ declare namespace Excel {
53322
53320
  */
53323
53321
  state: Excel.HeaderFooterState | "Default" | "FirstAndDefault" | "OddAndEven" | "FirstOddAndEven";
53324
53322
  /**
53325
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
53323
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
53326
53324
  *
53327
53325
  * @remarks
53328
53326
  * [Api set: ExcelApi 1.9]
53329
53327
  */
53330
53328
  useSheetMargins: boolean;
53331
53329
  /**
53332
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
53330
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
53333
53331
  *
53334
53332
  * @remarks
53335
53333
  * [Api set: ExcelApi 1.9]
@@ -60776,24 +60774,6 @@ declare namespace Excel {
60776
60774
  * [Api set: ExcelApi 1.7]
60777
60775
  */
60778
60776
  commentChanged = "CommentChanged",
60779
- /**
60780
- * `RefreshRequestCompleted` represents the type of event registered on a `LinkedDataType` and occurs when a request to refresh a data source is completed.
60781
- * @remarks
60782
- * [Api set: ExcelApi 1.7]
60783
- */
60784
- linkedDataTypeRefreshRequestCompleted = "LinkedDataTypeRefreshRequestCompleted",
60785
- /**
60786
- * `RefreshModeChanged` represents the type of event registered on a `LinkedDataType` and occurs when the linked data type refresh mode is changed.
60787
- * @remarks
60788
- * [Api set: ExcelApi 1.7]
60789
- */
60790
- linkedDataTypeRefreshModeChanged = "LinkedDataTypeRefreshModeChanged",
60791
- /**
60792
- * `LinkedDataTypeAdded` represents the type of event registered on a `LinkedDataType` and occurs when a new linked data type is added to the workbook.
60793
- * @remarks
60794
- * [Api set: ExcelApi 1.7]
60795
- */
60796
- linkedDataTypeLinkedDataTypeAdded = "LinkedDataTypeLinkedDataTypeAdded",
60797
60777
  /**
60798
60778
  * `WorksheetFormulaChanged` represents the type of event registered on a worksheet and occurs when a formula is changed.
60799
60779
  * @remarks
@@ -62845,7 +62825,7 @@ declare namespace Excel {
62845
62825
  */
62846
62826
  enum SpecialCellValueType {
62847
62827
  /**
62848
- * Cells that have errors, boolean, numeric, or string values.
62828
+ * Cells that have errors, Boolean, numeric, or string values.
62849
62829
  * @remarks
62850
62830
  * [Api set: ExcelApi 1.9]
62851
62831
  */
@@ -62857,7 +62837,7 @@ declare namespace Excel {
62857
62837
  */
62858
62838
  errors = "Errors",
62859
62839
  /**
62860
- * Cells that have errors or boolean values.
62840
+ * Cells that have errors or Boolean values.
62861
62841
  * @remarks
62862
62842
  * [Api set: ExcelApi 1.9]
62863
62843
  */
@@ -62875,13 +62855,13 @@ declare namespace Excel {
62875
62855
  */
62876
62856
  errorsText = "ErrorsText",
62877
62857
  /**
62878
- * Cells that have errors, boolean, or numeric values.
62858
+ * Cells that have errors, Boolean, or numeric values.
62879
62859
  * @remarks
62880
62860
  * [Api set: ExcelApi 1.9]
62881
62861
  */
62882
62862
  errorsLogicalNumber = "ErrorsLogicalNumber",
62883
62863
  /**
62884
- * Cells that have errors, boolean, or string values.
62864
+ * Cells that have errors, Boolean, or string values.
62885
62865
  * @remarks
62886
62866
  * [Api set: ExcelApi 1.9]
62887
62867
  */
@@ -62893,25 +62873,25 @@ declare namespace Excel {
62893
62873
  */
62894
62874
  errorsNumberText = "ErrorsNumberText",
62895
62875
  /**
62896
- * Cells that have a boolean value.
62876
+ * Cells that have a Boolean value.
62897
62877
  * @remarks
62898
62878
  * [Api set: ExcelApi 1.9]
62899
62879
  */
62900
62880
  logical = "Logical",
62901
62881
  /**
62902
- * Cells that have a boolean or numeric value.
62882
+ * Cells that have a Boolean or numeric value.
62903
62883
  * @remarks
62904
62884
  * [Api set: ExcelApi 1.9]
62905
62885
  */
62906
62886
  logicalNumbers = "LogicalNumbers",
62907
62887
  /**
62908
- * Cells that have a boolean or string value.
62888
+ * Cells that have a Boolean or string value.
62909
62889
  * @remarks
62910
62890
  * [Api set: ExcelApi 1.9]
62911
62891
  */
62912
62892
  logicalText = "LogicalText",
62913
62893
  /**
62914
- * Cells that have a boolean, numeric, or string value.
62894
+ * Cells that have a Boolean, numeric, or string value.
62915
62895
  * @remarks
62916
62896
  * [Api set: ExcelApi 1.9]
62917
62897
  */
@@ -63510,7 +63490,7 @@ declare namespace Excel {
63510
63490
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
63511
63491
  context: RequestContext;
63512
63492
  /**
63513
- * Gets or sets the name of the sheet view.
63493
+ * Specifies the name of the sheet view.
63514
63494
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
63515
63495
  *
63516
63496
  * @remarks
@@ -67996,7 +67976,7 @@ declare namespace Excel {
67996
67976
  */
67997
67977
  style?: string;
67998
67978
  /**
67999
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
67979
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
68000
67980
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
68001
67981
  *
68002
67982
  * @remarks
@@ -68005,7 +67985,7 @@ declare namespace Excel {
68005
67985
  values?: any[][];
68006
67986
  /**
68007
67987
  * A JSON representation of the values in the cells in this range.
68008
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
67988
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68009
67989
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
68010
67990
  *
68011
67991
  * @remarks
@@ -68014,7 +67994,7 @@ declare namespace Excel {
68014
67994
  valuesAsJson?: CellValue[][];
68015
67995
  /**
68016
67996
  * A JSON representation of the values in the cells in this range.
68017
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
67997
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68018
67998
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
68019
67999
  *
68020
68000
  * @remarks
@@ -68079,7 +68059,7 @@ declare namespace Excel {
68079
68059
  */
68080
68060
  numberFormat?: any[][];
68081
68061
  /**
68082
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
68062
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
68083
68063
  *
68084
68064
  * @remarks
68085
68065
  * [Api set: ExcelApi 1.3]
@@ -68087,7 +68067,7 @@ declare namespace Excel {
68087
68067
  values?: any[][];
68088
68068
  /**
68089
68069
  * A JSON representation of the values in the cells in this range.
68090
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68070
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68091
68071
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
68092
68072
  *
68093
68073
  * @remarks
@@ -68096,7 +68076,7 @@ declare namespace Excel {
68096
68076
  valuesAsJson?: CellValue[][];
68097
68077
  /**
68098
68078
  * A JSON representation of the values in the cells in this range.
68099
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68079
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68100
68080
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
68101
68081
  *
68102
68082
  * @remarks
@@ -68244,7 +68224,7 @@ declare namespace Excel {
68244
68224
  */
68245
68225
  name?: string;
68246
68226
  /**
68247
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
68227
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
68248
68228
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
68249
68229
  *
68250
68230
  * @remarks
@@ -68253,7 +68233,7 @@ declare namespace Excel {
68253
68233
  values?: any[][];
68254
68234
  /**
68255
68235
  * A JSON representation of the values in the cells in this table column.
68256
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68236
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68257
68237
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
68258
68238
  *
68259
68239
  * @remarks
@@ -68262,7 +68242,7 @@ declare namespace Excel {
68262
68242
  valuesAsJson?: CellValue[][];
68263
68243
  /**
68264
68244
  * A JSON representation of the values in the cells in this table column.
68265
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68245
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68266
68246
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
68267
68247
  *
68268
68248
  * @remarks
@@ -68277,7 +68257,7 @@ declare namespace Excel {
68277
68257
  /** An interface for updating data on the `TableRow` object, for use in `tableRow.set({ ... })`. */
68278
68258
  interface TableRowUpdateData {
68279
68259
  /**
68280
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
68260
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
68281
68261
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
68282
68262
  *
68283
68263
  * @remarks
@@ -68286,7 +68266,7 @@ declare namespace Excel {
68286
68266
  values?: any[][];
68287
68267
  /**
68288
68268
  * A JSON representation of the values in the cells in this table row.
68289
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68269
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68290
68270
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
68291
68271
  *
68292
68272
  * @remarks
@@ -68295,7 +68275,7 @@ declare namespace Excel {
68295
68275
  valuesAsJson?: CellValue[][];
68296
68276
  /**
68297
68277
  * A JSON representation of the values in the cells in this table row.
68298
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
68278
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
68299
68279
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
68300
68280
  *
68301
68281
  * @remarks
@@ -70177,7 +70157,7 @@ declare namespace Excel {
70177
70157
  */
70178
70158
  position?: Excel.ChartTitlePosition | "Automatic" | "Top" | "Bottom" | "Left" | "Right";
70179
70159
  /**
70180
- * Represents a boolean value that determines if the chart title has a shadow.
70160
+ * Represents a Boolean value that determines if the chart title has a shadow.
70181
70161
  *
70182
70162
  * @remarks
70183
70163
  * [Api set: ExcelApi 1.7]
@@ -71050,7 +71030,7 @@ declare namespace Excel {
71050
71030
  /** An interface for updating data on the `WorksheetCustomProperty` object, for use in `worksheetCustomProperty.set({ ... })`. */
71051
71031
  interface WorksheetCustomPropertyUpdateData {
71052
71032
  /**
71053
- * Gets or sets the value of the custom property.
71033
+ * Specifies the value of the custom property.
71054
71034
  *
71055
71035
  * @remarks
71056
71036
  * [Api set: ExcelApi 1.12]
@@ -72124,14 +72104,14 @@ declare namespace Excel {
72124
72104
  */
72125
72105
  state?: Excel.HeaderFooterState | "Default" | "FirstAndDefault" | "OddAndEven" | "FirstOddAndEven";
72126
72106
  /**
72127
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
72107
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
72128
72108
  *
72129
72109
  * @remarks
72130
72110
  * [Api set: ExcelApi 1.9]
72131
72111
  */
72132
72112
  useSheetMargins?: boolean;
72133
72113
  /**
72134
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
72114
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
72135
72115
  *
72136
72116
  * @remarks
72137
72117
  * [Api set: ExcelApi 1.9]
@@ -72665,7 +72645,7 @@ declare namespace Excel {
72665
72645
  /** An interface for updating data on the `NamedSheetView` object, for use in `namedSheetView.set({ ... })`. */
72666
72646
  interface NamedSheetViewUpdateData {
72667
72647
  /**
72668
- * Gets or sets the name of the sheet view.
72648
+ * Specifies the name of the sheet view.
72669
72649
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
72670
72650
  *
72671
72651
  * @remarks
@@ -73583,7 +73563,7 @@ declare namespace Excel {
73583
73563
  */
73584
73564
  valueTypes?: Excel.RangeValueType[][];
73585
73565
  /**
73586
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
73566
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
73587
73567
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
73588
73568
  *
73589
73569
  * @remarks
@@ -73592,7 +73572,7 @@ declare namespace Excel {
73592
73572
  values?: any[][];
73593
73573
  /**
73594
73574
  * A JSON representation of the values in the cells in this range.
73595
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73575
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73596
73576
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
73597
73577
  *
73598
73578
  * @remarks
@@ -73601,7 +73581,7 @@ declare namespace Excel {
73601
73581
  valuesAsJson?: CellValue[][];
73602
73582
  /**
73603
73583
  * A JSON representation of the values in the cells in this range.
73604
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73584
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73605
73585
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
73606
73586
  *
73607
73587
  * @remarks
@@ -73802,7 +73782,7 @@ declare namespace Excel {
73802
73782
  */
73803
73783
  valueTypes?: Excel.RangeValueType[][];
73804
73784
  /**
73805
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
73785
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
73806
73786
  *
73807
73787
  * @remarks
73808
73788
  * [Api set: ExcelApi 1.3]
@@ -73810,7 +73790,7 @@ declare namespace Excel {
73810
73790
  values?: any[][];
73811
73791
  /**
73812
73792
  * A JSON representation of the values in the cells in this range.
73813
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73793
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73814
73794
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
73815
73795
  *
73816
73796
  * @remarks
@@ -73819,7 +73799,7 @@ declare namespace Excel {
73819
73799
  valuesAsJson?: CellValue[][];
73820
73800
  /**
73821
73801
  * A JSON representation of the values in the cells in this range.
73822
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73802
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73823
73803
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
73824
73804
  *
73825
73805
  * @remarks
@@ -73910,7 +73890,7 @@ declare namespace Excel {
73910
73890
  value?: any;
73911
73891
  /**
73912
73892
  * A JSON representation of the values in this named item.
73913
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73893
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73914
73894
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
73915
73895
  *
73916
73896
  * @remarks
@@ -73919,7 +73899,7 @@ declare namespace Excel {
73919
73899
  valueAsJson?: CellValue | string;
73920
73900
  /**
73921
73901
  * A JSON representation of the values in this named item.
73922
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73902
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73923
73903
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
73924
73904
  *
73925
73905
  * @remarks
@@ -73952,7 +73932,7 @@ declare namespace Excel {
73952
73932
  values?: any[][];
73953
73933
  /**
73954
73934
  * A JSON representation of the values in this named item array.
73955
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73935
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73956
73936
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItemArrayValues.valuesAsJsonLocal`.
73957
73937
  *
73958
73938
  * @remarks
@@ -73961,7 +73941,7 @@ declare namespace Excel {
73961
73941
  valuesAsJson?: CellValue[][];
73962
73942
  /**
73963
73943
  * A JSON representation of the values in this named item array.
73964
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
73944
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
73965
73945
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItemArrayValues.valuesAsJson`.
73966
73946
  *
73967
73947
  * @remarks
@@ -74143,7 +74123,7 @@ declare namespace Excel {
74143
74123
  */
74144
74124
  name?: string;
74145
74125
  /**
74146
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
74126
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
74147
74127
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
74148
74128
  *
74149
74129
  * @remarks
@@ -74152,7 +74132,7 @@ declare namespace Excel {
74152
74132
  values?: any[][];
74153
74133
  /**
74154
74134
  * A JSON representation of the values in the cells in this table column.
74155
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74135
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74156
74136
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
74157
74137
  *
74158
74138
  * @remarks
@@ -74161,7 +74141,7 @@ declare namespace Excel {
74161
74141
  valuesAsJson?: CellValue[][];
74162
74142
  /**
74163
74143
  * A JSON representation of the values in the cells in this table column.
74164
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74144
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74165
74145
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
74166
74146
  *
74167
74147
  * @remarks
@@ -74183,7 +74163,7 @@ declare namespace Excel {
74183
74163
  */
74184
74164
  index?: number;
74185
74165
  /**
74186
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
74166
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
74187
74167
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
74188
74168
  *
74189
74169
  * @remarks
@@ -74192,7 +74172,7 @@ declare namespace Excel {
74192
74172
  values?: any[][];
74193
74173
  /**
74194
74174
  * A JSON representation of the values in the cells in this table row.
74195
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74175
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74196
74176
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
74197
74177
  *
74198
74178
  * @remarks
@@ -74201,7 +74181,7 @@ declare namespace Excel {
74201
74181
  valuesAsJson?: CellValue[][];
74202
74182
  /**
74203
74183
  * A JSON representation of the values in the cells in this table row.
74204
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
74184
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
74205
74185
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
74206
74186
  *
74207
74187
  * @remarks
@@ -76289,7 +76269,7 @@ declare namespace Excel {
76289
76269
  */
76290
76270
  position?: Excel.ChartTitlePosition | "Automatic" | "Top" | "Bottom" | "Left" | "Right";
76291
76271
  /**
76292
- * Represents a boolean value that determines if the chart title has a shadow.
76272
+ * Represents a Boolean value that determines if the chart title has a shadow.
76293
76273
  *
76294
76274
  * @remarks
76295
76275
  * [Api set: ExcelApi 1.7]
@@ -77463,7 +77443,7 @@ declare namespace Excel {
77463
77443
  */
77464
77444
  key?: string;
77465
77445
  /**
77466
- * Gets or sets the value of the custom property.
77446
+ * Specifies the value of the custom property.
77467
77447
  *
77468
77448
  * @remarks
77469
77449
  * [Api set: ExcelApi 1.12]
@@ -78617,14 +78597,14 @@ declare namespace Excel {
78617
78597
  */
78618
78598
  state?: Excel.HeaderFooterState | "Default" | "FirstAndDefault" | "OddAndEven" | "FirstOddAndEven";
78619
78599
  /**
78620
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
78600
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
78621
78601
  *
78622
78602
  * @remarks
78623
78603
  * [Api set: ExcelApi 1.9]
78624
78604
  */
78625
78605
  useSheetMargins?: boolean;
78626
78606
  /**
78627
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
78607
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
78628
78608
  *
78629
78609
  * @remarks
78630
78610
  * [Api set: ExcelApi 1.9]
@@ -79532,7 +79512,7 @@ declare namespace Excel {
79532
79512
  /** An interface describing the data returned by calling `namedSheetView.toJSON()`. */
79533
79513
  interface NamedSheetViewData {
79534
79514
  /**
79535
- * Gets or sets the name of the sheet view.
79515
+ * Specifies the name of the sheet view.
79536
79516
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
79537
79517
  *
79538
79518
  * @remarks
@@ -80661,7 +80641,7 @@ declare namespace Excel {
80661
80641
  */
80662
80642
  valueTypes?: boolean;
80663
80643
  /**
80664
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
80644
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
80665
80645
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
80666
80646
  *
80667
80647
  * @remarks
@@ -80670,7 +80650,7 @@ declare namespace Excel {
80670
80650
  values?: boolean;
80671
80651
  /**
80672
80652
  * A JSON representation of the values in the cells in this range.
80673
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80653
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80674
80654
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
80675
80655
  *
80676
80656
  * @remarks
@@ -80679,7 +80659,7 @@ declare namespace Excel {
80679
80659
  valuesAsJson?: boolean;
80680
80660
  /**
80681
80661
  * A JSON representation of the values in the cells in this range.
80682
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80662
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80683
80663
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
80684
80664
  *
80685
80665
  * @remarks
@@ -80880,7 +80860,7 @@ declare namespace Excel {
80880
80860
  */
80881
80861
  valueTypes?: boolean;
80882
80862
  /**
80883
- * Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
80863
+ * Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
80884
80864
  *
80885
80865
  * @remarks
80886
80866
  * [Api set: ExcelApi 1.3]
@@ -80888,7 +80868,7 @@ declare namespace Excel {
80888
80868
  values?: boolean;
80889
80869
  /**
80890
80870
  * A JSON representation of the values in the cells in this range.
80891
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80871
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80892
80872
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
80893
80873
  *
80894
80874
  * @remarks
@@ -80897,7 +80877,7 @@ declare namespace Excel {
80897
80877
  valuesAsJson?: boolean;
80898
80878
  /**
80899
80879
  * A JSON representation of the values in the cells in this range.
80900
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80880
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80901
80881
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
80902
80882
  *
80903
80883
  * @remarks
@@ -80987,7 +80967,7 @@ declare namespace Excel {
80987
80967
  */
80988
80968
  valueTypes?: boolean;
80989
80969
  /**
80990
- * For EACH ITEM in the collection: Represents the raw values of the specified range view. The data returned could be of type string, number, or a boolean. Cells that contain an error will return the error string.
80970
+ * For EACH ITEM in the collection: Represents the raw values of the specified range view. The data returned could be of type string, number, or a Boolean. Cells that contain an error will return the error string.
80991
80971
  *
80992
80972
  * @remarks
80993
80973
  * [Api set: ExcelApi 1.3]
@@ -80995,7 +80975,7 @@ declare namespace Excel {
80995
80975
  values?: boolean;
80996
80976
  /**
80997
80977
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
80998
- Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80978
+ Unlike `RangeView.values`, `RangeView.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
80999
80979
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `RangeView.valuesAsJsonLocal`.
81000
80980
  *
81001
80981
  * @remarks
@@ -81004,7 +80984,7 @@ declare namespace Excel {
81004
80984
  valuesAsJson?: boolean;
81005
80985
  /**
81006
80986
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
81007
- Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
80987
+ Unlike `RangeView.values`, `RangeView.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81008
80988
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `RangeView.valuesAsJson`.
81009
80989
  *
81010
80990
  * @remarks
@@ -81143,7 +81123,7 @@ declare namespace Excel {
81143
81123
  value?: boolean;
81144
81124
  /**
81145
81125
  * For EACH ITEM in the collection: A JSON representation of the values in this named item.
81146
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81126
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81147
81127
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
81148
81128
  *
81149
81129
  * @remarks
@@ -81152,7 +81132,7 @@ declare namespace Excel {
81152
81132
  valueAsJson?: boolean;
81153
81133
  /**
81154
81134
  * For EACH ITEM in the collection: A JSON representation of the values in this named item.
81155
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81135
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81156
81136
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
81157
81137
  *
81158
81138
  * @remarks
@@ -81246,7 +81226,7 @@ declare namespace Excel {
81246
81226
  value?: boolean;
81247
81227
  /**
81248
81228
  * A JSON representation of the values in this named item.
81249
- Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81229
+ Unlike `NamedItem.value`, `NamedItem.valueAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81250
81230
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItem.valueAsJsonLocal`.
81251
81231
  *
81252
81232
  * @remarks
@@ -81255,7 +81235,7 @@ declare namespace Excel {
81255
81235
  valueAsJson?: boolean;
81256
81236
  /**
81257
81237
  * A JSON representation of the values in this named item.
81258
- Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81238
+ Unlike `NamedItem.value`, `NamedItem.valueAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81259
81239
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItem.valueAsJson`.
81260
81240
  *
81261
81241
  * @remarks
@@ -81297,7 +81277,7 @@ declare namespace Excel {
81297
81277
  values?: boolean;
81298
81278
  /**
81299
81279
  * A JSON representation of the values in this named item array.
81300
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81280
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81301
81281
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `NamedItemArrayValues.valuesAsJsonLocal`.
81302
81282
  *
81303
81283
  * @remarks
@@ -81306,7 +81286,7 @@ declare namespace Excel {
81306
81286
  valuesAsJson?: boolean;
81307
81287
  /**
81308
81288
  * A JSON representation of the values in this named item array.
81309
- Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81289
+ Unlike `NamedItemArrayValues.values`, `NamedItemArrayValues.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81310
81290
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `NamedItemArrayValues.valuesAsJson`.
81311
81291
  *
81312
81292
  * @remarks
@@ -81785,7 +81765,7 @@ declare namespace Excel {
81785
81765
  */
81786
81766
  name?: boolean;
81787
81767
  /**
81788
- * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81768
+ * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81789
81769
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81790
81770
  *
81791
81771
  * @remarks
@@ -81794,7 +81774,7 @@ declare namespace Excel {
81794
81774
  values?: boolean;
81795
81775
  /**
81796
81776
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column.
81797
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81777
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81798
81778
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
81799
81779
  *
81800
81780
  * @remarks
@@ -81803,7 +81783,7 @@ declare namespace Excel {
81803
81783
  valuesAsJson?: boolean;
81804
81784
  /**
81805
81785
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table column.
81806
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81786
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81807
81787
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
81808
81788
  *
81809
81789
  * @remarks
@@ -81851,7 +81831,7 @@ declare namespace Excel {
81851
81831
  */
81852
81832
  name?: boolean;
81853
81833
  /**
81854
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81834
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81855
81835
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81856
81836
  *
81857
81837
  * @remarks
@@ -81860,7 +81840,7 @@ declare namespace Excel {
81860
81840
  values?: boolean;
81861
81841
  /**
81862
81842
  * A JSON representation of the values in the cells in this table column.
81863
- Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81843
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81864
81844
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableColumn.valuesAsJsonLocal`.
81865
81845
  *
81866
81846
  * @remarks
@@ -81869,7 +81849,7 @@ declare namespace Excel {
81869
81849
  valuesAsJson?: boolean;
81870
81850
  /**
81871
81851
  * A JSON representation of the values in the cells in this table column.
81872
- Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81852
+ Unlike `TableColumn.values`, `TableColumn.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81873
81853
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableColumn.valuesAsJson`.
81874
81854
  *
81875
81855
  * @remarks
@@ -81901,7 +81881,7 @@ declare namespace Excel {
81901
81881
  */
81902
81882
  index?: boolean;
81903
81883
  /**
81904
- * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81884
+ * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81905
81885
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81906
81886
  *
81907
81887
  * @remarks
@@ -81910,7 +81890,7 @@ declare namespace Excel {
81910
81890
  values?: boolean;
81911
81891
  /**
81912
81892
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table row.
81913
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81893
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81914
81894
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
81915
81895
  *
81916
81896
  * @remarks
@@ -81919,7 +81899,7 @@ declare namespace Excel {
81919
81899
  valuesAsJson?: boolean;
81920
81900
  /**
81921
81901
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this table row.
81922
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81902
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81923
81903
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
81924
81904
  *
81925
81905
  * @remarks
@@ -81951,7 +81931,7 @@ declare namespace Excel {
81951
81931
  */
81952
81932
  index?: boolean;
81953
81933
  /**
81954
- * Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
81934
+ * Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
81955
81935
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
81956
81936
  *
81957
81937
  * @remarks
@@ -81960,7 +81940,7 @@ declare namespace Excel {
81960
81940
  values?: boolean;
81961
81941
  /**
81962
81942
  * A JSON representation of the values in the cells in this table row.
81963
- Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81943
+ Unlike `TableRow.values`, `TableRow.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81964
81944
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `TableRow.valuesAsJsonLocal`.
81965
81945
  *
81966
81946
  * @remarks
@@ -81969,7 +81949,7 @@ declare namespace Excel {
81969
81949
  valuesAsJson?: boolean;
81970
81950
  /**
81971
81951
  * A JSON representation of the values in the cells in this table row.
81972
- Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
81952
+ Unlike `TableRow.values`, `TableRow.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
81973
81953
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `TableRow.valuesAsJson`.
81974
81954
  *
81975
81955
  * @remarks
@@ -85021,7 +85001,7 @@ declare namespace Excel {
85021
85001
  */
85022
85002
  position?: boolean;
85023
85003
  /**
85024
- * Represents a boolean value that determines if the chart title has a shadow.
85004
+ * Represents a Boolean value that determines if the chart title has a shadow.
85025
85005
  *
85026
85006
  * @remarks
85027
85007
  * [Api set: ExcelApi 1.7]
@@ -86902,7 +86882,7 @@ declare namespace Excel {
86902
86882
  */
86903
86883
  key?: boolean;
86904
86884
  /**
86905
- * Gets or sets the value of the custom property.
86885
+ * Specifies the value of the custom property.
86906
86886
  *
86907
86887
  * @remarks
86908
86888
  * [Api set: ExcelApi 1.12]
@@ -86928,7 +86908,7 @@ declare namespace Excel {
86928
86908
  */
86929
86909
  key?: boolean;
86930
86910
  /**
86931
- * For EACH ITEM in the collection: Gets or sets the value of the custom property.
86911
+ * For EACH ITEM in the collection: Specifies the value of the custom property.
86932
86912
  *
86933
86913
  * @remarks
86934
86914
  * [Api set: ExcelApi 1.12]
@@ -88771,14 +88751,14 @@ declare namespace Excel {
88771
88751
  */
88772
88752
  state?: boolean;
88773
88753
  /**
88774
- * Gets or sets a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
88754
+ * Specifies a flag indicating if headers/footers are aligned with the page margins set in the page layout options for the worksheet.
88775
88755
  *
88776
88756
  * @remarks
88777
88757
  * [Api set: ExcelApi 1.9]
88778
88758
  */
88779
88759
  useSheetMargins?: boolean;
88780
88760
  /**
88781
- * Gets or sets a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
88761
+ * Specifies a flag indicating if headers/footers should be scaled by the page percentage scale set in the page layout options for the worksheet.
88782
88762
  *
88783
88763
  * @remarks
88784
88764
  * [Api set: ExcelApi 1.9]
@@ -89076,7 +89056,7 @@ declare namespace Excel {
89076
89056
  */
89077
89057
  valueTypes?: boolean;
89078
89058
  /**
89079
- * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or boolean. Cells that contain an error will return the error string.
89059
+ * For EACH ITEM in the collection: Represents the raw values of the specified range. The data returned could be a string, number, or Boolean. Cells that contain an error will return the error string.
89080
89060
  If the returned value starts with a plus ("+"), minus ("-"), or equal sign ("="), Excel interprets this value as a formula.
89081
89061
  *
89082
89062
  * @remarks
@@ -89085,7 +89065,7 @@ declare namespace Excel {
89085
89065
  values?: boolean;
89086
89066
  /**
89087
89067
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
89088
- Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
89068
+ Unlike `Range.values`, `Range.valuesAsJson` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
89089
89069
  Data returned from this API always aligns with the en-US locale. To retrieve data in the user's display locale, use `Range.valuesAsJsonLocal`.
89090
89070
  *
89091
89071
  * @remarks
@@ -89094,7 +89074,7 @@ declare namespace Excel {
89094
89074
  valuesAsJson?: boolean;
89095
89075
  /**
89096
89076
  * For EACH ITEM in the collection: A JSON representation of the values in the cells in this range.
89097
- Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard boolean, number, and string values.
89077
+ Unlike `Range.values`, `Range.valuesAsJsonLocal` supports all data types which can be in a cell. Examples include formatted number values and web images, in addition to the standard Boolean, number, and string values.
89098
89078
  Data returned from this API always aligns with the user's display locale. To retrieve data independent of locale, use `Range.valuesAsJson`.
89099
89079
  *
89100
89080
  * @remarks
@@ -91070,7 +91050,7 @@ declare namespace Excel {
91070
91050
  */
91071
91051
  $all?: boolean;
91072
91052
  /**
91073
- * Gets or sets the name of the sheet view.
91053
+ * Specifies the name of the sheet view.
91074
91054
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
91075
91055
  *
91076
91056
  * @remarks
@@ -91090,7 +91070,7 @@ declare namespace Excel {
91090
91070
  */
91091
91071
  $all?: boolean;
91092
91072
  /**
91093
- * For EACH ITEM in the collection: Gets or sets the name of the sheet view.
91073
+ * For EACH ITEM in the collection: Specifies the name of the sheet view.
91094
91074
  The temporary sheet view name is the empty string (""). Naming the view by using the name property causes the sheet view to be saved.
91095
91075
  *
91096
91076
  * @remarks
office-js/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/office-js",
3
- "version": "1.0.535",
3
+ "version": "1.0.536",
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",
@@ -46,6 +46,6 @@
46
46
  "scripts": {},
47
47
  "dependencies": {},
48
48
  "peerDependencies": {},
49
- "typesPublisherContentHash": "a3c55c36e1684d7ead907668517a3b90f326b42b1d74a0dcf7f089f6772567d5",
49
+ "typesPublisherContentHash": "2a621c84f97cfc2f0a0a324fd4b5a88e671eee12aa60a664765b24bcb08d159b",
50
50
  "typeScriptVersion": "5.2"
51
51
  }