aspose.cells.node 25.9.0 → 25.10.0

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. package/aspose.cells.js +35 -8
  2. package/package.json +6 -6
  3. package/types.d.ts +193 -45
package/aspose.cells.js CHANGED
@@ -629,6 +629,12 @@ exports.SqlScriptOperatorType = {
629
629
  Delete : 2,
630
630
  };
631
631
 
632
+ exports.SignificantDigitsType = {
633
+ Digits15 : 0,
634
+ G17 : 1,
635
+ Rounding17 : 2,
636
+ };
637
+
632
638
  exports.Cells.prototype.importCSVAsync = async function(...args) {
633
639
  return new Promise((resolve, reject) => {
634
640
  queueMicrotask(() => {
@@ -12963,6 +12969,12 @@ Object.assign(exports.MarkdownSaveOptions.prototype, {
12963
12969
  setAlignColumnPadding(value) {
12964
12970
  this.alignColumnPadding = value;
12965
12971
  },
12972
+ getSplitTablesByBlankRow() {
12973
+ return this.splitTablesByBlankRow;
12974
+ },
12975
+ setSplitTablesByBlankRow(value) {
12976
+ this.splitTablesByBlankRow = value;
12977
+ },
12966
12978
  getSaveFormat() {
12967
12979
  return this.saveFormat;
12968
12980
  },
@@ -13776,6 +13788,12 @@ Object.assign(exports.WorkbookSettings.prototype, {
13776
13788
  setHidePivotFieldList(value) {
13777
13789
  this.hidePivotFieldList = value;
13778
13790
  },
13791
+ getMaxUniqueItemsPerField() {
13792
+ return this.maxUniqueItemsPerField;
13793
+ },
13794
+ setMaxUniqueItemsPerField(value) {
13795
+ this.maxUniqueItemsPerField = value;
13796
+ },
13779
13797
  getUpdateLinksType() {
13780
13798
  return this.updateLinksType;
13781
13799
  },
@@ -13872,11 +13890,11 @@ Object.assign(exports.WorkbookSettings.prototype, {
13872
13890
  setUpdateAdjacentCellsBorder(value) {
13873
13891
  this.updateAdjacentCellsBorder = value;
13874
13892
  },
13875
- getSignificantDigits() {
13876
- return this.significantDigits;
13893
+ getSignificantDigitsType() {
13894
+ return this.significantDigitsType;
13877
13895
  },
13878
- setSignificantDigits(value) {
13879
- this.significantDigits = value;
13896
+ setSignificantDigitsType(value) {
13897
+ this.significantDigitsType = value;
13880
13898
  },
13881
13899
  getCheckCompatibility() {
13882
13900
  return this.checkCompatibility;
@@ -16701,6 +16719,15 @@ Object.assign(exports.CalculationOptions.prototype, {
16701
16719
  setRecursive(value) {
16702
16720
  this.recursive = value;
16703
16721
  },
16722
+ getUserSpecifiedRefreshDynamicArrayFormula() {
16723
+ return this.userSpecifiedRefreshDynamicArrayFormula;
16724
+ },
16725
+ getRefreshDynamicArrayFormula() {
16726
+ return this.refreshDynamicArrayFormula;
16727
+ },
16728
+ setRefreshDynamicArrayFormula(value) {
16729
+ this.refreshDynamicArrayFormula = value;
16730
+ },
16704
16731
  getCustomEngine() {
16705
16732
  return this.customEngine;
16706
16733
  },
@@ -29103,11 +29130,11 @@ Object.assign(exports.GroupShape.prototype, {
29103
29130
  });
29104
29131
 
29105
29132
  Object.assign(exports.CellsHelper, {
29106
- getSignificantDigits() {
29107
- return exports.CellsHelper.significantDigits;
29133
+ getSignificantDigitsType() {
29134
+ return exports.CellsHelper.significantDigitsType;
29108
29135
  },
29109
- setSignificantDigits(value) {
29110
- exports.CellsHelper.significantDigits = value;
29136
+ setSignificantDigitsType(value) {
29137
+ exports.CellsHelper.significantDigitsType = value;
29111
29138
  },
29112
29139
  getDPI() {
29113
29140
  return exports.CellsHelper.dPI;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aspose.cells.node",
3
- "version": "25.9.0",
3
+ "version": "25.10.0",
4
4
  "description": "Aspose.Cells for Node.js via C++ is a high-performance and powerful library for manipulating and converting Excel (XLS, XLSX, XLSB), ODS, CSV, and HTML files, offering a comprehensive set of features for creating, editing, converting, and rendering spreadsheets within Node.js applications.",
5
5
  "main": "aspose.cells.js",
6
6
  "types": "types.d.ts",
@@ -35,10 +35,10 @@
35
35
  "license": "Commercial",
36
36
  "homepage": "https://www.aspose.com",
37
37
  "optionalDependencies": {
38
- "aspose.cells.node.win32.x64": "~25.9.0",
39
- "aspose.cells.node.linux.x64": "~25.9.0",
40
- "aspose.cells.node.linux.arm64": "~25.9.0",
41
- "aspose.cells.node.darwin.x64": "~25.9.0",
42
- "aspose.cells.node.darwin.arm64": "~25.9.0"
38
+ "aspose.cells.node.win32.x64": "~25.10.0",
39
+ "aspose.cells.node.linux.x64": "~25.10.0",
40
+ "aspose.cells.node.linux.arm64": "~25.10.0",
41
+ "aspose.cells.node.darwin.x64": "~25.10.0",
42
+ "aspose.cells.node.darwin.arm64": "~25.10.0"
43
43
  }
44
44
  }
package/types.d.ts CHANGED
@@ -11405,6 +11405,40 @@ export class SettablePivotGlobalizationSettings {
11405
11405
  isNull() : boolean;
11406
11406
  }
11407
11407
 
11408
+ /**
11409
+ * Represents the type of significant digits for outputing numeric values.
11410
+ */
11411
+ export enum SignificantDigitsType {
11412
+ /**
11413
+ * 15-digits
11414
+ */
11415
+ Digits15 = 0,
11416
+ /**
11417
+ * 17-digits by formatting the value with "G17".
11418
+ *
11419
+ * @remarks
11420
+ * For some double values, "G17" may given different value than the
11421
+ * original/literal one input by user.
11422
+ * For example, double value 0.15 will be output as 0.14999999999999999;
11423
+ * double value 1.0E-16 will be output as 9.9999999999999998E-17.
11424
+ * Ms excel's handles those values inconsistently, it saves 0.15 as 0.15
11425
+ * in the xlsx file, but for 1.0E-16 the saved value in the xlsx file is
11426
+ * 9.9999999999999998E-17.
11427
+ */
11428
+ G17 = 1,
11429
+ /**
11430
+ * 17-digits by rounding the value.
11431
+ *
11432
+ * @remarks
11433
+ * This type generally outputs the value as the original/literal one input by user.
11434
+ * For 0.15 it produces "0.15" and for 1.0E-16 it produces "1.0E-16".
11435
+ * But there are also some special cases which may give different values than the literal.
11436
+ * For example, when rounding 208435494.96478021 to 17-digits("0.#################"),
11437
+ * the output is 208435494.96478.
11438
+ */
11439
+ Rounding17 = 2,
11440
+ }
11441
+
11408
11442
  /**
11409
11443
  * Represents user's custom calculation engine to extend the default calculation engine of Aspose.Cells.
11410
11444
  *
@@ -14757,30 +14791,36 @@ export class AbstractTextLoadOptions extends LoadOptions {
14757
14791
  /**
14758
14792
  * @deprecated Please use the 'convertNumericData' property instead.
14759
14793
  * Gets or sets a value that indicates whether the string in text file is converted to numeric data.
14794
+ * Default value is true.
14760
14795
  */
14761
14796
  getConvertNumericData() : boolean;
14762
14797
  /**
14763
14798
  * Gets or sets a value that indicates whether the string in text file is converted to numeric data.
14799
+ * Default value is true.
14764
14800
  */
14765
14801
  convertNumericData : boolean;
14766
14802
  /**
14767
14803
  * @deprecated Please use the 'convertNumericData' property instead.
14768
14804
  * Gets or sets a value that indicates whether the string in text file is converted to numeric data.
14805
+ * Default value is true.
14769
14806
  * @param value - The value to set.
14770
14807
  */
14771
14808
  setConvertNumericData(value: boolean) : void;
14772
14809
  /**
14773
14810
  * @deprecated Please use the 'convertDateTimeData' property instead.
14774
14811
  * Gets or sets a value that indicates whether the string in text file is converted to date data.
14812
+ * Default value is true.
14775
14813
  */
14776
14814
  getConvertDateTimeData() : boolean;
14777
14815
  /**
14778
14816
  * Gets or sets a value that indicates whether the string in text file is converted to date data.
14817
+ * Default value is true.
14779
14818
  */
14780
14819
  convertDateTimeData : boolean;
14781
14820
  /**
14782
14821
  * @deprecated Please use the 'convertDateTimeData' property instead.
14783
14822
  * Gets or sets a value that indicates whether the string in text file is converted to date data.
14823
+ * Default value is true.
14784
14824
  * @param value - The value to set.
14785
14825
  */
14786
14826
  setConvertDateTimeData(value: boolean) : void;
@@ -17156,18 +17196,18 @@ export class MarkdownSaveOptions extends SaveOptions {
17156
17196
  setCalculateFormula(value: boolean) : void;
17157
17197
  /**
17158
17198
  * @deprecated Please use the 'exportHyperlinkAsReference' property instead.
17159
- * Exports hyperlink using reference definitions instead of inline format.
17199
+ * Indicates whether to export hyperlink using reference definitions instead of inline format.
17160
17200
  * The default value is false.
17161
17201
  */
17162
17202
  getExportHyperlinkAsReference() : boolean;
17163
17203
  /**
17164
- * Exports hyperlink using reference definitions instead of inline format.
17204
+ * Indicates whether to export hyperlink using reference definitions instead of inline format.
17165
17205
  * The default value is false.
17166
17206
  */
17167
17207
  exportHyperlinkAsReference : boolean;
17168
17208
  /**
17169
17209
  * @deprecated Please use the 'exportHyperlinkAsReference' property instead.
17170
- * Exports hyperlink using reference definitions instead of inline format.
17210
+ * Indicates whether to export hyperlink using reference definitions instead of inline format.
17171
17211
  * The default value is false.
17172
17212
  * @param value - The value to set.
17173
17213
  */
@@ -17193,6 +17233,24 @@ export class MarkdownSaveOptions extends SaveOptions {
17193
17233
  * @param value - The value to set.
17194
17234
  */
17195
17235
  setAlignColumnPadding(value: string) : void;
17236
+ /**
17237
+ * @deprecated Please use the 'splitTablesByBlankRow' property instead.
17238
+ * Indicates whether blank rows in the worksheet should be treated as table separators when exporting to Markdown.
17239
+ * The default value is false.
17240
+ */
17241
+ getSplitTablesByBlankRow() : boolean;
17242
+ /**
17243
+ * Indicates whether blank rows in the worksheet should be treated as table separators when exporting to Markdown.
17244
+ * The default value is false.
17245
+ */
17246
+ splitTablesByBlankRow : boolean;
17247
+ /**
17248
+ * @deprecated Please use the 'splitTablesByBlankRow' property instead.
17249
+ * Indicates whether blank rows in the worksheet should be treated as table separators when exporting to Markdown.
17250
+ * The default value is false.
17251
+ * @param value - The value to set.
17252
+ */
17253
+ setSplitTablesByBlankRow(value: boolean) : void;
17196
17254
  /**
17197
17255
  * Checks whether the implementation object is null.
17198
17256
  */
@@ -19674,6 +19732,10 @@ export class Workbook {
19674
19732
  * @param rawColor - Raw color.
19675
19733
  * @returns
19676
19734
  * Best matching color.
19735
+ *
19736
+ * @remarks
19737
+ * There are only 56 colors in the color palette in Excel 97-2003.
19738
+ * If the color is not in the palette, the similar color will be set.
19677
19739
  */
19678
19740
  getMatchingColor(rawColor: Color) : Color;
19679
19741
  /**
@@ -20343,6 +20405,27 @@ export class WorkbookSettings {
20343
20405
  * @param value - The value to set.
20344
20406
  */
20345
20407
  setHidePivotFieldList(value: boolean) : void;
20408
+ /**
20409
+ * @deprecated Please use the 'maxUniqueItemsPerField' property instead.
20410
+ * Gets and set the limitation of unique items per field
20411
+ *
20412
+ * @remarks
20413
+ */
20414
+ getMaxUniqueItemsPerField() : number;
20415
+ /**
20416
+ * Gets and set the limitation of unique items per field
20417
+ *
20418
+ * @remarks
20419
+ */
20420
+ maxUniqueItemsPerField : number;
20421
+ /**
20422
+ * @deprecated Please use the 'maxUniqueItemsPerField' property instead.
20423
+ * Gets and set the limitation of unique items per field
20424
+ * @param value - The value to set.
20425
+ *
20426
+ * @remarks
20427
+ */
20428
+ setMaxUniqueItemsPerField(value: number) : void;
20346
20429
  /**
20347
20430
  * @deprecated Please use the 'updateLinksType' property instead.
20348
20431
  * Gets and sets how updates external links when the workbook is opened.
@@ -20623,32 +20706,23 @@ export class WorkbookSettings {
20623
20706
  */
20624
20707
  setUpdateAdjacentCellsBorder(value: boolean) : void;
20625
20708
  /**
20626
- * @deprecated Please use the 'significantDigits' property instead.
20627
- * Gets and sets the number of significant digits.
20628
- * The default value is <see cref="CellsHelper.SignificantDigits"/>.
20629
- *
20630
- * @remarks
20631
- * Only could be 15 or 17 now.
20709
+ * @deprecated Please use the 'significantDigitsType' property instead.
20710
+ * Gets and sets the type of significant digits for outputing numeric
20711
+ * values in this workbook. Default value is <see cref="CellsHelper.SignificantDigitsType"/>.
20632
20712
  */
20633
- getSignificantDigits() : number;
20713
+ getSignificantDigitsType() : SignificantDigitsType;
20634
20714
  /**
20635
- * Gets and sets the number of significant digits.
20636
- * The default value is <see cref="CellsHelper.SignificantDigits"/>.
20637
- *
20638
- * @remarks
20639
- * Only could be 15 or 17 now.
20715
+ * Gets and sets the type of significant digits for outputing numeric
20716
+ * values in this workbook. Default value is <see cref="CellsHelper.SignificantDigitsType"/>.
20640
20717
  */
20641
- significantDigits : number;
20718
+ significantDigitsType : SignificantDigitsType;
20642
20719
  /**
20643
- * @deprecated Please use the 'significantDigits' property instead.
20644
- * Gets and sets the number of significant digits.
20645
- * The default value is <see cref="CellsHelper.SignificantDigits"/>.
20720
+ * @deprecated Please use the 'significantDigitsType' property instead.
20721
+ * Gets and sets the type of significant digits for outputing numeric
20722
+ * values in this workbook. Default value is <see cref="CellsHelper.SignificantDigitsType"/>.
20646
20723
  * @param value - The value to set.
20647
- *
20648
- * @remarks
20649
- * Only could be 15 or 17 now.
20650
20724
  */
20651
- setSignificantDigits(value: number) : void;
20725
+ setSignificantDigitsType(value: SignificantDigitsType) : void;
20652
20726
  /**
20653
20727
  * @deprecated Please use the 'checkCompatibility' property instead.
20654
20728
  * Indicates whether check compatibility with earlier versions when saving workbook.
@@ -29230,6 +29304,71 @@ export class CalculationOptions {
29230
29304
  * @param value - The value to set.
29231
29305
  */
29232
29306
  setRecursive(value: boolean) : void;
29307
+ /**
29308
+ * @deprecated Please use the 'userSpecifiedRefreshDynamicArrayFormula' property instead.
29309
+ * Indicates whether user has explicitly specified the behavior of
29310
+ * refreshing dynamic array formulas before calculating specified formulas.
29311
+ */
29312
+ getUserSpecifiedRefreshDynamicArrayFormula() : boolean;
29313
+ /**
29314
+ * Indicates whether user has explicitly specified the behavior of
29315
+ * refreshing dynamic array formulas before calculating specified formulas.
29316
+ */
29317
+ readonly userSpecifiedRefreshDynamicArrayFormula : boolean;
29318
+ /**
29319
+ * @deprecated Please use the 'refreshDynamicArrayFormula' property instead.
29320
+ * Indicates whether dynamic array formulas should be refreshed
29321
+ * before calculating formulas.
29322
+ *
29323
+ * @remarks
29324
+ * If this property has been specified explicitly, then the specified value
29325
+ * will be used to determine whether refresh dynamic array formulas.
29326
+ * Otherwise(<see cref="UserSpecifiedRefreshDynamicArrayFormula"/> is flase),
29327
+ * the default value of it depends on what kind of formulas need to be calculated:
29328
+ * For calculating formulas for the workbook,
29329
+ * such as <see cref="Workbook.CalculateFormula(CalculationOptions)"/>,
29330
+ * this property will be taken as true.
29331
+ * For other cases, such as <see cref="Cell.Calculate(CalculationOptions)"/>
29332
+ * or <see cref="Worksheet.CalculateFormula(CalculationOptions, bool)"/>,
29333
+ * this property will be taken as false.
29334
+ */
29335
+ getRefreshDynamicArrayFormula() : boolean;
29336
+ /**
29337
+ * Indicates whether dynamic array formulas should be refreshed
29338
+ * before calculating formulas.
29339
+ *
29340
+ * @remarks
29341
+ * If this property has been specified explicitly, then the specified value
29342
+ * will be used to determine whether refresh dynamic array formulas.
29343
+ * Otherwise(<see cref="UserSpecifiedRefreshDynamicArrayFormula"/> is flase),
29344
+ * the default value of it depends on what kind of formulas need to be calculated:
29345
+ * For calculating formulas for the workbook,
29346
+ * such as <see cref="Workbook.CalculateFormula(CalculationOptions)"/>,
29347
+ * this property will be taken as true.
29348
+ * For other cases, such as <see cref="Cell.Calculate(CalculationOptions)"/>
29349
+ * or <see cref="Worksheet.CalculateFormula(CalculationOptions, bool)"/>,
29350
+ * this property will be taken as false.
29351
+ */
29352
+ refreshDynamicArrayFormula : boolean;
29353
+ /**
29354
+ * @deprecated Please use the 'refreshDynamicArrayFormula' property instead.
29355
+ * Indicates whether dynamic array formulas should be refreshed
29356
+ * before calculating formulas.
29357
+ * @param value - The value to set.
29358
+ *
29359
+ * @remarks
29360
+ * If this property has been specified explicitly, then the specified value
29361
+ * will be used to determine whether refresh dynamic array formulas.
29362
+ * Otherwise(<see cref="UserSpecifiedRefreshDynamicArrayFormula"/> is flase),
29363
+ * the default value of it depends on what kind of formulas need to be calculated:
29364
+ * For calculating formulas for the workbook,
29365
+ * such as <see cref="Workbook.CalculateFormula(CalculationOptions)"/>,
29366
+ * this property will be taken as true.
29367
+ * For other cases, such as <see cref="Cell.Calculate(CalculationOptions)"/>
29368
+ * or <see cref="Worksheet.CalculateFormula(CalculationOptions, bool)"/>,
29369
+ * this property will be taken as false.
29370
+ */
29371
+ setRefreshDynamicArrayFormula(value: boolean) : void;
29233
29372
  /**
29234
29373
  * @deprecated Please use the 'customEngine' property instead.
29235
29374
  * The custom formula calculation engine to extend the default calculation engine of Aspose.Cells.
@@ -53632,39 +53771,51 @@ export enum AutoShapeType {
53632
53771
  */
53633
53772
  CurvedConnector5 = 40,
53634
53773
  /**
53774
+ * Specifies the "Line Callout 2(No Border)" type of the Ms Excel 97-2003 version or the "Callout: Line with No Border" type of the Ms Excel 2007 version.
53635
53775
  */
53636
53776
  LineCalloutNoBorder2 = 41,
53637
53777
  /**
53778
+ * Specifies the "Line Callout 3(No Border)" type of the Ms Excel 97-2003 version or the "Callout: Bent Line with No Border" type of the Ms Excel 2007 version.
53638
53779
  */
53639
53780
  LineCalloutNoBorder3 = 42,
53640
53781
  /**
53782
+ * Specifies the "Line Callout 4(No Border)" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line with No Border" type of the Ms Excel 2007 version.
53641
53783
  */
53642
53784
  LineCalloutNoBorder4 = 43,
53643
53785
  /**
53786
+ * Specifies the "Line Callout 2(Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Line with Accent Bar" type of the Ms Excel 2007 version.
53644
53787
  */
53645
53788
  LineCalloutWithAccentBar2 = 44,
53646
53789
  /**
53790
+ * Specifies the "Line Callout 3(Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Bent Line with Accent Bar" type of the Ms Excel 2007 version.
53647
53791
  */
53648
53792
  LineCalloutWithAccentBar3 = 45,
53649
53793
  /**
53794
+ * Specifies the "Line Callout 4(Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line with Accent Bar" type of the Ms Excel 2007 version.
53650
53795
  */
53651
53796
  LineCalloutWithAccentBar4 = 46,
53652
53797
  /**
53798
+ * Specifies the "Line Callout 2" type of the Ms Excel 97-2003 version or the "Callout: Line" type of the Ms Excel 2007 version.
53653
53799
  */
53654
53800
  LineCalloutWithBorder2 = 47,
53655
53801
  /**
53802
+ * Specifies the "Line Callout 3" type of the Ms Excel 97-2003 version or the "Callout: Bent Line" type of the Ms Excel 2007 version.
53656
53803
  */
53657
53804
  LineCalloutWithBorder3 = 48,
53658
53805
  /**
53806
+ * Specifies the "Line Callout 4" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line" type of the Ms Excel 2007 version.
53659
53807
  */
53660
53808
  LineCalloutWithBorder4 = 49,
53661
53809
  /**
53810
+ * Specifies the "Line Callout 2(Border and Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Line with Border and Accent Bar" type of the Ms Excel 2007 version.
53662
53811
  */
53663
53812
  LineCalloutWithBorderAndAccentBar2 = 50,
53664
53813
  /**
53814
+ * Specifies the "Line Callout 3(Border and Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Bent Line with Border and Accent Bar" type of the Ms Excel 2007 version.
53665
53815
  */
53666
53816
  LineCalloutWithBorderAndAccentBar3 = 51,
53667
53817
  /**
53818
+ * Specifies the "Line Callout 4(Border and Accent Bar)" type of the Ms Excel 97-2003 version or the "Callout: Double Bent Line with Border and Accent Bar" type of the Ms Excel 2007 version.
53668
53819
  */
53669
53820
  LineCalloutWithBorderAndAccentBar4 = 52,
53670
53821
  /**
@@ -54084,15 +54235,19 @@ export enum AutoShapeType {
54084
54235
  */
54085
54236
  FlowChartOffpageConnector = 177,
54086
54237
  /**
54238
+ * Specifies the "Line Callout 1(No Border)" type of the Ms Excel 97-2003 version.
54087
54239
  */
54088
54240
  LineCalloutNoBorder1 = 178,
54089
54241
  /**
54242
+ * Specifies the "Line Callout 1(Accent Bar)" type of the Ms Excel 97-2003 version.
54090
54243
  */
54091
54244
  LineCalloutWithAccentBar1 = 179,
54092
54245
  /**
54246
+ * Specifies the "Line Callout 1" type of the Ms Excel 97-2003 version.
54093
54247
  */
54094
54248
  LineCalloutWithBorder1 = 180,
54095
54249
  /**
54250
+ * Specifies the "Line Callout 1(Border and Accent Bar)" type of the Ms Excel 97-2003 version.
54096
54251
  */
54097
54252
  LineCalloutWithBorderAndAccentBar1 = 181,
54098
54253
  /**
@@ -61065,11 +61220,13 @@ export class CustomDocumentPropertyCollection extends DocumentPropertyCollection
61065
61220
  */
61066
61221
  addLinkToContent(name: string, source: string) : DocumentProperty;
61067
61222
  /**
61068
- * Update custom document property value which links to content.
61223
+ * Updates values of all custom properties that are linked to content(use
61224
+ * cell value of linked range to update value of custom property).
61069
61225
  */
61070
61226
  updateLinkedPropertyValue() : void;
61071
61227
  /**
61072
- * Update custom document property value to linked range.
61228
+ * Updates all ranges that are linked to custom properties(use the value of
61229
+ * custom document property to update cell value of linked range).
61073
61230
  */
61074
61231
  updateLinkedRange() : void;
61075
61232
  /**
@@ -63482,32 +63639,23 @@ export class GroupShape extends Shape {
63482
63639
  */
63483
63640
  export class CellsHelper {
63484
63641
  /**
63485
- * @deprecated Please use the 'significantDigits' property instead.
63486
- * Gets and sets the number of significant digits.
63487
- * The default value is 17.
63488
- *
63489
- * @remarks
63490
- * Only could be 15 or 17 now.
63642
+ * @deprecated Please use the 'significantDigitsType' property instead.
63643
+ * Gets and sets the default type of significant digits for outputing numeric values.
63644
+ * Default value is <see cref="SignificantDigitsType.G17"/>.
63491
63645
  */
63492
- static getSignificantDigits() : number;
63646
+ static getSignificantDigitsType() : SignificantDigitsType;
63493
63647
  /**
63494
- * Gets and sets the number of significant digits.
63495
- * The default value is 17.
63496
- *
63497
- * @remarks
63498
- * Only could be 15 or 17 now.
63648
+ * Gets and sets the default type of significant digits for outputing numeric values.
63649
+ * Default value is <see cref="SignificantDigitsType.G17"/>.
63499
63650
  */
63500
- static significantDigits : number;
63651
+ static significantDigitsType : SignificantDigitsType;
63501
63652
  /**
63502
- * @deprecated Please use the 'significantDigits' property instead.
63503
- * Gets and sets the number of significant digits.
63504
- * The default value is 17.
63653
+ * @deprecated Please use the 'significantDigitsType' property instead.
63654
+ * Gets and sets the default type of significant digits for outputing numeric values.
63655
+ * Default value is <see cref="SignificantDigitsType.G17"/>.
63505
63656
  * @param value - The value to set.
63506
- *
63507
- * @remarks
63508
- * Only could be 15 or 17 now.
63509
63657
  */
63510
- static setSignificantDigits(value: number) : void;
63658
+ static setSignificantDigitsType(value: SignificantDigitsType) : void;
63511
63659
  /**
63512
63660
  * @deprecated Please use the 'dPI' property instead.
63513
63661
  * Gets the DPI of the machine.