aspose.cells.node 25.8.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.
- package/aspose.cells.js +112 -8
- package/package.json +6 -6
- package/types.d.ts +417 -42
package/aspose.cells.js
CHANGED
|
@@ -77,6 +77,11 @@ exports.ChartColorPaletteType = {
|
|
|
77
77
|
MonochromaticPalette13 : 13,
|
|
78
78
|
};
|
|
79
79
|
|
|
80
|
+
exports.HtmlEmbeddedFontType = {
|
|
81
|
+
None : 0,
|
|
82
|
+
Woff : 1,
|
|
83
|
+
};
|
|
84
|
+
|
|
80
85
|
exports.SvgEmbeddedFontType = {
|
|
81
86
|
None : 0,
|
|
82
87
|
Woff : 1,
|
|
@@ -379,6 +384,11 @@ exports.MergeEmptyTdType = {
|
|
|
379
384
|
MergeForcely : 2,
|
|
380
385
|
};
|
|
381
386
|
|
|
387
|
+
exports.SaveElementType = {
|
|
388
|
+
All : 251658239,
|
|
389
|
+
Chart : 256,
|
|
390
|
+
};
|
|
391
|
+
|
|
382
392
|
exports.PdfFontEncoding = {
|
|
383
393
|
Identity : 0,
|
|
384
394
|
AnsiPrefer : 1,
|
|
@@ -619,6 +629,12 @@ exports.SqlScriptOperatorType = {
|
|
|
619
629
|
Delete : 2,
|
|
620
630
|
};
|
|
621
631
|
|
|
632
|
+
exports.SignificantDigitsType = {
|
|
633
|
+
Digits15 : 0,
|
|
634
|
+
G17 : 1,
|
|
635
|
+
Rounding17 : 2,
|
|
636
|
+
};
|
|
637
|
+
|
|
622
638
|
exports.Cells.prototype.importCSVAsync = async function(...args) {
|
|
623
639
|
return new Promise((resolve, reject) => {
|
|
624
640
|
queueMicrotask(() => {
|
|
@@ -3463,6 +3479,7 @@ exports.FileFormatType = {
|
|
|
3463
3479
|
Json : 513,
|
|
3464
3480
|
SqlScript : 514,
|
|
3465
3481
|
Dbf : 515,
|
|
3482
|
+
FlatOpc : 516,
|
|
3466
3483
|
XHtml : 771,
|
|
3467
3484
|
OneNote : 772,
|
|
3468
3485
|
MicrosoftCabinet : 773,
|
|
@@ -7365,6 +7382,12 @@ Object.assign(exports.EbookSaveOptions.prototype, {
|
|
|
7365
7382
|
},
|
|
7366
7383
|
setSheetSet(value) {
|
|
7367
7384
|
this.sheetSet = value;
|
|
7385
|
+
},
|
|
7386
|
+
getEmbeddedFontType() {
|
|
7387
|
+
return this.embeddedFontType;
|
|
7388
|
+
},
|
|
7389
|
+
setEmbeddedFontType(value) {
|
|
7390
|
+
this.embeddedFontType = value;
|
|
7368
7391
|
}
|
|
7369
7392
|
});
|
|
7370
7393
|
|
|
@@ -12664,6 +12687,24 @@ Object.assign(exports.DocxSaveOptions.prototype, {
|
|
|
12664
12687
|
setSaveAsEditableShapes(value) {
|
|
12665
12688
|
this.saveAsEditableShapes = value;
|
|
12666
12689
|
},
|
|
12690
|
+
getEmbedXlsxAsChartDataSource() {
|
|
12691
|
+
return this.embedXlsxAsChartDataSource;
|
|
12692
|
+
},
|
|
12693
|
+
setEmbedXlsxAsChartDataSource(value) {
|
|
12694
|
+
this.embedXlsxAsChartDataSource = value;
|
|
12695
|
+
},
|
|
12696
|
+
getAsFlatOpc() {
|
|
12697
|
+
return this.asFlatOpc;
|
|
12698
|
+
},
|
|
12699
|
+
setAsFlatOpc(value) {
|
|
12700
|
+
this.asFlatOpc = value;
|
|
12701
|
+
},
|
|
12702
|
+
getSaveElementType() {
|
|
12703
|
+
return this.saveElementType;
|
|
12704
|
+
},
|
|
12705
|
+
setSaveElementType(value) {
|
|
12706
|
+
this.saveElementType = value;
|
|
12707
|
+
},
|
|
12667
12708
|
getAsNormalView() {
|
|
12668
12709
|
return this.asNormalView;
|
|
12669
12710
|
},
|
|
@@ -12916,6 +12957,24 @@ Object.assign(exports.MarkdownSaveOptions.prototype, {
|
|
|
12916
12957
|
setCalculateFormula(value) {
|
|
12917
12958
|
this.calculateFormula = value;
|
|
12918
12959
|
},
|
|
12960
|
+
getExportHyperlinkAsReference() {
|
|
12961
|
+
return this.exportHyperlinkAsReference;
|
|
12962
|
+
},
|
|
12963
|
+
setExportHyperlinkAsReference(value) {
|
|
12964
|
+
this.exportHyperlinkAsReference = value;
|
|
12965
|
+
},
|
|
12966
|
+
getAlignColumnPadding() {
|
|
12967
|
+
return this.alignColumnPadding;
|
|
12968
|
+
},
|
|
12969
|
+
setAlignColumnPadding(value) {
|
|
12970
|
+
this.alignColumnPadding = value;
|
|
12971
|
+
},
|
|
12972
|
+
getSplitTablesByBlankRow() {
|
|
12973
|
+
return this.splitTablesByBlankRow;
|
|
12974
|
+
},
|
|
12975
|
+
setSplitTablesByBlankRow(value) {
|
|
12976
|
+
this.splitTablesByBlankRow = value;
|
|
12977
|
+
},
|
|
12919
12978
|
getSaveFormat() {
|
|
12920
12979
|
return this.saveFormat;
|
|
12921
12980
|
},
|
|
@@ -13000,6 +13059,18 @@ Object.assign(exports.PptxSaveOptions.prototype, {
|
|
|
13000
13059
|
setIgnoreHiddenRows(value) {
|
|
13001
13060
|
this.ignoreHiddenRows = value;
|
|
13002
13061
|
},
|
|
13062
|
+
getSaveAsEditableShapes() {
|
|
13063
|
+
return this.saveAsEditableShapes;
|
|
13064
|
+
},
|
|
13065
|
+
setSaveAsEditableShapes(value) {
|
|
13066
|
+
this.saveAsEditableShapes = value;
|
|
13067
|
+
},
|
|
13068
|
+
getEmbedXlsxAsChartDataSource() {
|
|
13069
|
+
return this.embedXlsxAsChartDataSource;
|
|
13070
|
+
},
|
|
13071
|
+
setEmbedXlsxAsChartDataSource(value) {
|
|
13072
|
+
this.embedXlsxAsChartDataSource = value;
|
|
13073
|
+
},
|
|
13003
13074
|
getAdjustFontSizeForRowType() {
|
|
13004
13075
|
return this.adjustFontSizeForRowType;
|
|
13005
13076
|
},
|
|
@@ -13012,6 +13083,12 @@ Object.assign(exports.PptxSaveOptions.prototype, {
|
|
|
13012
13083
|
setExportViewType(value) {
|
|
13013
13084
|
this.exportViewType = value;
|
|
13014
13085
|
},
|
|
13086
|
+
getAsFlatOpc() {
|
|
13087
|
+
return this.asFlatOpc;
|
|
13088
|
+
},
|
|
13089
|
+
setAsFlatOpc(value) {
|
|
13090
|
+
this.asFlatOpc = value;
|
|
13091
|
+
},
|
|
13015
13092
|
getSaveFormat() {
|
|
13016
13093
|
return this.saveFormat;
|
|
13017
13094
|
},
|
|
@@ -13711,6 +13788,12 @@ Object.assign(exports.WorkbookSettings.prototype, {
|
|
|
13711
13788
|
setHidePivotFieldList(value) {
|
|
13712
13789
|
this.hidePivotFieldList = value;
|
|
13713
13790
|
},
|
|
13791
|
+
getMaxUniqueItemsPerField() {
|
|
13792
|
+
return this.maxUniqueItemsPerField;
|
|
13793
|
+
},
|
|
13794
|
+
setMaxUniqueItemsPerField(value) {
|
|
13795
|
+
this.maxUniqueItemsPerField = value;
|
|
13796
|
+
},
|
|
13714
13797
|
getUpdateLinksType() {
|
|
13715
13798
|
return this.updateLinksType;
|
|
13716
13799
|
},
|
|
@@ -13807,11 +13890,11 @@ Object.assign(exports.WorkbookSettings.prototype, {
|
|
|
13807
13890
|
setUpdateAdjacentCellsBorder(value) {
|
|
13808
13891
|
this.updateAdjacentCellsBorder = value;
|
|
13809
13892
|
},
|
|
13810
|
-
|
|
13811
|
-
return this.
|
|
13893
|
+
getSignificantDigitsType() {
|
|
13894
|
+
return this.significantDigitsType;
|
|
13812
13895
|
},
|
|
13813
|
-
|
|
13814
|
-
this.
|
|
13896
|
+
setSignificantDigitsType(value) {
|
|
13897
|
+
this.significantDigitsType = value;
|
|
13815
13898
|
},
|
|
13816
13899
|
getCheckCompatibility() {
|
|
13817
13900
|
return this.checkCompatibility;
|
|
@@ -16636,6 +16719,15 @@ Object.assign(exports.CalculationOptions.prototype, {
|
|
|
16636
16719
|
setRecursive(value) {
|
|
16637
16720
|
this.recursive = value;
|
|
16638
16721
|
},
|
|
16722
|
+
getUserSpecifiedRefreshDynamicArrayFormula() {
|
|
16723
|
+
return this.userSpecifiedRefreshDynamicArrayFormula;
|
|
16724
|
+
},
|
|
16725
|
+
getRefreshDynamicArrayFormula() {
|
|
16726
|
+
return this.refreshDynamicArrayFormula;
|
|
16727
|
+
},
|
|
16728
|
+
setRefreshDynamicArrayFormula(value) {
|
|
16729
|
+
this.refreshDynamicArrayFormula = value;
|
|
16730
|
+
},
|
|
16639
16731
|
getCustomEngine() {
|
|
16640
16732
|
return this.customEngine;
|
|
16641
16733
|
},
|
|
@@ -21577,6 +21669,12 @@ Object.assign(exports.HtmlSaveOptions.prototype, {
|
|
|
21577
21669
|
setSheetSet(value) {
|
|
21578
21670
|
this.sheetSet = value;
|
|
21579
21671
|
},
|
|
21672
|
+
getEmbeddedFontType() {
|
|
21673
|
+
return this.embeddedFontType;
|
|
21674
|
+
},
|
|
21675
|
+
setEmbeddedFontType(value) {
|
|
21676
|
+
this.embeddedFontType = value;
|
|
21677
|
+
},
|
|
21580
21678
|
getSaveFormat() {
|
|
21581
21679
|
return this.saveFormat;
|
|
21582
21680
|
},
|
|
@@ -29032,11 +29130,11 @@ Object.assign(exports.GroupShape.prototype, {
|
|
|
29032
29130
|
});
|
|
29033
29131
|
|
|
29034
29132
|
Object.assign(exports.CellsHelper, {
|
|
29035
|
-
|
|
29036
|
-
return exports.CellsHelper.
|
|
29133
|
+
getSignificantDigitsType() {
|
|
29134
|
+
return exports.CellsHelper.significantDigitsType;
|
|
29037
29135
|
},
|
|
29038
|
-
|
|
29039
|
-
exports.CellsHelper.
|
|
29136
|
+
setSignificantDigitsType(value) {
|
|
29137
|
+
exports.CellsHelper.significantDigitsType = value;
|
|
29040
29138
|
},
|
|
29041
29139
|
getDPI() {
|
|
29042
29140
|
return exports.CellsHelper.dPI;
|
|
@@ -36934,6 +37032,12 @@ Object.assign(exports.XlsSaveOptions.prototype, {
|
|
|
36934
37032
|
});
|
|
36935
37033
|
|
|
36936
37034
|
Object.assign(exports.OoxmlSaveOptions.prototype, {
|
|
37035
|
+
getAsFlatOpc() {
|
|
37036
|
+
return this.asFlatOpc;
|
|
37037
|
+
},
|
|
37038
|
+
setAsFlatOpc(value) {
|
|
37039
|
+
this.asFlatOpc = value;
|
|
37040
|
+
},
|
|
36937
37041
|
getExportCellName() {
|
|
36938
37042
|
return this.exportCellName;
|
|
36939
37043
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
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.
|
|
39
|
-
"aspose.cells.node.linux.x64": "~25.
|
|
40
|
-
"aspose.cells.node.linux.arm64": "~25.
|
|
41
|
-
"aspose.cells.node.darwin.x64": "~25.
|
|
42
|
-
"aspose.cells.node.darwin.arm64": "~25.
|
|
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
|
@@ -450,6 +450,20 @@ export class CustomRenderSettings {
|
|
|
450
450
|
isNull() : boolean;
|
|
451
451
|
}
|
|
452
452
|
|
|
453
|
+
/**
|
|
454
|
+
* Represents the embedded font type in html.
|
|
455
|
+
*/
|
|
456
|
+
export enum HtmlEmbeddedFontType {
|
|
457
|
+
/**
|
|
458
|
+
* Not embed font.
|
|
459
|
+
*/
|
|
460
|
+
None = 0,
|
|
461
|
+
/**
|
|
462
|
+
* Embed WOFF font.
|
|
463
|
+
*/
|
|
464
|
+
Woff = 1,
|
|
465
|
+
}
|
|
466
|
+
|
|
453
467
|
/**
|
|
454
468
|
* Represents the embedded font type in Svg image.
|
|
455
469
|
*/
|
|
@@ -5962,6 +5976,20 @@ export class PclSaveOptions extends PaginatedSaveOptions {
|
|
|
5962
5976
|
isNull() : boolean;
|
|
5963
5977
|
}
|
|
5964
5978
|
|
|
5979
|
+
/**
|
|
5980
|
+
* Represents what kind of elements should be saved.
|
|
5981
|
+
*/
|
|
5982
|
+
export enum SaveElementType {
|
|
5983
|
+
/**
|
|
5984
|
+
* All data.
|
|
5985
|
+
*/
|
|
5986
|
+
All = 251658239,
|
|
5987
|
+
/**
|
|
5988
|
+
* Only charts.
|
|
5989
|
+
*/
|
|
5990
|
+
Chart = 256,
|
|
5991
|
+
}
|
|
5992
|
+
|
|
5965
5993
|
/**
|
|
5966
5994
|
* Settings for the default values of workbook's style properties.
|
|
5967
5995
|
*/
|
|
@@ -11377,6 +11405,40 @@ export class SettablePivotGlobalizationSettings {
|
|
|
11377
11405
|
isNull() : boolean;
|
|
11378
11406
|
}
|
|
11379
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
|
+
|
|
11380
11442
|
/**
|
|
11381
11443
|
* Represents user's custom calculation engine to extend the default calculation engine of Aspose.Cells.
|
|
11382
11444
|
*
|
|
@@ -14729,30 +14791,36 @@ export class AbstractTextLoadOptions extends LoadOptions {
|
|
|
14729
14791
|
/**
|
|
14730
14792
|
* @deprecated Please use the 'convertNumericData' property instead.
|
|
14731
14793
|
* Gets or sets a value that indicates whether the string in text file is converted to numeric data.
|
|
14794
|
+
* Default value is true.
|
|
14732
14795
|
*/
|
|
14733
14796
|
getConvertNumericData() : boolean;
|
|
14734
14797
|
/**
|
|
14735
14798
|
* Gets or sets a value that indicates whether the string in text file is converted to numeric data.
|
|
14799
|
+
* Default value is true.
|
|
14736
14800
|
*/
|
|
14737
14801
|
convertNumericData : boolean;
|
|
14738
14802
|
/**
|
|
14739
14803
|
* @deprecated Please use the 'convertNumericData' property instead.
|
|
14740
14804
|
* Gets or sets a value that indicates whether the string in text file is converted to numeric data.
|
|
14805
|
+
* Default value is true.
|
|
14741
14806
|
* @param value - The value to set.
|
|
14742
14807
|
*/
|
|
14743
14808
|
setConvertNumericData(value: boolean) : void;
|
|
14744
14809
|
/**
|
|
14745
14810
|
* @deprecated Please use the 'convertDateTimeData' property instead.
|
|
14746
14811
|
* Gets or sets a value that indicates whether the string in text file is converted to date data.
|
|
14812
|
+
* Default value is true.
|
|
14747
14813
|
*/
|
|
14748
14814
|
getConvertDateTimeData() : boolean;
|
|
14749
14815
|
/**
|
|
14750
14816
|
* Gets or sets a value that indicates whether the string in text file is converted to date data.
|
|
14817
|
+
* Default value is true.
|
|
14751
14818
|
*/
|
|
14752
14819
|
convertDateTimeData : boolean;
|
|
14753
14820
|
/**
|
|
14754
14821
|
* @deprecated Please use the 'convertDateTimeData' property instead.
|
|
14755
14822
|
* Gets or sets a value that indicates whether the string in text file is converted to date data.
|
|
14823
|
+
* Default value is true.
|
|
14756
14824
|
* @param value - The value to set.
|
|
14757
14825
|
*/
|
|
14758
14826
|
setConvertDateTimeData(value: boolean) : void;
|
|
@@ -16870,6 +16938,60 @@ export class DocxSaveOptions extends PaginatedSaveOptions {
|
|
|
16870
16938
|
* Only for charts.
|
|
16871
16939
|
*/
|
|
16872
16940
|
setSaveAsEditableShapes(value: boolean) : void;
|
|
16941
|
+
/**
|
|
16942
|
+
* @deprecated Please use the 'embedXlsxAsChartDataSource' property instead.
|
|
16943
|
+
* Indicates whether embedding an xlsx file as data source of the chart.
|
|
16944
|
+
*
|
|
16945
|
+
* @remarks
|
|
16946
|
+
* The default value is true.
|
|
16947
|
+
*/
|
|
16948
|
+
getEmbedXlsxAsChartDataSource() : boolean;
|
|
16949
|
+
/**
|
|
16950
|
+
* Indicates whether embedding an xlsx file as data source of the chart.
|
|
16951
|
+
*
|
|
16952
|
+
* @remarks
|
|
16953
|
+
* The default value is true.
|
|
16954
|
+
*/
|
|
16955
|
+
embedXlsxAsChartDataSource : boolean;
|
|
16956
|
+
/**
|
|
16957
|
+
* @deprecated Please use the 'embedXlsxAsChartDataSource' property instead.
|
|
16958
|
+
* Indicates whether embedding an xlsx file as data source of the chart.
|
|
16959
|
+
* @param value - The value to set.
|
|
16960
|
+
*
|
|
16961
|
+
* @remarks
|
|
16962
|
+
* The default value is true.
|
|
16963
|
+
*/
|
|
16964
|
+
setEmbedXlsxAsChartDataSource(value: boolean) : void;
|
|
16965
|
+
/**
|
|
16966
|
+
* @deprecated Please use the 'asFlatOpc' property instead.
|
|
16967
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK
|
|
16968
|
+
*/
|
|
16969
|
+
getAsFlatOpc() : boolean;
|
|
16970
|
+
/**
|
|
16971
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK
|
|
16972
|
+
*/
|
|
16973
|
+
asFlatOpc : boolean;
|
|
16974
|
+
/**
|
|
16975
|
+
* @deprecated Please use the 'asFlatOpc' property instead.
|
|
16976
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK
|
|
16977
|
+
* @param value - The value to set.
|
|
16978
|
+
*/
|
|
16979
|
+
setAsFlatOpc(value: boolean) : void;
|
|
16980
|
+
/**
|
|
16981
|
+
* @deprecated Please use the 'saveElementType' property instead.
|
|
16982
|
+
* Indicates which elements should be saved.
|
|
16983
|
+
*/
|
|
16984
|
+
getSaveElementType() : SaveElementType;
|
|
16985
|
+
/**
|
|
16986
|
+
* Indicates which elements should be saved.
|
|
16987
|
+
*/
|
|
16988
|
+
saveElementType : SaveElementType;
|
|
16989
|
+
/**
|
|
16990
|
+
* @deprecated Please use the 'saveElementType' property instead.
|
|
16991
|
+
* Indicates which elements should be saved.
|
|
16992
|
+
* @param value - The value to set.
|
|
16993
|
+
*/
|
|
16994
|
+
setSaveElementType(value: SaveElementType) : void;
|
|
16873
16995
|
/**
|
|
16874
16996
|
* @deprecated Please use the 'asNormalView' property instead.
|
|
16875
16997
|
* Exporting Excel file to docx fiel as normal view.
|
|
@@ -17072,6 +17194,63 @@ export class MarkdownSaveOptions extends SaveOptions {
|
|
|
17072
17194
|
* The default value is false.
|
|
17073
17195
|
*/
|
|
17074
17196
|
setCalculateFormula(value: boolean) : void;
|
|
17197
|
+
/**
|
|
17198
|
+
* @deprecated Please use the 'exportHyperlinkAsReference' property instead.
|
|
17199
|
+
* Indicates whether to export hyperlink using reference definitions instead of inline format.
|
|
17200
|
+
* The default value is false.
|
|
17201
|
+
*/
|
|
17202
|
+
getExportHyperlinkAsReference() : boolean;
|
|
17203
|
+
/**
|
|
17204
|
+
* Indicates whether to export hyperlink using reference definitions instead of inline format.
|
|
17205
|
+
* The default value is false.
|
|
17206
|
+
*/
|
|
17207
|
+
exportHyperlinkAsReference : boolean;
|
|
17208
|
+
/**
|
|
17209
|
+
* @deprecated Please use the 'exportHyperlinkAsReference' property instead.
|
|
17210
|
+
* Indicates whether to export hyperlink using reference definitions instead of inline format.
|
|
17211
|
+
* The default value is false.
|
|
17212
|
+
* @param value - The value to set.
|
|
17213
|
+
*/
|
|
17214
|
+
setExportHyperlinkAsReference(value: boolean) : void;
|
|
17215
|
+
/**
|
|
17216
|
+
* @deprecated Please use the 'alignColumnPadding' property instead.
|
|
17217
|
+
* Indicates whether column alignment is enabled for generated Markdown tables.
|
|
17218
|
+
* When enabled, columns are aligned by padding cell content with the specified character(typically ' ' for spaces).
|
|
17219
|
+
* Set to '\0' to disable column alignment (default).
|
|
17220
|
+
*/
|
|
17221
|
+
getAlignColumnPadding() : string;
|
|
17222
|
+
/**
|
|
17223
|
+
* Indicates whether column alignment is enabled for generated Markdown tables.
|
|
17224
|
+
* When enabled, columns are aligned by padding cell content with the specified character(typically ' ' for spaces).
|
|
17225
|
+
* Set to '\0' to disable column alignment (default).
|
|
17226
|
+
*/
|
|
17227
|
+
alignColumnPadding : string;
|
|
17228
|
+
/**
|
|
17229
|
+
* @deprecated Please use the 'alignColumnPadding' property instead.
|
|
17230
|
+
* Indicates whether column alignment is enabled for generated Markdown tables.
|
|
17231
|
+
* When enabled, columns are aligned by padding cell content with the specified character(typically ' ' for spaces).
|
|
17232
|
+
* Set to '\0' to disable column alignment (default).
|
|
17233
|
+
* @param value - The value to set.
|
|
17234
|
+
*/
|
|
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;
|
|
17075
17254
|
/**
|
|
17076
17255
|
* Checks whether the implementation object is null.
|
|
17077
17256
|
*/
|
|
@@ -17168,6 +17347,54 @@ export class PptxSaveOptions extends PaginatedSaveOptions {
|
|
|
17168
17347
|
* @param value - The value to set.
|
|
17169
17348
|
*/
|
|
17170
17349
|
setIgnoreHiddenRows(value: boolean) : void;
|
|
17350
|
+
/**
|
|
17351
|
+
* @deprecated Please use the 'saveAsEditableShapes' property instead.
|
|
17352
|
+
* Save all drawing objects as editable shapes in the pptx file, so you can edit them in PowerPoint.
|
|
17353
|
+
*
|
|
17354
|
+
* @remarks
|
|
17355
|
+
* Only for charts.
|
|
17356
|
+
*/
|
|
17357
|
+
getSaveAsEditableShapes() : boolean;
|
|
17358
|
+
/**
|
|
17359
|
+
* Save all drawing objects as editable shapes in the pptx file, so you can edit them in PowerPoint.
|
|
17360
|
+
*
|
|
17361
|
+
* @remarks
|
|
17362
|
+
* Only for charts.
|
|
17363
|
+
*/
|
|
17364
|
+
saveAsEditableShapes : boolean;
|
|
17365
|
+
/**
|
|
17366
|
+
* @deprecated Please use the 'saveAsEditableShapes' property instead.
|
|
17367
|
+
* Save all drawing objects as editable shapes in the pptx file, so you can edit them in PowerPoint.
|
|
17368
|
+
* @param value - The value to set.
|
|
17369
|
+
*
|
|
17370
|
+
* @remarks
|
|
17371
|
+
* Only for charts.
|
|
17372
|
+
*/
|
|
17373
|
+
setSaveAsEditableShapes(value: boolean) : void;
|
|
17374
|
+
/**
|
|
17375
|
+
* @deprecated Please use the 'embedXlsxAsChartDataSource' property instead.
|
|
17376
|
+
* Indicates whether embedding an xlsx file as data source of the chart.
|
|
17377
|
+
*
|
|
17378
|
+
* @remarks
|
|
17379
|
+
* The default value is true.
|
|
17380
|
+
*/
|
|
17381
|
+
getEmbedXlsxAsChartDataSource() : boolean;
|
|
17382
|
+
/**
|
|
17383
|
+
* Indicates whether embedding an xlsx file as data source of the chart.
|
|
17384
|
+
*
|
|
17385
|
+
* @remarks
|
|
17386
|
+
* The default value is true.
|
|
17387
|
+
*/
|
|
17388
|
+
embedXlsxAsChartDataSource : boolean;
|
|
17389
|
+
/**
|
|
17390
|
+
* @deprecated Please use the 'embedXlsxAsChartDataSource' property instead.
|
|
17391
|
+
* Indicates whether embedding an xlsx file as data source of the chart.
|
|
17392
|
+
* @param value - The value to set.
|
|
17393
|
+
*
|
|
17394
|
+
* @remarks
|
|
17395
|
+
* The default value is true.
|
|
17396
|
+
*/
|
|
17397
|
+
setEmbedXlsxAsChartDataSource(value: boolean) : void;
|
|
17171
17398
|
/**
|
|
17172
17399
|
* @deprecated Please use the 'adjustFontSizeForRowType' property instead.
|
|
17173
17400
|
* Represents what type of line needs to be adjusted size of font if height of row is small.
|
|
@@ -17201,6 +17428,21 @@ export class PptxSaveOptions extends PaginatedSaveOptions {
|
|
|
17201
17428
|
* @param value - The value to set.
|
|
17202
17429
|
*/
|
|
17203
17430
|
setExportViewType(value: SlideViewType) : void;
|
|
17431
|
+
/**
|
|
17432
|
+
* @deprecated Please use the 'asFlatOpc' property instead.
|
|
17433
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK
|
|
17434
|
+
*/
|
|
17435
|
+
getAsFlatOpc() : boolean;
|
|
17436
|
+
/**
|
|
17437
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK
|
|
17438
|
+
*/
|
|
17439
|
+
asFlatOpc : boolean;
|
|
17440
|
+
/**
|
|
17441
|
+
* @deprecated Please use the 'asFlatOpc' property instead.
|
|
17442
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK
|
|
17443
|
+
* @param value - The value to set.
|
|
17444
|
+
*/
|
|
17445
|
+
setAsFlatOpc(value: boolean) : void;
|
|
17204
17446
|
/**
|
|
17205
17447
|
* Checks whether the implementation object is null.
|
|
17206
17448
|
*/
|
|
@@ -19490,6 +19732,10 @@ export class Workbook {
|
|
|
19490
19732
|
* @param rawColor - Raw color.
|
|
19491
19733
|
* @returns
|
|
19492
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.
|
|
19493
19739
|
*/
|
|
19494
19740
|
getMatchingColor(rawColor: Color) : Color;
|
|
19495
19741
|
/**
|
|
@@ -20159,6 +20405,27 @@ export class WorkbookSettings {
|
|
|
20159
20405
|
* @param value - The value to set.
|
|
20160
20406
|
*/
|
|
20161
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;
|
|
20162
20429
|
/**
|
|
20163
20430
|
* @deprecated Please use the 'updateLinksType' property instead.
|
|
20164
20431
|
* Gets and sets how updates external links when the workbook is opened.
|
|
@@ -20439,32 +20706,23 @@ export class WorkbookSettings {
|
|
|
20439
20706
|
*/
|
|
20440
20707
|
setUpdateAdjacentCellsBorder(value: boolean) : void;
|
|
20441
20708
|
/**
|
|
20442
|
-
* @deprecated Please use the '
|
|
20443
|
-
* Gets and sets the
|
|
20444
|
-
*
|
|
20445
|
-
*
|
|
20446
|
-
* @remarks
|
|
20447
|
-
* 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"/>.
|
|
20448
20712
|
*/
|
|
20449
|
-
|
|
20713
|
+
getSignificantDigitsType() : SignificantDigitsType;
|
|
20450
20714
|
/**
|
|
20451
|
-
* Gets and sets the
|
|
20452
|
-
*
|
|
20453
|
-
*
|
|
20454
|
-
* @remarks
|
|
20455
|
-
* 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"/>.
|
|
20456
20717
|
*/
|
|
20457
|
-
|
|
20718
|
+
significantDigitsType : SignificantDigitsType;
|
|
20458
20719
|
/**
|
|
20459
|
-
* @deprecated Please use the '
|
|
20460
|
-
* Gets and sets the
|
|
20461
|
-
*
|
|
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"/>.
|
|
20462
20723
|
* @param value - The value to set.
|
|
20463
|
-
*
|
|
20464
|
-
* @remarks
|
|
20465
|
-
* Only could be 15 or 17 now.
|
|
20466
20724
|
*/
|
|
20467
|
-
|
|
20725
|
+
setSignificantDigitsType(value: SignificantDigitsType) : void;
|
|
20468
20726
|
/**
|
|
20469
20727
|
* @deprecated Please use the 'checkCompatibility' property instead.
|
|
20470
20728
|
* Indicates whether check compatibility with earlier versions when saving workbook.
|
|
@@ -29046,6 +29304,71 @@ export class CalculationOptions {
|
|
|
29046
29304
|
* @param value - The value to set.
|
|
29047
29305
|
*/
|
|
29048
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;
|
|
29049
29372
|
/**
|
|
29050
29373
|
* @deprecated Please use the 'customEngine' property instead.
|
|
29051
29374
|
* The custom formula calculation engine to extend the default calculation engine of Aspose.Cells.
|
|
@@ -47876,6 +48199,24 @@ export class HtmlSaveOptions extends SaveOptions {
|
|
|
47876
48199
|
* @param value - The value to set.
|
|
47877
48200
|
*/
|
|
47878
48201
|
setSheetSet(value: SheetSet) : void;
|
|
48202
|
+
/**
|
|
48203
|
+
* @deprecated Please use the 'embeddedFontType' property instead.
|
|
48204
|
+
* Gets or sets the type of font that embedded in html.
|
|
48205
|
+
* Default value is <see cref="HtmlEmbeddedFontType.None"/> which indicates that it will not embed font in html.
|
|
48206
|
+
*/
|
|
48207
|
+
getEmbeddedFontType() : HtmlEmbeddedFontType;
|
|
48208
|
+
/**
|
|
48209
|
+
* Gets or sets the type of font that embedded in html.
|
|
48210
|
+
* Default value is <see cref="HtmlEmbeddedFontType.None"/> which indicates that it will not embed font in html.
|
|
48211
|
+
*/
|
|
48212
|
+
embeddedFontType : HtmlEmbeddedFontType;
|
|
48213
|
+
/**
|
|
48214
|
+
* @deprecated Please use the 'embeddedFontType' property instead.
|
|
48215
|
+
* Gets or sets the type of font that embedded in html.
|
|
48216
|
+
* Default value is <see cref="HtmlEmbeddedFontType.None"/> which indicates that it will not embed font in html.
|
|
48217
|
+
* @param value - The value to set.
|
|
48218
|
+
*/
|
|
48219
|
+
setEmbeddedFontType(value: HtmlEmbeddedFontType) : void;
|
|
47879
48220
|
/**
|
|
47880
48221
|
* Checks whether the implementation object is null.
|
|
47881
48222
|
*/
|
|
@@ -53430,39 +53771,51 @@ export enum AutoShapeType {
|
|
|
53430
53771
|
*/
|
|
53431
53772
|
CurvedConnector5 = 40,
|
|
53432
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.
|
|
53433
53775
|
*/
|
|
53434
53776
|
LineCalloutNoBorder2 = 41,
|
|
53435
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.
|
|
53436
53779
|
*/
|
|
53437
53780
|
LineCalloutNoBorder3 = 42,
|
|
53438
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.
|
|
53439
53783
|
*/
|
|
53440
53784
|
LineCalloutNoBorder4 = 43,
|
|
53441
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.
|
|
53442
53787
|
*/
|
|
53443
53788
|
LineCalloutWithAccentBar2 = 44,
|
|
53444
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.
|
|
53445
53791
|
*/
|
|
53446
53792
|
LineCalloutWithAccentBar3 = 45,
|
|
53447
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.
|
|
53448
53795
|
*/
|
|
53449
53796
|
LineCalloutWithAccentBar4 = 46,
|
|
53450
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.
|
|
53451
53799
|
*/
|
|
53452
53800
|
LineCalloutWithBorder2 = 47,
|
|
53453
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.
|
|
53454
53803
|
*/
|
|
53455
53804
|
LineCalloutWithBorder3 = 48,
|
|
53456
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.
|
|
53457
53807
|
*/
|
|
53458
53808
|
LineCalloutWithBorder4 = 49,
|
|
53459
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.
|
|
53460
53811
|
*/
|
|
53461
53812
|
LineCalloutWithBorderAndAccentBar2 = 50,
|
|
53462
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.
|
|
53463
53815
|
*/
|
|
53464
53816
|
LineCalloutWithBorderAndAccentBar3 = 51,
|
|
53465
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.
|
|
53466
53819
|
*/
|
|
53467
53820
|
LineCalloutWithBorderAndAccentBar4 = 52,
|
|
53468
53821
|
/**
|
|
@@ -53882,15 +54235,19 @@ export enum AutoShapeType {
|
|
|
53882
54235
|
*/
|
|
53883
54236
|
FlowChartOffpageConnector = 177,
|
|
53884
54237
|
/**
|
|
54238
|
+
* Specifies the "Line Callout 1(No Border)" type of the Ms Excel 97-2003 version.
|
|
53885
54239
|
*/
|
|
53886
54240
|
LineCalloutNoBorder1 = 178,
|
|
53887
54241
|
/**
|
|
54242
|
+
* Specifies the "Line Callout 1(Accent Bar)" type of the Ms Excel 97-2003 version.
|
|
53888
54243
|
*/
|
|
53889
54244
|
LineCalloutWithAccentBar1 = 179,
|
|
53890
54245
|
/**
|
|
54246
|
+
* Specifies the "Line Callout 1" type of the Ms Excel 97-2003 version.
|
|
53891
54247
|
*/
|
|
53892
54248
|
LineCalloutWithBorder1 = 180,
|
|
53893
54249
|
/**
|
|
54250
|
+
* Specifies the "Line Callout 1(Border and Accent Bar)" type of the Ms Excel 97-2003 version.
|
|
53894
54251
|
*/
|
|
53895
54252
|
LineCalloutWithBorderAndAccentBar1 = 181,
|
|
53896
54253
|
/**
|
|
@@ -59209,6 +59566,8 @@ export class CopyOptions {
|
|
|
59209
59566
|
*
|
|
59210
59567
|
* @remarks
|
|
59211
59568
|
* The default value is false, it works as MS Excel.
|
|
59569
|
+
* For example: if copying a chart with the data source "sheet1!A1:B10" from worksheet "sheet1 to other worksheet "sheet2",
|
|
59570
|
+
* The data source will be changed as "sheet2!A1:B10"
|
|
59212
59571
|
*/
|
|
59213
59572
|
getReferToDestinationSheet() : boolean;
|
|
59214
59573
|
/**
|
|
@@ -59218,6 +59577,8 @@ export class CopyOptions {
|
|
|
59218
59577
|
*
|
|
59219
59578
|
* @remarks
|
|
59220
59579
|
* The default value is false, it works as MS Excel.
|
|
59580
|
+
* For example: if copying a chart with the data source "sheet1!A1:B10" from worksheet "sheet1 to other worksheet "sheet2",
|
|
59581
|
+
* The data source will be changed as "sheet2!A1:B10"
|
|
59221
59582
|
*/
|
|
59222
59583
|
referToDestinationSheet : boolean;
|
|
59223
59584
|
/**
|
|
@@ -59229,6 +59590,8 @@ export class CopyOptions {
|
|
|
59229
59590
|
*
|
|
59230
59591
|
* @remarks
|
|
59231
59592
|
* The default value is false, it works as MS Excel.
|
|
59593
|
+
* For example: if copying a chart with the data source "sheet1!A1:B10" from worksheet "sheet1 to other worksheet "sheet2",
|
|
59594
|
+
* The data source will be changed as "sheet2!A1:B10"
|
|
59232
59595
|
*/
|
|
59233
59596
|
setReferToDestinationSheet(value: boolean) : void;
|
|
59234
59597
|
/**
|
|
@@ -60857,11 +61220,13 @@ export class CustomDocumentPropertyCollection extends DocumentPropertyCollection
|
|
|
60857
61220
|
*/
|
|
60858
61221
|
addLinkToContent(name: string, source: string) : DocumentProperty;
|
|
60859
61222
|
/**
|
|
60860
|
-
*
|
|
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).
|
|
60861
61225
|
*/
|
|
60862
61226
|
updateLinkedPropertyValue() : void;
|
|
60863
61227
|
/**
|
|
60864
|
-
*
|
|
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).
|
|
60865
61230
|
*/
|
|
60866
61231
|
updateLinkedRange() : void;
|
|
60867
61232
|
/**
|
|
@@ -61933,6 +62298,10 @@ export enum FileFormatType {
|
|
|
61933
62298
|
* Xbase Data file
|
|
61934
62299
|
*/
|
|
61935
62300
|
Dbf = 515,
|
|
62301
|
+
/**
|
|
62302
|
+
* Flat opc file
|
|
62303
|
+
*/
|
|
62304
|
+
FlatOpc = 516,
|
|
61936
62305
|
/**
|
|
61937
62306
|
* Rrepesents XHtml file.
|
|
61938
62307
|
*/
|
|
@@ -63270,32 +63639,23 @@ export class GroupShape extends Shape {
|
|
|
63270
63639
|
*/
|
|
63271
63640
|
export class CellsHelper {
|
|
63272
63641
|
/**
|
|
63273
|
-
* @deprecated Please use the '
|
|
63274
|
-
* Gets and sets the
|
|
63275
|
-
*
|
|
63276
|
-
*
|
|
63277
|
-
* @remarks
|
|
63278
|
-
* 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"/>.
|
|
63279
63645
|
*/
|
|
63280
|
-
static
|
|
63646
|
+
static getSignificantDigitsType() : SignificantDigitsType;
|
|
63281
63647
|
/**
|
|
63282
|
-
* Gets and sets the
|
|
63283
|
-
*
|
|
63284
|
-
*
|
|
63285
|
-
* @remarks
|
|
63286
|
-
* 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"/>.
|
|
63287
63650
|
*/
|
|
63288
|
-
static
|
|
63651
|
+
static significantDigitsType : SignificantDigitsType;
|
|
63289
63652
|
/**
|
|
63290
|
-
* @deprecated Please use the '
|
|
63291
|
-
* Gets and sets the
|
|
63292
|
-
*
|
|
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"/>.
|
|
63293
63656
|
* @param value - The value to set.
|
|
63294
|
-
*
|
|
63295
|
-
* @remarks
|
|
63296
|
-
* Only could be 15 or 17 now.
|
|
63297
63657
|
*/
|
|
63298
|
-
static
|
|
63658
|
+
static setSignificantDigitsType(value: SignificantDigitsType) : void;
|
|
63299
63659
|
/**
|
|
63300
63660
|
* @deprecated Please use the 'dPI' property instead.
|
|
63301
63661
|
* Gets the DPI of the machine.
|
|
@@ -76223,6 +76583,21 @@ export class OoxmlSaveOptions extends SaveOptions {
|
|
|
76223
76583
|
* @param saveFormat - The file format. /// It should be one of following types: <see cref="SaveFormat.Xlsx"/>, <see cref="SaveFormat.Xltx"/>, /// <see cref="SaveFormat.Xlam"/>, <see cref="SaveFormat.Xlsm"/> or <see cref="SaveFormat.Xltm"/>, /// otherwise the saved format will be set as <see cref="SaveFormat.Xlsx"/> automatically.
|
|
76224
76584
|
*/
|
|
76225
76585
|
constructor(saveFormat: SaveFormat);
|
|
76586
|
+
/**
|
|
76587
|
+
* @deprecated Please use the 'asFlatOpc' property instead.
|
|
76588
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK.
|
|
76589
|
+
*/
|
|
76590
|
+
getAsFlatOpc() : boolean;
|
|
76591
|
+
/**
|
|
76592
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK.
|
|
76593
|
+
*/
|
|
76594
|
+
asFlatOpc : boolean;
|
|
76595
|
+
/**
|
|
76596
|
+
* @deprecated Please use the 'asFlatOpc' property instead.
|
|
76597
|
+
* Indicates whether saving as a flat opc file which can be generated by Open XML SDK.
|
|
76598
|
+
* @param value - The value to set.
|
|
76599
|
+
*/
|
|
76600
|
+
setAsFlatOpc(value: boolean) : void;
|
|
76226
76601
|
/**
|
|
76227
76602
|
* @deprecated Please use the 'exportCellName' property instead.
|
|
76228
76603
|
* Indicates if export cell name to Excel2007 .xlsx (.xlsm, .xltx, .xltm) file.
|