aspose.cells.node 25.7.0 → 25.8.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 +220 -4
- package/package.json +6 -6
- package/types.d.ts +471 -43
package/aspose.cells.js
CHANGED
|
@@ -61,11 +61,32 @@ exports.AutoFitWrappedTextType = {
|
|
|
61
61
|
Paragraph : 1,
|
|
62
62
|
};
|
|
63
63
|
|
|
64
|
+
exports.ChartColorPaletteType = {
|
|
65
|
+
MonochromaticPalette1 : 1,
|
|
66
|
+
MonochromaticPalette2 : 2,
|
|
67
|
+
MonochromaticPalette3 : 3,
|
|
68
|
+
MonochromaticPalette4 : 4,
|
|
69
|
+
MonochromaticPalette5 : 5,
|
|
70
|
+
MonochromaticPalette6 : 6,
|
|
71
|
+
MonochromaticPalette7 : 7,
|
|
72
|
+
MonochromaticPalette8 : 8,
|
|
73
|
+
MonochromaticPalette9 : 9,
|
|
74
|
+
MonochromaticPalette10 : 10,
|
|
75
|
+
MonochromaticPalette11 : 11,
|
|
76
|
+
MonochromaticPalette12 : 12,
|
|
77
|
+
MonochromaticPalette13 : 13,
|
|
78
|
+
};
|
|
79
|
+
|
|
64
80
|
exports.SvgEmbeddedFontType = {
|
|
65
81
|
None : 0,
|
|
66
82
|
Woff : 1,
|
|
67
83
|
};
|
|
68
84
|
|
|
85
|
+
exports.ShapePathPointValueType = {
|
|
86
|
+
Position : 0,
|
|
87
|
+
Angle : 1,
|
|
88
|
+
};
|
|
89
|
+
|
|
69
90
|
exports.FontFileFormatType = {
|
|
70
91
|
Unknown : 0,
|
|
71
92
|
Ttf : 1,
|
|
@@ -1675,10 +1696,10 @@ exports.MirrorType = {
|
|
|
1675
1696
|
};
|
|
1676
1697
|
|
|
1677
1698
|
exports.ShapePathType = {
|
|
1678
|
-
LineTo :
|
|
1679
|
-
CubicBezierCurveTo :
|
|
1680
|
-
MoveTo :
|
|
1681
|
-
Close :
|
|
1699
|
+
LineTo : 1,
|
|
1700
|
+
CubicBezierCurveTo : 3,
|
|
1701
|
+
MoveTo : 0,
|
|
1702
|
+
Close : 128,
|
|
1682
1703
|
End : 4,
|
|
1683
1704
|
Escape : 5,
|
|
1684
1705
|
ArcTo : 6,
|
|
@@ -11955,6 +11976,165 @@ Object.assign(exports.AbstractTextLoadOptions.prototype, {
|
|
|
11955
11976
|
}
|
|
11956
11977
|
});
|
|
11957
11978
|
|
|
11979
|
+
Object.assign(exports.MarkdownLoadOptions.prototype, {
|
|
11980
|
+
getHasFormula() {
|
|
11981
|
+
return this.hasFormula;
|
|
11982
|
+
},
|
|
11983
|
+
setHasFormula(value) {
|
|
11984
|
+
this.hasFormula = value;
|
|
11985
|
+
},
|
|
11986
|
+
getLoadFormat() {
|
|
11987
|
+
return this.loadFormat;
|
|
11988
|
+
},
|
|
11989
|
+
getPassword() {
|
|
11990
|
+
return this.password;
|
|
11991
|
+
},
|
|
11992
|
+
setPassword(value) {
|
|
11993
|
+
this.password = value;
|
|
11994
|
+
},
|
|
11995
|
+
getParsingFormulaOnOpen() {
|
|
11996
|
+
return this.parsingFormulaOnOpen;
|
|
11997
|
+
},
|
|
11998
|
+
setParsingFormulaOnOpen(value) {
|
|
11999
|
+
this.parsingFormulaOnOpen = value;
|
|
12000
|
+
},
|
|
12001
|
+
getParsingPivotCachedRecords() {
|
|
12002
|
+
return this.parsingPivotCachedRecords;
|
|
12003
|
+
},
|
|
12004
|
+
setParsingPivotCachedRecords(value) {
|
|
12005
|
+
this.parsingPivotCachedRecords = value;
|
|
12006
|
+
},
|
|
12007
|
+
getLanguageCode() {
|
|
12008
|
+
return this.languageCode;
|
|
12009
|
+
},
|
|
12010
|
+
setLanguageCode(value) {
|
|
12011
|
+
this.languageCode = value;
|
|
12012
|
+
},
|
|
12013
|
+
getRegion() {
|
|
12014
|
+
return this.region;
|
|
12015
|
+
},
|
|
12016
|
+
setRegion(value) {
|
|
12017
|
+
this.region = value;
|
|
12018
|
+
},
|
|
12019
|
+
getDefaultStyleSettings() {
|
|
12020
|
+
return this.defaultStyleSettings;
|
|
12021
|
+
},
|
|
12022
|
+
getInterruptMonitor() {
|
|
12023
|
+
return this.interruptMonitor;
|
|
12024
|
+
},
|
|
12025
|
+
setInterruptMonitor(value) {
|
|
12026
|
+
this.interruptMonitor = value;
|
|
12027
|
+
},
|
|
12028
|
+
getIgnoreNotPrinted() {
|
|
12029
|
+
return this.ignoreNotPrinted;
|
|
12030
|
+
},
|
|
12031
|
+
setIgnoreNotPrinted(value) {
|
|
12032
|
+
this.ignoreNotPrinted = value;
|
|
12033
|
+
},
|
|
12034
|
+
getCheckDataValid() {
|
|
12035
|
+
return this.checkDataValid;
|
|
12036
|
+
},
|
|
12037
|
+
setCheckDataValid(value) {
|
|
12038
|
+
this.checkDataValid = value;
|
|
12039
|
+
},
|
|
12040
|
+
getCheckExcelRestriction() {
|
|
12041
|
+
return this.checkExcelRestriction;
|
|
12042
|
+
},
|
|
12043
|
+
setCheckExcelRestriction(value) {
|
|
12044
|
+
this.checkExcelRestriction = value;
|
|
12045
|
+
},
|
|
12046
|
+
getKeepUnparsedData() {
|
|
12047
|
+
return this.keepUnparsedData;
|
|
12048
|
+
},
|
|
12049
|
+
setKeepUnparsedData(value) {
|
|
12050
|
+
this.keepUnparsedData = value;
|
|
12051
|
+
},
|
|
12052
|
+
getLoadFilter() {
|
|
12053
|
+
return this.loadFilter;
|
|
12054
|
+
},
|
|
12055
|
+
setLoadFilter(value) {
|
|
12056
|
+
this.loadFilter = value;
|
|
12057
|
+
},
|
|
12058
|
+
getLightCellsDataHandler() {
|
|
12059
|
+
return this.lightCellsDataHandler;
|
|
12060
|
+
},
|
|
12061
|
+
setLightCellsDataHandler(value) {
|
|
12062
|
+
this.lightCellsDataHandler = value;
|
|
12063
|
+
},
|
|
12064
|
+
getMemorySetting() {
|
|
12065
|
+
return this.memorySetting;
|
|
12066
|
+
},
|
|
12067
|
+
setMemorySetting(value) {
|
|
12068
|
+
this.memorySetting = value;
|
|
12069
|
+
},
|
|
12070
|
+
setWarningCallback(value) {
|
|
12071
|
+
this.warningCallback = value;
|
|
12072
|
+
},
|
|
12073
|
+
getWarningCallback() {
|
|
12074
|
+
return this.warningCallback;
|
|
12075
|
+
},
|
|
12076
|
+
getAutoFitterOptions() {
|
|
12077
|
+
return this.autoFitterOptions;
|
|
12078
|
+
},
|
|
12079
|
+
setAutoFitterOptions(value) {
|
|
12080
|
+
this.autoFitterOptions = value;
|
|
12081
|
+
},
|
|
12082
|
+
getAutoFilter() {
|
|
12083
|
+
return this.autoFilter;
|
|
12084
|
+
},
|
|
12085
|
+
setAutoFilter(value) {
|
|
12086
|
+
this.autoFilter = value;
|
|
12087
|
+
},
|
|
12088
|
+
getFontConfigs() {
|
|
12089
|
+
return this.fontConfigs;
|
|
12090
|
+
},
|
|
12091
|
+
setFontConfigs(value) {
|
|
12092
|
+
this.fontConfigs = value;
|
|
12093
|
+
},
|
|
12094
|
+
getIgnoreUselessShapes() {
|
|
12095
|
+
return this.ignoreUselessShapes;
|
|
12096
|
+
},
|
|
12097
|
+
setIgnoreUselessShapes(value) {
|
|
12098
|
+
this.ignoreUselessShapes = value;
|
|
12099
|
+
},
|
|
12100
|
+
getPreservePaddingSpacesInFormula() {
|
|
12101
|
+
return this.preservePaddingSpacesInFormula;
|
|
12102
|
+
},
|
|
12103
|
+
setPreservePaddingSpacesInFormula(value) {
|
|
12104
|
+
this.preservePaddingSpacesInFormula = value;
|
|
12105
|
+
},
|
|
12106
|
+
getEncoding() {
|
|
12107
|
+
return this.encoding;
|
|
12108
|
+
},
|
|
12109
|
+
setEncoding(value) {
|
|
12110
|
+
this.encoding = value;
|
|
12111
|
+
},
|
|
12112
|
+
getLoadStyleStrategy() {
|
|
12113
|
+
return this.loadStyleStrategy;
|
|
12114
|
+
},
|
|
12115
|
+
setLoadStyleStrategy(value) {
|
|
12116
|
+
this.loadStyleStrategy = value;
|
|
12117
|
+
},
|
|
12118
|
+
getConvertNumericData() {
|
|
12119
|
+
return this.convertNumericData;
|
|
12120
|
+
},
|
|
12121
|
+
setConvertNumericData(value) {
|
|
12122
|
+
this.convertNumericData = value;
|
|
12123
|
+
},
|
|
12124
|
+
getConvertDateTimeData() {
|
|
12125
|
+
return this.convertDateTimeData;
|
|
12126
|
+
},
|
|
12127
|
+
setConvertDateTimeData(value) {
|
|
12128
|
+
this.convertDateTimeData = value;
|
|
12129
|
+
},
|
|
12130
|
+
getKeepPrecision() {
|
|
12131
|
+
return this.keepPrecision;
|
|
12132
|
+
},
|
|
12133
|
+
setKeepPrecision(value) {
|
|
12134
|
+
this.keepPrecision = value;
|
|
12135
|
+
}
|
|
12136
|
+
});
|
|
12137
|
+
|
|
11958
12138
|
Object.assign(exports.OdsLoadOptions.prototype, {
|
|
11959
12139
|
getApplyExcelDefaultStyleToHyperlink() {
|
|
11960
12140
|
return this.applyExcelDefaultStyleToHyperlink;
|
|
@@ -13543,6 +13723,9 @@ Object.assign(exports.WorkbookSettings.prototype, {
|
|
|
13543
13723
|
getMaxColumn() {
|
|
13544
13724
|
return this.maxColumn;
|
|
13545
13725
|
},
|
|
13726
|
+
getSmartTagOptions() {
|
|
13727
|
+
return this.smartTagOptions;
|
|
13728
|
+
},
|
|
13546
13729
|
getDefaultStyleSettings() {
|
|
13547
13730
|
return this.defaultStyleSettings;
|
|
13548
13731
|
},
|
|
@@ -17718,6 +17901,33 @@ Object.assign(exports.ShapePathPoint.prototype, {
|
|
|
17718
17901
|
},
|
|
17719
17902
|
setY(value) {
|
|
17720
17903
|
this.y = value;
|
|
17904
|
+
},
|
|
17905
|
+
getXPixel() {
|
|
17906
|
+
return this.xPixel;
|
|
17907
|
+
},
|
|
17908
|
+
setXPixel(value) {
|
|
17909
|
+
this.xPixel = value;
|
|
17910
|
+
},
|
|
17911
|
+
getYPixel() {
|
|
17912
|
+
return this.yPixel;
|
|
17913
|
+
},
|
|
17914
|
+
setYPixel(value) {
|
|
17915
|
+
this.yPixel = value;
|
|
17916
|
+
},
|
|
17917
|
+
getXAngle() {
|
|
17918
|
+
return this.xAngle;
|
|
17919
|
+
},
|
|
17920
|
+
setXAngle(value) {
|
|
17921
|
+
this.xAngle = value;
|
|
17922
|
+
},
|
|
17923
|
+
getYAngle() {
|
|
17924
|
+
return this.yAngle;
|
|
17925
|
+
},
|
|
17926
|
+
setYAngle(value) {
|
|
17927
|
+
this.yAngle = value;
|
|
17928
|
+
},
|
|
17929
|
+
getType() {
|
|
17930
|
+
return this.type;
|
|
17721
17931
|
}
|
|
17722
17932
|
});
|
|
17723
17933
|
|
|
@@ -21631,6 +21841,12 @@ Object.assign(exports.PasteOptions.prototype, {
|
|
|
21631
21841
|
setSkipBlanks(value) {
|
|
21632
21842
|
this.skipBlanks = value;
|
|
21633
21843
|
},
|
|
21844
|
+
getKeepOldTables() {
|
|
21845
|
+
return this.keepOldTables;
|
|
21846
|
+
},
|
|
21847
|
+
setKeepOldTables(value) {
|
|
21848
|
+
this.keepOldTables = value;
|
|
21849
|
+
},
|
|
21634
21850
|
getOnlyVisibleCells() {
|
|
21635
21851
|
return this.onlyVisibleCells;
|
|
21636
21852
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aspose.cells.node",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.8.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.8.0",
|
|
39
|
+
"aspose.cells.node.linux.x64": "~25.8.0",
|
|
40
|
+
"aspose.cells.node.linux.arm64": "~25.8.0",
|
|
41
|
+
"aspose.cells.node.darwin.x64": "~25.8.0",
|
|
42
|
+
"aspose.cells.node.darwin.arm64": "~25.8.0"
|
|
43
43
|
}
|
|
44
44
|
}
|
package/types.d.ts
CHANGED
|
@@ -368,6 +368,64 @@ export enum AutoFitWrappedTextType {
|
|
|
368
368
|
Paragraph = 1,
|
|
369
369
|
}
|
|
370
370
|
|
|
371
|
+
/**
|
|
372
|
+
* Enumerates all Monochromatic Palettes used in Excel chart.
|
|
373
|
+
*/
|
|
374
|
+
export enum ChartColorPaletteType {
|
|
375
|
+
/**
|
|
376
|
+
* accent1 theme color gradient, dark to light.
|
|
377
|
+
*/
|
|
378
|
+
MonochromaticPalette1 = 1,
|
|
379
|
+
/**
|
|
380
|
+
* accent2 theme color gradient, dark to light.
|
|
381
|
+
*/
|
|
382
|
+
MonochromaticPalette2 = 2,
|
|
383
|
+
/**
|
|
384
|
+
* accent3 theme color gradient, dark to light.
|
|
385
|
+
*/
|
|
386
|
+
MonochromaticPalette3 = 3,
|
|
387
|
+
/**
|
|
388
|
+
* accent4 theme color gradient, dark to light.
|
|
389
|
+
*/
|
|
390
|
+
MonochromaticPalette4 = 4,
|
|
391
|
+
/**
|
|
392
|
+
* accent5 theme color gradient, dark to light.
|
|
393
|
+
*/
|
|
394
|
+
MonochromaticPalette5 = 5,
|
|
395
|
+
/**
|
|
396
|
+
* accent6 theme color gradient, dark to light.
|
|
397
|
+
*/
|
|
398
|
+
MonochromaticPalette6 = 6,
|
|
399
|
+
/**
|
|
400
|
+
* accent7 theme color gradient.
|
|
401
|
+
*/
|
|
402
|
+
MonochromaticPalette7 = 7,
|
|
403
|
+
/**
|
|
404
|
+
* accent1 theme color gradient, light to dark.
|
|
405
|
+
*/
|
|
406
|
+
MonochromaticPalette8 = 8,
|
|
407
|
+
/**
|
|
408
|
+
* accent2 theme color gradient, light to dark.
|
|
409
|
+
*/
|
|
410
|
+
MonochromaticPalette9 = 9,
|
|
411
|
+
/**
|
|
412
|
+
* accent3 theme color gradient, light to dark.
|
|
413
|
+
*/
|
|
414
|
+
MonochromaticPalette10 = 10,
|
|
415
|
+
/**
|
|
416
|
+
* accent4 theme color gradient, light to dark.
|
|
417
|
+
*/
|
|
418
|
+
MonochromaticPalette11 = 11,
|
|
419
|
+
/**
|
|
420
|
+
* accent5 theme color gradient, light to dark.
|
|
421
|
+
*/
|
|
422
|
+
MonochromaticPalette12 = 12,
|
|
423
|
+
/**
|
|
424
|
+
* accent6 theme color gradient, light to dark.
|
|
425
|
+
*/
|
|
426
|
+
MonochromaticPalette13 = 13,
|
|
427
|
+
}
|
|
428
|
+
|
|
371
429
|
/**
|
|
372
430
|
* Represents custom settings during rendering.
|
|
373
431
|
*/
|
|
@@ -490,6 +548,22 @@ export class SvgImageOptions extends ImageOrPrintOptions {
|
|
|
490
548
|
isNull() : boolean;
|
|
491
549
|
}
|
|
492
550
|
|
|
551
|
+
/**
|
|
552
|
+
* Specifies the value type of <see cref="ShapePathPoint"/> object
|
|
553
|
+
*/
|
|
554
|
+
export enum ShapePathPointValueType {
|
|
555
|
+
/**
|
|
556
|
+
* Specifies the type of the object is location coordinates.
|
|
557
|
+
* The <see cref="ShapePathPoint"/> object stores the coordinate values of a point.
|
|
558
|
+
*/
|
|
559
|
+
Position = 0,
|
|
560
|
+
/**
|
|
561
|
+
* Specifies the type of the object is angle markers.
|
|
562
|
+
* The <see cref="ShapePathPoint"/> object stores the start and end angles of the arc.
|
|
563
|
+
*/
|
|
564
|
+
Angle = 1,
|
|
565
|
+
}
|
|
566
|
+
|
|
493
567
|
/**
|
|
494
568
|
* Represents data infomation of font file data.
|
|
495
569
|
*/
|
|
@@ -5894,7 +5968,7 @@ export class PclSaveOptions extends PaginatedSaveOptions {
|
|
|
5894
5968
|
export class DefaultStyleSettings {
|
|
5895
5969
|
/**
|
|
5896
5970
|
* @deprecated Please use the 'builtInPreference' property instead.
|
|
5897
|
-
* Indicates whether property for number format is
|
|
5971
|
+
* Indicates whether property for number format is preferable when the style defines both built-in number and custom pattern.
|
|
5898
5972
|
* Default value is false, that means by default custom pattern will be used to format values as long as it is not empty for one style.
|
|
5899
5973
|
*
|
|
5900
5974
|
* @remarks
|
|
@@ -5903,7 +5977,7 @@ export class DefaultStyleSettings {
|
|
|
5903
5977
|
*/
|
|
5904
5978
|
getBuiltInPreference() : boolean;
|
|
5905
5979
|
/**
|
|
5906
|
-
* Indicates whether property for number format is
|
|
5980
|
+
* Indicates whether property for number format is preferable when the style defines both built-in number and custom pattern.
|
|
5907
5981
|
* Default value is false, that means by default custom pattern will be used to format values as long as it is not empty for one style.
|
|
5908
5982
|
*
|
|
5909
5983
|
* @remarks
|
|
@@ -5913,7 +5987,7 @@ export class DefaultStyleSettings {
|
|
|
5913
5987
|
builtInPreference : boolean;
|
|
5914
5988
|
/**
|
|
5915
5989
|
* @deprecated Please use the 'builtInPreference' property instead.
|
|
5916
|
-
* Indicates whether property for number format is
|
|
5990
|
+
* Indicates whether property for number format is preferable when the style defines both built-in number and custom pattern.
|
|
5917
5991
|
* Default value is false, that means by default custom pattern will be used to format values as long as it is not empty for one style.
|
|
5918
5992
|
* @param value - The value to set.
|
|
5919
5993
|
*
|
|
@@ -7357,18 +7431,19 @@ export enum MemorySetting {
|
|
|
7357
7431
|
*/
|
|
7358
7432
|
Normal = 0,
|
|
7359
7433
|
/**
|
|
7360
|
-
* Memory performance
|
|
7434
|
+
* Memory performance preferable.
|
|
7361
7435
|
*
|
|
7362
7436
|
* @remarks
|
|
7363
7437
|
* With this mode the cells data will be maintained in compact format
|
|
7364
7438
|
* to decrease the memory cost. On other hand, the compact data also may
|
|
7365
7439
|
* cause higher time cost, especially when updating the cells data,
|
|
7366
|
-
* or accessing it randomly
|
|
7367
|
-
*
|
|
7440
|
+
* or accessing it randomly.
|
|
7441
|
+
* <br></br>
|
|
7442
|
+
* This option is available since v8.0.0.
|
|
7368
7443
|
*/
|
|
7369
7444
|
MemoryPreference = 1,
|
|
7370
7445
|
/**
|
|
7371
|
-
* Memory performance
|
|
7446
|
+
* Memory performance preferable and using file instead of memory
|
|
7372
7447
|
* to maintain the cells data.
|
|
7373
7448
|
*
|
|
7374
7449
|
* @remarks
|
|
@@ -7377,28 +7452,32 @@ export enum MemorySetting {
|
|
|
7377
7452
|
* So when comparing with <see cref="MemoryPreference"/> mode,
|
|
7378
7453
|
* this mode may decrease the memory cost more, but the IO operations for accessing
|
|
7379
7454
|
* cells data also will cause higher time cost.
|
|
7455
|
+
* <br></br>
|
|
7456
|
+
* This option is available since v25.7.0.
|
|
7380
7457
|
* <list type="bullet">
|
|
7381
|
-
* <listheader>
|
|
7382
|
-
*
|
|
7458
|
+
* <listheader><description>
|
|
7459
|
+
* Some notable limits and recommended operations when using this mode:
|
|
7460
|
+
* </description></listheader>
|
|
7461
|
+
* <item><description>
|
|
7383
7462
|
* When this mode is used for any worksheet in one workbook, <see cref="Workbook.Dispose()"/>
|
|
7384
7463
|
* should be called at the end of work to release all resources such as the temporary files.
|
|
7385
|
-
* </item>
|
|
7386
|
-
* <item>
|
|
7464
|
+
* </description></item>
|
|
7465
|
+
* <item><description>
|
|
7387
7466
|
* Randomly accessing cells will give poor performance because data needs
|
|
7388
7467
|
* to be read randomly and repeatedly(so the pointer in the file will be
|
|
7389
7468
|
* changed accordingly and IO operations will be required repeatedly).
|
|
7390
7469
|
* If possible, please always access the data sequentially(row by row).
|
|
7391
|
-
* </item>
|
|
7392
|
-
* <item>
|
|
7470
|
+
* </description></item>
|
|
7471
|
+
* <item><description>
|
|
7393
7472
|
* When the data of one row/cell be changed, data of other cells/rows
|
|
7394
7473
|
* may also be influenced(such as the data be shifted/moved to other places
|
|
7395
7474
|
* to allocated enough spaces for the changed data).
|
|
7396
|
-
* So every change of every data requires synchronization of other
|
|
7397
|
-
* such as Row or Cell object).
|
|
7475
|
+
* So every change of every data requires synchronization of other
|
|
7476
|
+
* existing objects(such as Row or Cell object).
|
|
7398
7477
|
* So, to get better performance, please do not maintain multiple Rows/Cells
|
|
7399
7478
|
* at the same time. Processing them one by one will reduce the data synchronization
|
|
7400
7479
|
* for them so the performance can be improved.
|
|
7401
|
-
* </item>
|
|
7480
|
+
* </description></item>
|
|
7402
7481
|
* </list>
|
|
7403
7482
|
*/
|
|
7404
7483
|
FileCache = 2,
|
|
@@ -12761,16 +12840,136 @@ export class Cells {
|
|
|
12761
12840
|
/**
|
|
12762
12841
|
* @deprecated Please use the 'memorySetting' property instead.
|
|
12763
12842
|
* Gets or sets the memory usage option for this cells.
|
|
12843
|
+
*
|
|
12844
|
+
* @remarks
|
|
12845
|
+
* Notable limits and recommended operations for some modes:
|
|
12846
|
+
* <list type="table">
|
|
12847
|
+
* <listheader>
|
|
12848
|
+
* <description>Mode</description>
|
|
12849
|
+
* <description>Remarks</description>
|
|
12850
|
+
* <description>Supported</description>
|
|
12851
|
+
* </listheader>
|
|
12852
|
+
* <item>
|
|
12853
|
+
* <description><see cref="MemorySetting.MemoryPreference"/></description>
|
|
12854
|
+
* <description>Cells data will be maintained in compact format
|
|
12855
|
+
* to decrease the memory cost. On other hand, the compact data also may
|
|
12856
|
+
* cause higher time cost, especially when updating the cells data,
|
|
12857
|
+
* or accessing cells/rows randomly</description>
|
|
12858
|
+
* <description>v8.0.0</description>
|
|
12859
|
+
* </item>
|
|
12860
|
+
* <item>
|
|
12861
|
+
* <description><see cref="MemorySetting.FileCache"/></description>
|
|
12862
|
+
* <description>
|
|
12863
|
+
* When this mode is used for any worksheet in one workbook, <see cref="Workbook.Dispose()"/>
|
|
12864
|
+
* should be called at the end of work to release all resources such as the temporary files.
|
|
12865
|
+
* <br></br>
|
|
12866
|
+
* Randomly accessing cells will give poor performance because data needs
|
|
12867
|
+
* to be read/updated randomly and repeatedly(so the pointer in the file will be
|
|
12868
|
+
* changed accordingly and IO operations will be required repeatedly).
|
|
12869
|
+
* If possible, please always access the data sequentially(row by row).
|
|
12870
|
+
* <br></br>
|
|
12871
|
+
* When the data of one row/cell be changed, data of other cells/rows
|
|
12872
|
+
* may also be influenced(such as the data be shifted/moved to other places
|
|
12873
|
+
* to allocated enough spaces for the changed data).
|
|
12874
|
+
* So every change of every data requires synchronization of other existing objects(
|
|
12875
|
+
* such as Row or Cell object).
|
|
12876
|
+
* So, to get better performance, please do not maintain multiple Rows/Cells
|
|
12877
|
+
* at the same time. Processing them one by one will reduce the data synchronization
|
|
12878
|
+
* for them so the performance can be improved a bit.
|
|
12879
|
+
* </description>
|
|
12880
|
+
* <description>v25.7</description>
|
|
12881
|
+
* </item>
|
|
12882
|
+
* </list>
|
|
12764
12883
|
*/
|
|
12765
12884
|
getMemorySetting() : MemorySetting;
|
|
12766
12885
|
/**
|
|
12767
12886
|
* Gets or sets the memory usage option for this cells.
|
|
12887
|
+
*
|
|
12888
|
+
* @remarks
|
|
12889
|
+
* Notable limits and recommended operations for some modes:
|
|
12890
|
+
* <list type="table">
|
|
12891
|
+
* <listheader>
|
|
12892
|
+
* <description>Mode</description>
|
|
12893
|
+
* <description>Remarks</description>
|
|
12894
|
+
* <description>Supported</description>
|
|
12895
|
+
* </listheader>
|
|
12896
|
+
* <item>
|
|
12897
|
+
* <description><see cref="MemorySetting.MemoryPreference"/></description>
|
|
12898
|
+
* <description>Cells data will be maintained in compact format
|
|
12899
|
+
* to decrease the memory cost. On other hand, the compact data also may
|
|
12900
|
+
* cause higher time cost, especially when updating the cells data,
|
|
12901
|
+
* or accessing cells/rows randomly</description>
|
|
12902
|
+
* <description>v8.0.0</description>
|
|
12903
|
+
* </item>
|
|
12904
|
+
* <item>
|
|
12905
|
+
* <description><see cref="MemorySetting.FileCache"/></description>
|
|
12906
|
+
* <description>
|
|
12907
|
+
* When this mode is used for any worksheet in one workbook, <see cref="Workbook.Dispose()"/>
|
|
12908
|
+
* should be called at the end of work to release all resources such as the temporary files.
|
|
12909
|
+
* <br></br>
|
|
12910
|
+
* Randomly accessing cells will give poor performance because data needs
|
|
12911
|
+
* to be read/updated randomly and repeatedly(so the pointer in the file will be
|
|
12912
|
+
* changed accordingly and IO operations will be required repeatedly).
|
|
12913
|
+
* If possible, please always access the data sequentially(row by row).
|
|
12914
|
+
* <br></br>
|
|
12915
|
+
* When the data of one row/cell be changed, data of other cells/rows
|
|
12916
|
+
* may also be influenced(such as the data be shifted/moved to other places
|
|
12917
|
+
* to allocated enough spaces for the changed data).
|
|
12918
|
+
* So every change of every data requires synchronization of other existing objects(
|
|
12919
|
+
* such as Row or Cell object).
|
|
12920
|
+
* So, to get better performance, please do not maintain multiple Rows/Cells
|
|
12921
|
+
* at the same time. Processing them one by one will reduce the data synchronization
|
|
12922
|
+
* for them so the performance can be improved a bit.
|
|
12923
|
+
* </description>
|
|
12924
|
+
* <description>v25.7</description>
|
|
12925
|
+
* </item>
|
|
12926
|
+
* </list>
|
|
12768
12927
|
*/
|
|
12769
12928
|
memorySetting : MemorySetting;
|
|
12770
12929
|
/**
|
|
12771
12930
|
* @deprecated Please use the 'memorySetting' property instead.
|
|
12772
12931
|
* Gets or sets the memory usage option for this cells.
|
|
12773
12932
|
* @param value - The value to set.
|
|
12933
|
+
*
|
|
12934
|
+
* @remarks
|
|
12935
|
+
* Notable limits and recommended operations for some modes:
|
|
12936
|
+
* <list type="table">
|
|
12937
|
+
* <listheader>
|
|
12938
|
+
* <description>Mode</description>
|
|
12939
|
+
* <description>Remarks</description>
|
|
12940
|
+
* <description>Supported</description>
|
|
12941
|
+
* </listheader>
|
|
12942
|
+
* <item>
|
|
12943
|
+
* <description><see cref="MemorySetting.MemoryPreference"/></description>
|
|
12944
|
+
* <description>Cells data will be maintained in compact format
|
|
12945
|
+
* to decrease the memory cost. On other hand, the compact data also may
|
|
12946
|
+
* cause higher time cost, especially when updating the cells data,
|
|
12947
|
+
* or accessing cells/rows randomly</description>
|
|
12948
|
+
* <description>v8.0.0</description>
|
|
12949
|
+
* </item>
|
|
12950
|
+
* <item>
|
|
12951
|
+
* <description><see cref="MemorySetting.FileCache"/></description>
|
|
12952
|
+
* <description>
|
|
12953
|
+
* When this mode is used for any worksheet in one workbook, <see cref="Workbook.Dispose()"/>
|
|
12954
|
+
* should be called at the end of work to release all resources such as the temporary files.
|
|
12955
|
+
* <br></br>
|
|
12956
|
+
* Randomly accessing cells will give poor performance because data needs
|
|
12957
|
+
* to be read/updated randomly and repeatedly(so the pointer in the file will be
|
|
12958
|
+
* changed accordingly and IO operations will be required repeatedly).
|
|
12959
|
+
* If possible, please always access the data sequentially(row by row).
|
|
12960
|
+
* <br></br>
|
|
12961
|
+
* When the data of one row/cell be changed, data of other cells/rows
|
|
12962
|
+
* may also be influenced(such as the data be shifted/moved to other places
|
|
12963
|
+
* to allocated enough spaces for the changed data).
|
|
12964
|
+
* So every change of every data requires synchronization of other existing objects(
|
|
12965
|
+
* such as Row or Cell object).
|
|
12966
|
+
* So, to get better performance, please do not maintain multiple Rows/Cells
|
|
12967
|
+
* at the same time. Processing them one by one will reduce the data synchronization
|
|
12968
|
+
* for them so the performance can be improved a bit.
|
|
12969
|
+
* </description>
|
|
12970
|
+
* <description>v25.7</description>
|
|
12971
|
+
* </item>
|
|
12972
|
+
* </list>
|
|
12774
12973
|
*/
|
|
12775
12974
|
setMemorySetting(value: MemorySetting) : void;
|
|
12776
12975
|
/**
|
|
@@ -14578,6 +14777,40 @@ export class AbstractTextLoadOptions extends LoadOptions {
|
|
|
14578
14777
|
isNull() : boolean;
|
|
14579
14778
|
}
|
|
14580
14779
|
|
|
14780
|
+
/**
|
|
14781
|
+
* Represents the options for loading markdown document.
|
|
14782
|
+
*/
|
|
14783
|
+
export class MarkdownLoadOptions extends AbstractTextLoadOptions {
|
|
14784
|
+
/**
|
|
14785
|
+
* Constructs from a parent object convertible to this.
|
|
14786
|
+
* @param obj - The parent object.
|
|
14787
|
+
*/
|
|
14788
|
+
constructor(obj: AbstractTextLoadOptions);
|
|
14789
|
+
/**
|
|
14790
|
+
* Default Constructor.
|
|
14791
|
+
*/
|
|
14792
|
+
constructor();
|
|
14793
|
+
/**
|
|
14794
|
+
* @deprecated Please use the 'hasFormula' property instead.
|
|
14795
|
+
* Indicates whether the text is formula if it starts with "=".
|
|
14796
|
+
*/
|
|
14797
|
+
getHasFormula() : boolean;
|
|
14798
|
+
/**
|
|
14799
|
+
* Indicates whether the text is formula if it starts with "=".
|
|
14800
|
+
*/
|
|
14801
|
+
hasFormula : boolean;
|
|
14802
|
+
/**
|
|
14803
|
+
* @deprecated Please use the 'hasFormula' property instead.
|
|
14804
|
+
* Indicates whether the text is formula if it starts with "=".
|
|
14805
|
+
* @param value - The value to set.
|
|
14806
|
+
*/
|
|
14807
|
+
setHasFormula(value: boolean) : void;
|
|
14808
|
+
/**
|
|
14809
|
+
* Checks whether the implementation object is null.
|
|
14810
|
+
*/
|
|
14811
|
+
isNull() : boolean;
|
|
14812
|
+
}
|
|
14813
|
+
|
|
14581
14814
|
/**
|
|
14582
14815
|
* Represents the options of loading ods file.
|
|
14583
14816
|
*/
|
|
@@ -16279,7 +16512,7 @@ export class RowCollection {
|
|
|
16279
16512
|
/**
|
|
16280
16513
|
* Gets an enumerator that iterates rows through this collection
|
|
16281
16514
|
* @returns
|
|
16282
|
-
* enumerator
|
|
16515
|
+
* The row enumerator which will traverse all existing rows in this collection.
|
|
16283
16516
|
*/
|
|
16284
16517
|
getEnumerator() : RowEnumerator;
|
|
16285
16518
|
/**
|
|
@@ -16287,7 +16520,7 @@ export class RowCollection {
|
|
|
16287
16520
|
* @param reversed - whether enumerate rows in reversed order
|
|
16288
16521
|
* @param sync - whether the returned enumerator should check the modification of row collection /// and keep synchronized with it.
|
|
16289
16522
|
* @returns
|
|
16290
|
-
* The row enumerator
|
|
16523
|
+
* The row enumerator which will traverse all existing rows in this collection.
|
|
16291
16524
|
*
|
|
16292
16525
|
* @remarks
|
|
16293
16526
|
* If the row collection will be modified(by operations that may cause new Row be instantiated or
|
|
@@ -16474,7 +16707,7 @@ export class Row {
|
|
|
16474
16707
|
/**
|
|
16475
16708
|
* Gets the cells enumerator
|
|
16476
16709
|
* @returns
|
|
16477
|
-
* The cells enumerator
|
|
16710
|
+
* The cells enumerator which will traverse all existing cells in this row.
|
|
16478
16711
|
*/
|
|
16479
16712
|
getEnumerator() : CellEnumerator;
|
|
16480
16713
|
/**
|
|
@@ -16482,7 +16715,7 @@ export class Row {
|
|
|
16482
16715
|
* @param reversed - whether enumerate cells in reversed order
|
|
16483
16716
|
* @param sync - whether the returned enumerator should check the modification of cells in this row /// and keep synchronized with it.
|
|
16484
16717
|
* @returns
|
|
16485
|
-
* The
|
|
16718
|
+
* The cells enumerator which will traverse all existing cells in this row.
|
|
16486
16719
|
*
|
|
16487
16720
|
* @remarks
|
|
16488
16721
|
* If the row will be modified(by operations that may cause new Cell be instantiated or
|
|
@@ -16788,6 +17021,7 @@ export class MarkdownSaveOptions extends SaveOptions {
|
|
|
16788
17021
|
/**
|
|
16789
17022
|
* @deprecated Please use the 'exportImagesAsBase64' property instead.
|
|
16790
17023
|
* Specifies whether images are saved in Base64 format to Markdown.
|
|
17024
|
+
* The default value is true.
|
|
16791
17025
|
*
|
|
16792
17026
|
* @remarks
|
|
16793
17027
|
* When this property is set to true image data is exported directly on the
|
|
@@ -16796,6 +17030,7 @@ export class MarkdownSaveOptions extends SaveOptions {
|
|
|
16796
17030
|
getExportImagesAsBase64() : boolean;
|
|
16797
17031
|
/**
|
|
16798
17032
|
* Specifies whether images are saved in Base64 format to Markdown.
|
|
17033
|
+
* The default value is true.
|
|
16799
17034
|
*
|
|
16800
17035
|
* @remarks
|
|
16801
17036
|
* When this property is set to true image data is exported directly on the
|
|
@@ -16805,6 +17040,7 @@ export class MarkdownSaveOptions extends SaveOptions {
|
|
|
16805
17040
|
/**
|
|
16806
17041
|
* @deprecated Please use the 'exportImagesAsBase64' property instead.
|
|
16807
17042
|
* Specifies whether images are saved in Base64 format to Markdown.
|
|
17043
|
+
* The default value is true.
|
|
16808
17044
|
* @param value - The value to set.
|
|
16809
17045
|
*
|
|
16810
17046
|
* @remarks
|
|
@@ -16814,14 +17050,14 @@ export class MarkdownSaveOptions extends SaveOptions {
|
|
|
16814
17050
|
setExportImagesAsBase64(value: boolean) : void;
|
|
16815
17051
|
/**
|
|
16816
17052
|
* @deprecated Please use the 'calculateFormula' property instead.
|
|
16817
|
-
* Indicates whether to calculate formulas before saving
|
|
17053
|
+
* Indicates whether to calculate formulas before saving markdown file.
|
|
16818
17054
|
*
|
|
16819
17055
|
* @remarks
|
|
16820
17056
|
* The default value is false.
|
|
16821
17057
|
*/
|
|
16822
17058
|
getCalculateFormula() : boolean;
|
|
16823
17059
|
/**
|
|
16824
|
-
* Indicates whether to calculate formulas before saving
|
|
17060
|
+
* Indicates whether to calculate formulas before saving markdown file.
|
|
16825
17061
|
*
|
|
16826
17062
|
* @remarks
|
|
16827
17063
|
* The default value is false.
|
|
@@ -16829,7 +17065,7 @@ export class MarkdownSaveOptions extends SaveOptions {
|
|
|
16829
17065
|
calculateFormula : boolean;
|
|
16830
17066
|
/**
|
|
16831
17067
|
* @deprecated Please use the 'calculateFormula' property instead.
|
|
16832
|
-
* Indicates whether to calculate formulas before saving
|
|
17068
|
+
* Indicates whether to calculate formulas before saving markdown file.
|
|
16833
17069
|
* @param value - The value to set.
|
|
16834
17070
|
*
|
|
16835
17071
|
* @remarks
|
|
@@ -19968,6 +20204,15 @@ export class WorkbookSettings {
|
|
|
19968
20204
|
* Returns 255 if the file format is Excel97-2003;
|
|
19969
20205
|
*/
|
|
19970
20206
|
readonly maxColumn : number;
|
|
20207
|
+
/**
|
|
20208
|
+
* @deprecated Please use the 'smartTagOptions' property instead.
|
|
20209
|
+
* Gets the options of the smart tag.
|
|
20210
|
+
*/
|
|
20211
|
+
getSmartTagOptions() : SmartTagOptions;
|
|
20212
|
+
/**
|
|
20213
|
+
* Gets the options of the smart tag.
|
|
20214
|
+
*/
|
|
20215
|
+
readonly smartTagOptions : SmartTagOptions;
|
|
19971
20216
|
/**
|
|
19972
20217
|
* @deprecated Please use the 'defaultStyleSettings' property instead.
|
|
19973
20218
|
* Gets the settings for default values of style-related properties for this workbook.
|
|
@@ -20358,16 +20603,25 @@ export class WorkbookSettings {
|
|
|
20358
20603
|
/**
|
|
20359
20604
|
* @deprecated Please use the 'memorySetting' property instead.
|
|
20360
20605
|
* Gets or sets the memory usage options. The new option will be taken as the default option for newly created worksheets but does not take effect for existing worksheets.
|
|
20606
|
+
*
|
|
20607
|
+
* @remarks
|
|
20608
|
+
* For more details about memory mode, please see <see cref="Cells.MemorySetting"/>.
|
|
20361
20609
|
*/
|
|
20362
20610
|
getMemorySetting() : MemorySetting;
|
|
20363
20611
|
/**
|
|
20364
20612
|
* Gets or sets the memory usage options. The new option will be taken as the default option for newly created worksheets but does not take effect for existing worksheets.
|
|
20613
|
+
*
|
|
20614
|
+
* @remarks
|
|
20615
|
+
* For more details about memory mode, please see <see cref="Cells.MemorySetting"/>.
|
|
20365
20616
|
*/
|
|
20366
20617
|
memorySetting : MemorySetting;
|
|
20367
20618
|
/**
|
|
20368
20619
|
* @deprecated Please use the 'memorySetting' property instead.
|
|
20369
20620
|
* Gets or sets the memory usage options. The new option will be taken as the default option for newly created worksheets but does not take effect for existing worksheets.
|
|
20370
20621
|
* @param value - The value to set.
|
|
20622
|
+
*
|
|
20623
|
+
* @remarks
|
|
20624
|
+
* For more details about memory mode, please see <see cref="Cells.MemorySetting"/>.
|
|
20371
20625
|
*/
|
|
20372
20626
|
setMemorySetting(value: MemorySetting) : void;
|
|
20373
20627
|
/**
|
|
@@ -31581,39 +31835,176 @@ export class ShapeSegmentPathCollection {
|
|
|
31581
31835
|
}
|
|
31582
31836
|
|
|
31583
31837
|
/**
|
|
31584
|
-
*
|
|
31838
|
+
* Specify position coordinates or angle markers.
|
|
31839
|
+
* Position coordinates represent the coordinates of a path in a coordinate space (e.g. X/Y).
|
|
31840
|
+
* Angle markers indicate angular changes in a path (e.g. the start and swing angles of an arc).
|
|
31585
31841
|
*/
|
|
31586
31842
|
export class ShapePathPoint {
|
|
31587
31843
|
/**
|
|
31588
31844
|
* @deprecated Please use the 'x' property instead.
|
|
31589
|
-
* Gets and sets x coordinate for this position coordinate.
|
|
31845
|
+
* Gets and sets x coordinate for this position coordinate. Unit EMUs.
|
|
31846
|
+
*
|
|
31847
|
+
* @remarks
|
|
31848
|
+
* NOTE: This member is now obsolete. Instead,
|
|
31849
|
+
* please use ShapePathPoint.XPixel and ShapePathPoint.XAngle properties.
|
|
31850
|
+
* This property will be removed 12 months later since August 2025.
|
|
31851
|
+
* Aspose apologizes for any inconvenience you may have experienced.
|
|
31852
|
+
* @deprecated
|
|
31853
|
+
* Use ShapePathPoint.XPixel and ShapePathPoint.XAngle properties instead.
|
|
31590
31854
|
*/
|
|
31591
31855
|
getX() : number;
|
|
31592
31856
|
/**
|
|
31593
|
-
* Gets and sets x coordinate for this position coordinate.
|
|
31857
|
+
* Gets and sets x coordinate for this position coordinate. Unit EMUs.
|
|
31858
|
+
*
|
|
31859
|
+
* @remarks
|
|
31860
|
+
* NOTE: This member is now obsolete. Instead,
|
|
31861
|
+
* please use ShapePathPoint.XPixel and ShapePathPoint.XAngle properties.
|
|
31862
|
+
* This property will be removed 12 months later since August 2025.
|
|
31863
|
+
* Aspose apologizes for any inconvenience you may have experienced.
|
|
31864
|
+
* @deprecated
|
|
31865
|
+
* Use ShapePathPoint.XPixel and ShapePathPoint.XAngle properties instead.
|
|
31594
31866
|
*/
|
|
31595
31867
|
x : number;
|
|
31596
31868
|
/**
|
|
31597
31869
|
* @deprecated Please use the 'x' property instead.
|
|
31598
|
-
* Gets and sets x coordinate for this position coordinate.
|
|
31870
|
+
* Gets and sets x coordinate for this position coordinate. Unit EMUs.
|
|
31599
31871
|
* @param value - The value to set.
|
|
31872
|
+
*
|
|
31873
|
+
* @remarks
|
|
31874
|
+
* NOTE: This member is now obsolete. Instead,
|
|
31875
|
+
* please use ShapePathPoint.XPixel and ShapePathPoint.XAngle properties.
|
|
31876
|
+
* This property will be removed 12 months later since August 2025.
|
|
31877
|
+
* Aspose apologizes for any inconvenience you may have experienced.
|
|
31878
|
+
* @deprecated
|
|
31879
|
+
* Use ShapePathPoint.XPixel and ShapePathPoint.XAngle properties instead.
|
|
31600
31880
|
*/
|
|
31601
31881
|
setX(value: number) : void;
|
|
31602
31882
|
/**
|
|
31603
31883
|
* @deprecated Please use the 'y' property instead.
|
|
31604
|
-
* Gets y coordinate for this position coordinate.
|
|
31884
|
+
* Gets y coordinate for this position coordinate. Unit EMUs.
|
|
31885
|
+
*
|
|
31886
|
+
* @remarks
|
|
31887
|
+
* NOTE: This member is now obsolete. Instead,
|
|
31888
|
+
* please use ShapePathPoint.YPixel and ShapePathPoint.YAngle properties.
|
|
31889
|
+
* This property will be removed 12 months later since August 2025.
|
|
31890
|
+
* Aspose apologizes for any inconvenience you may have experienced.
|
|
31891
|
+
* @deprecated
|
|
31892
|
+
* Use ShapePathPoint.YPixel and ShapePathPoint.YAngle properties instead.
|
|
31605
31893
|
*/
|
|
31606
31894
|
getY() : number;
|
|
31607
31895
|
/**
|
|
31608
|
-
* Gets y coordinate for this position coordinate.
|
|
31896
|
+
* Gets y coordinate for this position coordinate. Unit EMUs.
|
|
31897
|
+
*
|
|
31898
|
+
* @remarks
|
|
31899
|
+
* NOTE: This member is now obsolete. Instead,
|
|
31900
|
+
* please use ShapePathPoint.YPixel and ShapePathPoint.YAngle properties.
|
|
31901
|
+
* This property will be removed 12 months later since August 2025.
|
|
31902
|
+
* Aspose apologizes for any inconvenience you may have experienced.
|
|
31903
|
+
* @deprecated
|
|
31904
|
+
* Use ShapePathPoint.YPixel and ShapePathPoint.YAngle properties instead.
|
|
31609
31905
|
*/
|
|
31610
31906
|
y : number;
|
|
31611
31907
|
/**
|
|
31612
31908
|
* @deprecated Please use the 'y' property instead.
|
|
31613
|
-
* Gets y coordinate for this position coordinate.
|
|
31909
|
+
* Gets y coordinate for this position coordinate. Unit EMUs.
|
|
31614
31910
|
* @param value - The value to set.
|
|
31911
|
+
*
|
|
31912
|
+
* @remarks
|
|
31913
|
+
* NOTE: This member is now obsolete. Instead,
|
|
31914
|
+
* please use ShapePathPoint.YPixel and ShapePathPoint.YAngle properties.
|
|
31915
|
+
* This property will be removed 12 months later since August 2025.
|
|
31916
|
+
* Aspose apologizes for any inconvenience you may have experienced.
|
|
31917
|
+
* @deprecated
|
|
31918
|
+
* Use ShapePathPoint.YPixel and ShapePathPoint.YAngle properties instead.
|
|
31615
31919
|
*/
|
|
31616
31920
|
setY(value: number) : void;
|
|
31921
|
+
/**
|
|
31922
|
+
* @deprecated Please use the 'xPixel' property instead.
|
|
31923
|
+
* When the object is a position coordinate, get or set the x coordinate in pixels.
|
|
31924
|
+
*/
|
|
31925
|
+
getXPixel() : number;
|
|
31926
|
+
/**
|
|
31927
|
+
* When the object is a position coordinate, get or set the x coordinate in pixels.
|
|
31928
|
+
*/
|
|
31929
|
+
xPixel : number;
|
|
31930
|
+
/**
|
|
31931
|
+
* @deprecated Please use the 'xPixel' property instead.
|
|
31932
|
+
* When the object is a position coordinate, get or set the x coordinate in pixels.
|
|
31933
|
+
* @param value - The value to set.
|
|
31934
|
+
*/
|
|
31935
|
+
setXPixel(value: number) : void;
|
|
31936
|
+
/**
|
|
31937
|
+
* @deprecated Please use the 'yPixel' property instead.
|
|
31938
|
+
* When the object is a position coordinate, get or set the y coordinate in pixels.
|
|
31939
|
+
*/
|
|
31940
|
+
getYPixel() : number;
|
|
31941
|
+
/**
|
|
31942
|
+
* When the object is a position coordinate, get or set the y coordinate in pixels.
|
|
31943
|
+
*/
|
|
31944
|
+
yPixel : number;
|
|
31945
|
+
/**
|
|
31946
|
+
* @deprecated Please use the 'yPixel' property instead.
|
|
31947
|
+
* When the object is a position coordinate, get or set the y coordinate in pixels.
|
|
31948
|
+
* @param value - The value to set.
|
|
31949
|
+
*/
|
|
31950
|
+
setYPixel(value: number) : void;
|
|
31951
|
+
/**
|
|
31952
|
+
* @deprecated Please use the 'xAngle' property instead.
|
|
31953
|
+
* When the object is an angle marker, get or set the first angle in degrees.
|
|
31954
|
+
*
|
|
31955
|
+
* @remarks
|
|
31956
|
+
* If this angle is the starting angle of an arc. This angle will specify what angle along the supposed circle path will be used as the start position for drawing the arc. This start angle will be locked to the last known pen position in the shape path. Thus guaranteeing a continuos shape path.
|
|
31957
|
+
*/
|
|
31958
|
+
getXAngle() : number;
|
|
31959
|
+
/**
|
|
31960
|
+
* When the object is an angle marker, get or set the first angle in degrees.
|
|
31961
|
+
*
|
|
31962
|
+
* @remarks
|
|
31963
|
+
* If this angle is the starting angle of an arc. This angle will specify what angle along the supposed circle path will be used as the start position for drawing the arc. This start angle will be locked to the last known pen position in the shape path. Thus guaranteeing a continuos shape path.
|
|
31964
|
+
*/
|
|
31965
|
+
xAngle : number;
|
|
31966
|
+
/**
|
|
31967
|
+
* @deprecated Please use the 'xAngle' property instead.
|
|
31968
|
+
* When the object is an angle marker, get or set the first angle in degrees.
|
|
31969
|
+
* @param value - The value to set.
|
|
31970
|
+
*
|
|
31971
|
+
* @remarks
|
|
31972
|
+
* If this angle is the starting angle of an arc. This angle will specify what angle along the supposed circle path will be used as the start position for drawing the arc. This start angle will be locked to the last known pen position in the shape path. Thus guaranteeing a continuos shape path.
|
|
31973
|
+
*/
|
|
31974
|
+
setXAngle(value: number) : void;
|
|
31975
|
+
/**
|
|
31976
|
+
* @deprecated Please use the 'yAngle' property instead.
|
|
31977
|
+
* When the object is an angle marker, get or set the second angle in degrees.
|
|
31978
|
+
*
|
|
31979
|
+
* @remarks
|
|
31980
|
+
* If this angle is the swing angle of an arc. This angle will specify how far angle-wise along the supposed cicle path the arc will be extended. The extension from the start angle will always be in the clockwise direction around the supposed circle.
|
|
31981
|
+
*/
|
|
31982
|
+
getYAngle() : number;
|
|
31983
|
+
/**
|
|
31984
|
+
* When the object is an angle marker, get or set the second angle in degrees.
|
|
31985
|
+
*
|
|
31986
|
+
* @remarks
|
|
31987
|
+
* If this angle is the swing angle of an arc. This angle will specify how far angle-wise along the supposed cicle path the arc will be extended. The extension from the start angle will always be in the clockwise direction around the supposed circle.
|
|
31988
|
+
*/
|
|
31989
|
+
yAngle : number;
|
|
31990
|
+
/**
|
|
31991
|
+
* @deprecated Please use the 'yAngle' property instead.
|
|
31992
|
+
* When the object is an angle marker, get or set the second angle in degrees.
|
|
31993
|
+
* @param value - The value to set.
|
|
31994
|
+
*
|
|
31995
|
+
* @remarks
|
|
31996
|
+
* If this angle is the swing angle of an arc. This angle will specify how far angle-wise along the supposed cicle path the arc will be extended. The extension from the start angle will always be in the clockwise direction around the supposed circle.
|
|
31997
|
+
*/
|
|
31998
|
+
setYAngle(value: number) : void;
|
|
31999
|
+
/**
|
|
32000
|
+
* @deprecated Please use the 'type' property instead.
|
|
32001
|
+
* Specifies the value type of the current object.
|
|
32002
|
+
*/
|
|
32003
|
+
getType() : ShapePathPointValueType;
|
|
32004
|
+
/**
|
|
32005
|
+
* Specifies the value type of the current object.
|
|
32006
|
+
*/
|
|
32007
|
+
readonly type : ShapePathPointValueType;
|
|
31617
32008
|
/**
|
|
31618
32009
|
* Checks whether the implementation object is null.
|
|
31619
32010
|
*/
|
|
@@ -31636,9 +32027,17 @@ export class ShapePathPointCollection {
|
|
|
31636
32027
|
*/
|
|
31637
32028
|
get(index: number) : ShapePathPoint;
|
|
31638
32029
|
/**
|
|
31639
|
-
* Adds a path point.
|
|
32030
|
+
* Adds a path point in unit of EMUs.
|
|
31640
32031
|
* @param x - The x coordinate.
|
|
31641
32032
|
* @param y - The y coordinate.
|
|
32033
|
+
*
|
|
32034
|
+
* @remarks
|
|
32035
|
+
* NOTE: This member is now obsolete. Instead,
|
|
32036
|
+
* please use the MoveTo,LineTo,CubicBezierTo and ArcTo methods in ShapePath.
|
|
32037
|
+
* This method will be removed 12 months later since August 2025.
|
|
32038
|
+
* Aspose apologizes for any inconvenience you may have experienced.
|
|
32039
|
+
* @deprecated
|
|
32040
|
+
* Use the MoveTo,LineTo,CubicBezierTo and ArcTo methods in ShapePath instead.
|
|
31642
32041
|
*/
|
|
31643
32042
|
add(x: number, y: number) : number;
|
|
31644
32043
|
/**
|
|
@@ -39728,20 +40127,20 @@ export class ShapePath {
|
|
|
39728
40127
|
*/
|
|
39729
40128
|
setHeightPixel(value: number) : void;
|
|
39730
40129
|
/**
|
|
39731
|
-
* Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure.
|
|
40130
|
+
* Starts a new figure from the specified point without closing the current figure. All subsequent points added to the path are added to this new figure.Unit: Pixel.
|
|
39732
40131
|
* @param x - The x-coordinate of the starting point of the figure(Unit: Pixel).
|
|
39733
40132
|
* @param y - The y-coordinate of the starting point of the figure(Unit: Pixel).
|
|
39734
40133
|
*/
|
|
39735
40134
|
moveTo(x: number, y: number) : void;
|
|
39736
40135
|
/**
|
|
39737
40136
|
* Appends a line segment to the current figure.
|
|
39738
|
-
* The starting point is the end point of the current figure.
|
|
40137
|
+
* The starting point is the end point of the current figure.Unit: Pixel.
|
|
39739
40138
|
* @param x - The x-coordinate of the endpoint of the line segment(Unit: Pixel).
|
|
39740
40139
|
* @param y - The y-coordinate of the endpoint of the line segment(Unit: Pixel).
|
|
39741
40140
|
*/
|
|
39742
40141
|
lineTo(x: number, y: number) : void;
|
|
39743
40142
|
/**
|
|
39744
|
-
* Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure.
|
|
40143
|
+
* Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure.Unit: Pixel.
|
|
39745
40144
|
* @param ctrX1 - The x-coordinate of the first control point for the curve(Unit: Pixel).
|
|
39746
40145
|
* @param ctrY1 - The y-coordinate of the first control point for the curve(Unit: Pixel).
|
|
39747
40146
|
* @param ctrX2 - The x-coordinate of the second control point for the curve(Unit: Pixel).
|
|
@@ -39754,8 +40153,8 @@ export class ShapePath {
|
|
|
39754
40153
|
* Appends an elliptical arc to the current figure. The starting point is the end point of the current figure.
|
|
39755
40154
|
* @param wR - The half-width of the rectangular area of the ellipse that draws the arc(Unit: Pixel).
|
|
39756
40155
|
* @param hR - The half-height of the rectangular area of the ellipse that draws the arc(Unit: Pixel).
|
|
39757
|
-
* @param stAng - The starting angle of the arc, measured in degrees clockwise from the x-axis(Unit: Degree).
|
|
39758
|
-
* @param swAng - The angle
|
|
40156
|
+
* @param stAng - The starting angle of the arc, measured in degrees clockwise from the x-axis(Unit: Degree). This angle will specify what angle along the supposed circle path will be used as the start position for drawing the arc. This start angle will be locked to the last known pen position in the shape path. Thus guaranteeing a continuos shape path.
|
|
40157
|
+
* @param swAng - The swing angle for an arc. This angle will specify how far angle-wise along the supposed cicle path the arc will be extended. The extension from the start angle will always be in the clockwise direction around the supposed circle.(Unit: Degree)
|
|
39759
40158
|
*/
|
|
39760
40159
|
arcTo(wR: number, hR: number, stAng: number, swAng: number) : void;
|
|
39761
40160
|
/**
|
|
@@ -39835,20 +40234,20 @@ export enum ShapePathType {
|
|
|
39835
40234
|
/**
|
|
39836
40235
|
* Straight line segment
|
|
39837
40236
|
*/
|
|
39838
|
-
LineTo =
|
|
40237
|
+
LineTo = 1,
|
|
39839
40238
|
/**
|
|
39840
40239
|
* Cubic Bezier curve
|
|
39841
40240
|
*/
|
|
39842
|
-
CubicBezierCurveTo =
|
|
40241
|
+
CubicBezierCurveTo = 3,
|
|
39843
40242
|
/**
|
|
39844
40243
|
* Start a new path
|
|
39845
40244
|
*/
|
|
39846
|
-
MoveTo =
|
|
40245
|
+
MoveTo = 0,
|
|
39847
40246
|
/**
|
|
39848
40247
|
* If the starting POINT and the end POINT are not the same, a single
|
|
39849
40248
|
* straight line is drawn to connect the starting POINT and ending POINT of the path.
|
|
39850
40249
|
*/
|
|
39851
|
-
Close =
|
|
40250
|
+
Close = 128,
|
|
39852
40251
|
/**
|
|
39853
40252
|
* The end of the current path
|
|
39854
40253
|
*/
|
|
@@ -40609,17 +41008,26 @@ export class LoadOptions {
|
|
|
40609
41008
|
setLightCellsDataHandler(value: LightCellsDataHandler) : void;
|
|
40610
41009
|
/**
|
|
40611
41010
|
* @deprecated Please use the 'memorySetting' property instead.
|
|
40612
|
-
* Gets or sets the memory
|
|
41011
|
+
* Gets or sets the memory mode for loaded workbook.
|
|
41012
|
+
*
|
|
41013
|
+
* @remarks
|
|
41014
|
+
* For more details about memory mode, please see <see cref="Cells.MemorySetting"/>.
|
|
40613
41015
|
*/
|
|
40614
41016
|
getMemorySetting() : MemorySetting;
|
|
40615
41017
|
/**
|
|
40616
|
-
* Gets or sets the memory
|
|
41018
|
+
* Gets or sets the memory mode for loaded workbook.
|
|
41019
|
+
*
|
|
41020
|
+
* @remarks
|
|
41021
|
+
* For more details about memory mode, please see <see cref="Cells.MemorySetting"/>.
|
|
40617
41022
|
*/
|
|
40618
41023
|
memorySetting : MemorySetting;
|
|
40619
41024
|
/**
|
|
40620
41025
|
* @deprecated Please use the 'memorySetting' property instead.
|
|
40621
|
-
* Gets or sets the memory
|
|
41026
|
+
* Gets or sets the memory mode for loaded workbook.
|
|
40622
41027
|
* @param value - The value to set.
|
|
41028
|
+
*
|
|
41029
|
+
* @remarks
|
|
41030
|
+
* For more details about memory mode, please see <see cref="Cells.MemorySetting"/>.
|
|
40623
41031
|
*/
|
|
40624
41032
|
setMemorySetting(value: MemorySetting) : void;
|
|
40625
41033
|
/**
|
|
@@ -47936,6 +48344,21 @@ export class PasteOptions {
|
|
|
47936
48344
|
* @param value - The value to set.
|
|
47937
48345
|
*/
|
|
47938
48346
|
setSkipBlanks(value: boolean) : void;
|
|
48347
|
+
/**
|
|
48348
|
+
* @deprecated Please use the 'keepOldTables' property instead.
|
|
48349
|
+
* Keeps the tables in the destination range.
|
|
48350
|
+
*/
|
|
48351
|
+
getKeepOldTables() : boolean;
|
|
48352
|
+
/**
|
|
48353
|
+
* Keeps the tables in the destination range.
|
|
48354
|
+
*/
|
|
48355
|
+
keepOldTables : boolean;
|
|
48356
|
+
/**
|
|
48357
|
+
* @deprecated Please use the 'keepOldTables' property instead.
|
|
48358
|
+
* Keeps the tables in the destination range.
|
|
48359
|
+
* @param value - The value to set.
|
|
48360
|
+
*/
|
|
48361
|
+
setKeepOldTables(value: boolean) : void;
|
|
47939
48362
|
/**
|
|
47940
48363
|
* @deprecated Please use the 'onlyVisibleCells' property instead.
|
|
47941
48364
|
* True means only copying visible cells.
|
|
@@ -66835,6 +67258,11 @@ export class SeriesCollection {
|
|
|
66835
67258
|
* Clears the collection
|
|
66836
67259
|
*/
|
|
66837
67260
|
clear() : void;
|
|
67261
|
+
/**
|
|
67262
|
+
* Set Monochromatic Palette for chart series.
|
|
67263
|
+
* @param type - The Monochromatic Type.
|
|
67264
|
+
*/
|
|
67265
|
+
changeColors(type: ChartColorPaletteType) : void;
|
|
66838
67266
|
/**
|
|
66839
67267
|
* Gets the number of elements contained in.
|
|
66840
67268
|
*/
|