aspose.cells.node 25.6.0 → 25.7.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/types.d.ts CHANGED
@@ -4,6 +4,12 @@
4
4
  * Monitor for interruption requests in all time-consuming operations.
5
5
  */
6
6
  export abstract class AbstractInterruptMonitor {
7
+ /**
8
+ * Indicates whether interruption is requested for current operation.
9
+ * If true then current operation will be interrupted.
10
+ * Implementation should perform fast and efficient check here, otherwise it may become another bottleneck for the procedure.
11
+ */
12
+ abstract isInterruptionRequested() : boolean;
7
13
  /**
8
14
  * When procedure is interrupted, whether terminate the procedure quietly or throw an Exception.
9
15
  * Default is false, that is, when <see cref="IsInterruptionRequested"/> is true,
@@ -371,7 +377,7 @@ export class CustomRenderSettings {
371
377
  */
372
378
  constructor();
373
379
  /**
374
- * Get cell border width according to border type.
380
+ * Specifies cell border width according to border type.
375
381
  * @param borderType - cell border type
376
382
  * @returns
377
383
  * cell border width
@@ -414,18 +420,11 @@ export class SvgImageOptions extends ImageOrPrintOptions {
414
420
  */
415
421
  constructor(obj: ImageOrPrintOptions);
416
422
  /**
417
- * @deprecated Please use the 'imageType' property instead.
418
423
  * Gets or sets the format of the generated images.
419
424
  * default value: PNG.
420
425
  */
421
426
  getImageType() : ImageType;
422
427
  /**
423
- * Gets or sets the format of the generated images.
424
- * default value: PNG.
425
- */
426
- imageType : ImageType;
427
- /**
428
- * @deprecated Please use the 'imageType' property instead.
429
428
  * Gets or sets the format of the generated images.
430
429
  * default value: PNG.
431
430
  * @param value - The value to set.
@@ -3065,7 +3064,6 @@ export class LowCodeHtmlSaveOptions extends LowCodeSaveOptions {
3065
3064
  */
3066
3065
  constructor();
3067
3066
  /**
3068
- * @deprecated Please use the 'saveFormat' property instead.
3069
3067
  * Gets and sets the format of spreadsheet.
3070
3068
  *
3071
3069
  * @remarks
@@ -3074,15 +3072,6 @@ export class LowCodeHtmlSaveOptions extends LowCodeSaveOptions {
3074
3072
  */
3075
3073
  getSaveFormat() : SaveFormat;
3076
3074
  /**
3077
- * Gets and sets the format of spreadsheet.
3078
- *
3079
- * @remarks
3080
- * When changing this property,
3081
- * the save format specified by <see cref="HtmlOptions"/> will be ignored(if it had been specified before).
3082
- */
3083
- saveFormat : SaveFormat;
3084
- /**
3085
- * @deprecated Please use the 'saveFormat' property instead.
3086
3075
  * Gets and sets the format of spreadsheet.
3087
3076
  * @param value - The value to set.
3088
3077
  *
@@ -3138,7 +3127,6 @@ export class LowCodeImageSaveOptions extends LowCodeSaveOptions {
3138
3127
  */
3139
3128
  constructor();
3140
3129
  /**
3141
- * @deprecated Please use the 'saveFormat' property instead.
3142
3130
  * Gets or sets the save format.
3143
3131
  *
3144
3132
  * @remarks
@@ -3147,15 +3135,6 @@ export class LowCodeImageSaveOptions extends LowCodeSaveOptions {
3147
3135
  */
3148
3136
  getSaveFormat() : SaveFormat;
3149
3137
  /**
3150
- * Gets or sets the save format.
3151
- *
3152
- * @remarks
3153
- * If <see cref="ImageOptions"/> has been specified, setting this property will also
3154
- * change the <see cref="ImageOrPrintOptions.ImageType"/> value of it.
3155
- */
3156
- saveFormat : SaveFormat;
3157
- /**
3158
- * @deprecated Please use the 'saveFormat' property instead.
3159
3138
  * Gets or sets the save format.
3160
3139
  * @param value - The value to set.
3161
3140
  *
@@ -3365,18 +3344,11 @@ export class LowCodePdfSaveOptions extends LowCodeSaveOptions {
3365
3344
  */
3366
3345
  constructor();
3367
3346
  /**
3368
- * @deprecated Please use the 'saveFormat' property instead.
3369
3347
  * The save format for the output.
3370
3348
  * For converting to pdf, it can only be <see cref="SaveFormat.Pdf"/>.
3371
3349
  */
3372
3350
  getSaveFormat() : SaveFormat;
3373
3351
  /**
3374
- * The save format for the output.
3375
- * For converting to pdf, it can only be <see cref="SaveFormat.Pdf"/>.
3376
- */
3377
- saveFormat : SaveFormat;
3378
- /**
3379
- * @deprecated Please use the 'saveFormat' property instead.
3380
3352
  * The save format for the output.
3381
3353
  * For converting to pdf, it can only be <see cref="SaveFormat.Pdf"/>.
3382
3354
  * @param value - The value to set.
@@ -4888,14 +4860,9 @@ export class PivotDiscreteGroupSettings extends PivotFieldGroupSettings {
4888
4860
  */
4889
4861
  constructor(obj: PivotFieldGroupSettings);
4890
4862
  /**
4891
- * @deprecated Please use the 'type' property instead.
4892
4863
  * Gets the group type.
4893
4864
  */
4894
4865
  getType() : PivotFieldGroupType;
4895
- /**
4896
- * Gets the group type.
4897
- */
4898
- readonly type : PivotFieldGroupType;
4899
4866
  /**
4900
4867
  * @deprecated Please use the 'items' property instead.
4901
4868
  * Gets the discrete items.
@@ -5002,14 +4969,9 @@ export class PivotDateTimeRangeGroupSettings extends PivotFieldGroupSettings {
5002
4969
  */
5003
4970
  constructor(obj: PivotFieldGroupSettings);
5004
4971
  /**
5005
- * @deprecated Please use the 'type' property instead.
5006
4972
  * Gets the data time group type.
5007
4973
  */
5008
4974
  getType() : PivotFieldGroupType;
5009
- /**
5010
- * Gets the data time group type.
5011
- */
5012
- readonly type : PivotFieldGroupType;
5013
4975
  /**
5014
4976
  * @deprecated Please use the 'start' property instead.
5015
4977
  * Gets the start date time of the group.
@@ -5128,14 +5090,9 @@ export class PivotNumbericRangeGroupSettings extends PivotFieldGroupSettings {
5128
5090
  */
5129
5091
  constructor(obj: PivotFieldGroupSettings);
5130
5092
  /**
5131
- * @deprecated Please use the 'type' property instead.
5132
5093
  * Gets the group type.
5133
5094
  */
5134
5095
  getType() : PivotFieldGroupType;
5135
- /**
5136
- * Gets the group type.
5137
- */
5138
- readonly type : PivotFieldGroupType;
5139
5096
  /**
5140
5097
  * @deprecated Please use the 'start' property instead.
5141
5098
  * Gets the start number of the group.
@@ -7225,6 +7182,10 @@ export class ChartTextFrame extends ChartFrame {
7225
7182
  * @param obj - The parent object.
7226
7183
  */
7227
7184
  constructor(obj: ChartFrame);
7185
+ /**
7186
+ * Indicates the text is auto generated.
7187
+ */
7188
+ isAutoText() : boolean;
7228
7189
  /**
7229
7190
  * Indicates the text is auto generated.
7230
7191
  * @param value - The value to set.
@@ -7349,6 +7310,10 @@ export class ChartTextFrame extends ChartFrame {
7349
7310
  * @param value - The value to set.
7350
7311
  */
7351
7312
  setDirectionType(value: ChartTextDirectionType) : void;
7313
+ /**
7314
+ * Gets or sets a value indicating whether the text is wrapped.
7315
+ */
7316
+ isTextWrapped() : boolean;
7352
7317
  /**
7353
7318
  * Gets or sets a value indicating whether the text is wrapped.
7354
7319
  * @param value - The value to set.
@@ -7402,6 +7367,41 @@ export enum MemorySetting {
7402
7367
  * This option is available since v 8.0.0.
7403
7368
  */
7404
7369
  MemoryPreference = 1,
7370
+ /**
7371
+ * Memory performance preferrable and using file instead of memory
7372
+ * to maintain the cells data.
7373
+ *
7374
+ * @remarks
7375
+ * With this mode the cells data will be maintained in compact format
7376
+ * and the major part of the data will be maintained in temporary file instead of memory.
7377
+ * So when comparing with <see cref="MemoryPreference"/> mode,
7378
+ * this mode may decrease the memory cost more, but the IO operations for accessing
7379
+ * cells data also will cause higher time cost.
7380
+ * <list type="bullet">
7381
+ * <listheader>Some notable limits and recommended operations when using this mode:</listheader>
7382
+ * <item>
7383
+ * When this mode is used for any worksheet in one workbook, <see cref="Workbook.Dispose()"/>
7384
+ * should be called at the end of work to release all resources such as the temporary files.
7385
+ * </item>
7386
+ * <item>
7387
+ * Randomly accessing cells will give poor performance because data needs
7388
+ * to be read randomly and repeatedly(so the pointer in the file will be
7389
+ * changed accordingly and IO operations will be required repeatedly).
7390
+ * If possible, please always access the data sequentially(row by row).
7391
+ * </item>
7392
+ * <item>
7393
+ * When the data of one row/cell be changed, data of other cells/rows
7394
+ * may also be influenced(such as the data be shifted/moved to other places
7395
+ * to allocated enough spaces for the changed data).
7396
+ * So every change of every data requires synchronization of other existing objects(
7397
+ * such as Row or Cell object).
7398
+ * So, to get better performance, please do not maintain multiple Rows/Cells
7399
+ * at the same time. Processing them one by one will reduce the data synchronization
7400
+ * for them so the performance can be improved.
7401
+ * </item>
7402
+ * </list>
7403
+ */
7404
+ FileCache = 2,
7405
7405
  }
7406
7406
 
7407
7407
  /**
@@ -9431,58 +9431,34 @@ export class DataModelConnection extends ExternalConnection {
9431
9431
  */
9432
9432
  constructor(obj: ExternalConnection);
9433
9433
  /**
9434
- * @deprecated Please use the 'classType' property instead.
9435
9434
  * Gets the type of this <see cref="ExternalConnection"/> object.
9436
9435
  */
9437
9436
  getClassType() : ExternalConnectionClassType;
9438
9437
  /**
9439
- * Gets the type of this <see cref="ExternalConnection"/> object.
9440
- */
9441
- readonly classType : ExternalConnectionClassType;
9442
- /**
9443
- * @deprecated Please use the 'command' property instead.
9444
9438
  * The string containing the database command to pass to the data provider API that will
9445
9439
  * interact with the external source in order to retrieve data
9446
9440
  */
9447
9441
  getCommand() : string;
9448
9442
  /**
9449
- * The string containing the database command to pass to the data provider API that will
9450
- * interact with the external source in order to retrieve data
9451
- */
9452
- command : string;
9453
- /**
9454
- * @deprecated Please use the 'command' property instead.
9455
9443
  * The string containing the database command to pass to the data provider API that will
9456
9444
  * interact with the external source in order to retrieve data
9457
9445
  * @param value - The value to set.
9458
9446
  */
9459
9447
  setCommand(value: string) : void;
9460
9448
  /**
9461
- * @deprecated Please use the 'commandType' property instead.
9462
9449
  * Returns <see cref="OLEDBCommandType"/> type.
9463
9450
  */
9464
9451
  getCommandType() : OLEDBCommandType;
9465
9452
  /**
9466
- * Returns <see cref="OLEDBCommandType"/> type.
9467
- */
9468
- commandType : OLEDBCommandType;
9469
- /**
9470
- * @deprecated Please use the 'commandType' property instead.
9471
9453
  * Returns <see cref="OLEDBCommandType"/> type.
9472
9454
  * @param value - The value to set.
9473
9455
  */
9474
9456
  setCommandType(value: OLEDBCommandType) : void;
9475
9457
  /**
9476
- * @deprecated Please use the 'connectionString' property instead.
9477
9458
  * The connection information string is used to make contact with an OLE DB or ODBC data source.
9478
9459
  */
9479
9460
  getConnectionString() : string;
9480
9461
  /**
9481
- * The connection information string is used to make contact with an OLE DB or ODBC data source.
9482
- */
9483
- connectionString : string;
9484
- /**
9485
- * @deprecated Please use the 'connectionString' property instead.
9486
9462
  * The connection information string is used to make contact with an OLE DB or ODBC data source.
9487
9463
  * @param value - The value to set.
9488
9464
  */
@@ -9531,14 +9507,9 @@ export class FileFontSource extends FontSourceBase {
9531
9507
  */
9532
9508
  readonly filePath : string;
9533
9509
  /**
9534
- * @deprecated Please use the 'type' property instead.
9535
9510
  * Returns the type of the font source.
9536
9511
  */
9537
9512
  getType() : FontSourceType;
9538
- /**
9539
- * Returns the type of the font source.
9540
- */
9541
- readonly type : FontSourceType;
9542
9513
  /**
9543
9514
  * Checks whether the implementation object is null.
9544
9515
  */
@@ -9579,14 +9550,9 @@ export class FolderFontSource extends FontSourceBase {
9579
9550
  */
9580
9551
  readonly scanSubFolders : boolean;
9581
9552
  /**
9582
- * @deprecated Please use the 'type' property instead.
9583
9553
  * Returns the type of the font source.
9584
9554
  */
9585
9555
  getType() : FontSourceType;
9586
- /**
9587
- * Returns the type of the font source.
9588
- */
9589
- readonly type : FontSourceType;
9590
9556
  /**
9591
9557
  * Checks whether the implementation object is null.
9592
9558
  */
@@ -9798,14 +9764,9 @@ export class MemoryFontSource extends FontSourceBase {
9798
9764
  */
9799
9765
  readonly fontData : Uint8Array;
9800
9766
  /**
9801
- * @deprecated Please use the 'type' property instead.
9802
9767
  * Returns the type of the font source.
9803
9768
  */
9804
9769
  getType() : FontSourceType;
9805
- /**
9806
- * Returns the type of the font source.
9807
- */
9808
- readonly type : FontSourceType;
9809
9770
  /**
9810
9771
  * Checks whether the implementation object is null.
9811
9772
  */
@@ -10094,16 +10055,16 @@ export class JsonSaveOptions extends SaveOptions {
10094
10055
  constructor(obj: SaveOptions);
10095
10056
  /**
10096
10057
  * @deprecated Please use the 'exportStylePool' property instead.
10097
- * Exporting style pool when converting to json struct.
10058
+ * Indicates whether to export styles collectively or individually to each cell.
10098
10059
  */
10099
10060
  getExportStylePool() : boolean;
10100
10061
  /**
10101
- * Exporting style pool when converting to json struct.
10062
+ * Indicates whether to export styles collectively or individually to each cell.
10102
10063
  */
10103
10064
  exportStylePool : boolean;
10104
10065
  /**
10105
10066
  * @deprecated Please use the 'exportStylePool' property instead.
10106
- * Exporting style pool when converting to json struct.
10067
+ * Indicates whether to export styles collectively or individually to each cell.
10107
10068
  * @param value - The value to set.
10108
10069
  */
10109
10070
  setExportStylePool(value: boolean) : void;
@@ -10879,7 +10840,7 @@ export class PivotGlobalizationSettings {
10879
10840
  */
10880
10841
  getTextOfRange() : string;
10881
10842
  /**
10882
- * Gets the local text of "All Periods"
10843
+ * Gets the localized text of "All Periods".
10883
10844
  */
10884
10845
  getTextOfAllPeriods() : string;
10885
10846
  /**
@@ -10987,32 +10948,17 @@ export class SettableGlobalizationSettings {
10987
10948
  */
10988
10949
  constructor();
10989
10950
  /**
10990
- * @deprecated Please use the 'listSeparator' property instead.
10991
10951
  * Gets the separator for list, parameters of function, ...etc.
10992
10952
  */
10993
10953
  getListSeparator() : string;
10994
10954
  /**
10995
- * Gets the separator for list, parameters of function, ...etc.
10996
- */
10997
- readonly listSeparator : string;
10998
- /**
10999
- * @deprecated Please use the 'rowSeparatorOfFormulaArray' property instead.
11000
10955
  * Gets the separator for rows in array data in formula.
11001
10956
  */
11002
10957
  getRowSeparatorOfFormulaArray() : string;
11003
10958
  /**
11004
- * Gets the separator for rows in array data in formula.
11005
- */
11006
- readonly rowSeparatorOfFormulaArray : string;
11007
- /**
11008
- * @deprecated Please use the 'columnSeparatorOfFormulaArray' property instead.
11009
10959
  * Gets the separator for the items in array's row data in formula.
11010
10960
  */
11011
10961
  getColumnSeparatorOfFormulaArray() : string;
11012
- /**
11013
- * Gets the separator for the items in array's row data in formula.
11014
- */
11015
- readonly columnSeparatorOfFormulaArray : string;
11016
10962
  /**
11017
10963
  * Gets the total name of specific function.
11018
10964
  * @param functionType - The function type.
@@ -11364,6 +11310,32 @@ export class SettablePivotGlobalizationSettings {
11364
11310
  * and change them out of the scope of formula calculation.
11365
11311
  */
11366
11312
  export abstract class AbstractCalculationEngine {
11313
+ /**
11314
+ * Indicates whether this engine needs the literal text of parameter while doing calculation. Default value is false.
11315
+ *
11316
+ * @remarks
11317
+ * If this custom calculation engine needs the parameter's literal text,
11318
+ * more stacks will be required to cache the literal text for parameters
11319
+ * and Calculate() method may be called recursively to calculate the parameter's value.
11320
+ * Generally the literal text is not needed for calculating formulas
11321
+ * and this property should be kept as false for most implementations to get better performance.
11322
+ */
11323
+ isParamLiteralRequired() : boolean;
11324
+ /**
11325
+ * Indicates whether this engine needs the parameter to be calculated in array mode. Default value is false.
11326
+ * If <see cref="CalculationData.GetParamValueInArrayMode(int, int, int)"/> is required when calculating custom
11327
+ * functions and user has not updated the definition for them
11328
+ * (by <see cref="Workbook.UpdateCustomFunctionDefinition(CustomFunctionDefinition)"/>),
11329
+ * this property needs to be set as true.
11330
+ *
11331
+ * @remarks
11332
+ * If this custom calculation engine needs the parameter to be calculated in array mode,
11333
+ * more stacks will be required to cache the tree for parameters
11334
+ * and Calculate() method may be called recursively to calculate the parameter's value.
11335
+ * For performance consideration, please keep this property as the default value(false)
11336
+ * if there is no special requirement.
11337
+ */
11338
+ isParamArrayModeRequired() : boolean;
11367
11339
  /**
11368
11340
  * Whether built-in functions that have been supported by the built-in engine
11369
11341
  * should be checked and processed by this implementation.
@@ -12816,6 +12788,14 @@ export class Cells {
12816
12788
  * @param value - The value to set.
12817
12789
  */
12818
12790
  setStyle(value: Style) : void;
12791
+ /**
12792
+ */
12793
+ isDefaultColumnHidden : boolean;
12794
+ /**
12795
+ * @deprecated Please use the 'isDefaultColumnHidden' property instead.
12796
+ * @param value - The value to set.
12797
+ */
12798
+ setIsDefaultColumnHidden(value: boolean) : void;
12819
12799
  /**
12820
12800
  * @deprecated Please use the 'standardWidthInch' property instead.
12821
12801
  * Gets or sets the default column width in the worksheet, in unit of inches.
@@ -15111,18 +15091,12 @@ export class SystemTimeInterruptMonitor {
15111
15091
  /**
15112
15092
  * This implementation just checks whether the time cost(from the time when starting this monitor to now) is greater than user specified limit.
15113
15093
  */
15114
- readonly isInterruptionRequested : boolean;
15094
+ isInterruptionRequested() : boolean;
15115
15095
  /**
15116
- * @deprecated Please use the 'terminateWithoutException' property instead.
15117
15096
  * See <see cref="AbstractInterruptMonitor.TerminateWithoutException"/>.
15118
15097
  * This property is specified by user when constructing this monitor instance.
15119
15098
  */
15120
15099
  getTerminateWithoutException() : boolean;
15121
- /**
15122
- * See <see cref="AbstractInterruptMonitor.TerminateWithoutException"/>.
15123
- * This property is specified by user when constructing this monitor instance.
15124
- */
15125
- readonly terminateWithoutException : boolean;
15126
15100
  /**
15127
15101
  * Starts the monitor with the specified time limit. The start time to calculate time cost is just when this method is called,
15128
15102
  * so the procedure which needs to be monitored should be started just after this call.
@@ -15611,14 +15585,9 @@ export class PowerQueryFormulaFunction extends PowerQueryFormula {
15611
15585
  */
15612
15586
  constructor(obj: PowerQueryFormula);
15613
15587
  /**
15614
- * @deprecated Please use the 'type' property instead.
15615
15588
  * Gets the type of power query formula.
15616
15589
  */
15617
15590
  getType() : PowerQueryFormulaType;
15618
- /**
15619
- * Gets the type of power query formula.
15620
- */
15621
- readonly type : PowerQueryFormulaType;
15622
15591
  /**
15623
15592
  * @deprecated Please use the 'f' property instead.
15624
15593
  * Gets and sets the definition of function.
@@ -15713,14 +15682,9 @@ export class PowerQueryFormulaParameter extends PowerQueryFormula {
15713
15682
  */
15714
15683
  constructor(obj: PowerQueryFormula);
15715
15684
  /**
15716
- * @deprecated Please use the 'type' property instead.
15717
15685
  * Gets the type of power query formula.
15718
15686
  */
15719
15687
  getType() : PowerQueryFormulaType;
15720
- /**
15721
- * Gets the type of power query formula.
15722
- */
15723
- readonly type : PowerQueryFormulaType;
15724
15688
  /**
15725
15689
  * @deprecated Please use the 'value' property instead.
15726
15690
  * Gets the value of parameter.
@@ -15737,14 +15701,9 @@ export class PowerQueryFormulaParameter extends PowerQueryFormula {
15737
15701
  */
15738
15702
  setValue(value: string) : void;
15739
15703
  /**
15740
- * @deprecated Please use the 'formulaDefinition' property instead.
15741
15704
  * Gets the definition of the parameter.
15742
15705
  */
15743
15706
  getFormulaDefinition() : string;
15744
- /**
15745
- * Gets the definition of the parameter.
15746
- */
15747
- readonly formulaDefinition : string;
15748
15707
  /**
15749
15708
  * Checks whether the implementation object is null.
15750
15709
  */
@@ -16678,6 +16637,27 @@ export class DocxSaveOptions extends PaginatedSaveOptions {
16678
16637
  * Only for charts.
16679
16638
  */
16680
16639
  setSaveAsEditableShapes(value: boolean) : void;
16640
+ /**
16641
+ * @deprecated Please use the 'asNormalView' property instead.
16642
+ * Exporting Excel file to docx fiel as normal view.
16643
+ * If this property is true , one Area will be output, and no scale will take effect.
16644
+ * The default value is false.
16645
+ */
16646
+ getAsNormalView() : boolean;
16647
+ /**
16648
+ * Exporting Excel file to docx fiel as normal view.
16649
+ * If this property is true , one Area will be output, and no scale will take effect.
16650
+ * The default value is false.
16651
+ */
16652
+ asNormalView : boolean;
16653
+ /**
16654
+ * @deprecated Please use the 'asNormalView' property instead.
16655
+ * Exporting Excel file to docx fiel as normal view.
16656
+ * If this property is true , one Area will be output, and no scale will take effect.
16657
+ * The default value is false.
16658
+ * @param value - The value to set.
16659
+ */
16660
+ setAsNormalView(value: boolean) : void;
16681
16661
  /**
16682
16662
  * Checks whether the implementation object is null.
16683
16663
  */
@@ -16832,6 +16812,30 @@ export class MarkdownSaveOptions extends SaveOptions {
16832
16812
  * img elements and separate files are not created.
16833
16813
  */
16834
16814
  setExportImagesAsBase64(value: boolean) : void;
16815
+ /**
16816
+ * @deprecated Please use the 'calculateFormula' property instead.
16817
+ * Indicates whether to calculate formulas before saving html file.
16818
+ *
16819
+ * @remarks
16820
+ * The default value is false.
16821
+ */
16822
+ getCalculateFormula() : boolean;
16823
+ /**
16824
+ * Indicates whether to calculate formulas before saving html file.
16825
+ *
16826
+ * @remarks
16827
+ * The default value is false.
16828
+ */
16829
+ calculateFormula : boolean;
16830
+ /**
16831
+ * @deprecated Please use the 'calculateFormula' property instead.
16832
+ * Indicates whether to calculate formulas before saving html file.
16833
+ * @param value - The value to set.
16834
+ *
16835
+ * @remarks
16836
+ * The default value is false.
16837
+ */
16838
+ setCalculateFormula(value: boolean) : void;
16835
16839
  /**
16836
16840
  * Checks whether the implementation object is null.
16837
16841
  */
@@ -23344,16 +23348,10 @@ export class TextOptions extends Font {
23344
23348
  */
23345
23349
  constructor(obj: Font);
23346
23350
  /**
23347
- * @deprecated Please use the 'name' property instead.
23348
23351
  * Gets and sets the name of the shape.
23349
23352
  */
23350
23353
  getName() : string;
23351
23354
  /**
23352
- * Gets and sets the name of the shape.
23353
- */
23354
- name : string;
23355
- /**
23356
- * @deprecated Please use the 'name' property instead.
23357
23355
  * Gets and sets the name of the shape.
23358
23356
  * @param value - The value to set.
23359
23357
  */
@@ -26233,6 +26231,10 @@ export class ActiveXControl extends ActiveXControlBase {
26233
26231
  * @param value - The value to set.
26234
26232
  */
26235
26233
  setIsTransparent(value: boolean) : void;
26234
+ /**
26235
+ * Indicates whether the control will automatically resize to display its entire contents.
26236
+ */
26237
+ isAutoSize() : boolean;
26236
26238
  /**
26237
26239
  * Indicates whether the control will automatically resize to display its entire contents.
26238
26240
  * @param value - The value to set.
@@ -26278,14 +26280,9 @@ export class ActiveXControl extends ActiveXControlBase {
26278
26280
  */
26279
26281
  setTextAlign(value: TextAlignmentType) : void;
26280
26282
  /**
26281
- * @deprecated Please use the 'data' property instead.
26282
26283
  * Gets and sets the binary data of the control.
26283
26284
  */
26284
26285
  getData() : Uint8Array;
26285
- /**
26286
- * Gets and sets the binary data of the control.
26287
- */
26288
- readonly data : Uint8Array;
26289
26286
  /**
26290
26287
  * Checks whether the implementation object is null.
26291
26288
  */
@@ -26381,6 +26378,10 @@ export class ActiveXControlBase {
26381
26378
  * @param value - The value to set.
26382
26379
  */
26383
26380
  setBackOleColor(value: number) : void;
26381
+ /**
26382
+ * Indicates whether this control is visible.
26383
+ */
26384
+ isVisible() : boolean;
26384
26385
  /**
26385
26386
  * Indicates whether this control is visible.
26386
26387
  * @param value - The value to set.
@@ -26531,14 +26532,9 @@ export class CheckBoxActiveXControl extends ActiveXControl {
26531
26532
  */
26532
26533
  constructor(obj: ActiveXControl);
26533
26534
  /**
26534
- * @deprecated Please use the 'type' property instead.
26535
26535
  * Gets the type of the ActiveX control.
26536
26536
  */
26537
26537
  getType() : ControlType;
26538
- /**
26539
- * Gets the type of the ActiveX control.
26540
- */
26541
- readonly type : ControlType;
26542
26538
  /**
26543
26539
  * @deprecated Please use the 'groupName' property instead.
26544
26540
  * Gets and sets the group's name.
@@ -26727,14 +26723,9 @@ export class ComboBoxActiveXControl extends ActiveXControl {
26727
26723
  */
26728
26724
  constructor(obj: ActiveXControl);
26729
26725
  /**
26730
- * @deprecated Please use the 'type' property instead.
26731
26726
  * Gets the type of the ActiveX control.
26732
26727
  */
26733
26728
  getType() : ControlType;
26734
- /**
26735
- * Gets the type of the ActiveX control.
26736
- */
26737
- readonly type : ControlType;
26738
26729
  /**
26739
26730
  * @deprecated Please use the 'maxLength' property instead.
26740
26731
  * Gets and sets the maximum number of characters
@@ -26989,6 +26980,12 @@ export class ComboBoxActiveXControl extends ActiveXControl {
26989
26980
  * @param value - The value to set.
26990
26981
  */
26991
26982
  setEnterFieldBehavior(value: boolean) : void;
26983
+ /**
26984
+ * Specifies the basic unit used to extend a selection.
26985
+ * True specifies that the basic unit is a single character.
26986
+ * false specifies that the basic unit is a whole word.
26987
+ */
26988
+ isAutoWordSelected() : boolean;
26992
26989
  /**
26993
26990
  * Specifies the basic unit used to extend a selection.
26994
26991
  * True specifies that the basic unit is a single character.
@@ -27133,14 +27130,9 @@ export class CommandButtonActiveXControl extends ActiveXControl {
27133
27130
  */
27134
27131
  constructor(obj: ActiveXControl);
27135
27132
  /**
27136
- * @deprecated Please use the 'type' property instead.
27137
27133
  * Gets the type of the ActiveX control.
27138
27134
  */
27139
27135
  getType() : ControlType;
27140
- /**
27141
- * Gets the type of the ActiveX control.
27142
- */
27143
- readonly type : ControlType;
27144
27136
  /**
27145
27137
  * @deprecated Please use the 'caption' property instead.
27146
27138
  * Gets and set the descriptive text that appears on a control.
@@ -27242,20 +27234,14 @@ export class ImageActiveXControl extends ActiveXControl {
27242
27234
  */
27243
27235
  constructor(obj: ActiveXControl);
27244
27236
  /**
27245
- * @deprecated Please use the 'type' property instead.
27246
27237
  * Gets the type of the ActiveX control.
27247
27238
  */
27248
27239
  getType() : ControlType;
27249
- /**
27250
- * Gets the type of the ActiveX control.
27251
- */
27252
- readonly type : ControlType;
27253
27240
  /**
27254
27241
  * Indicates whether the control will automatically resize to display its entire contents.
27255
27242
  */
27256
- isAutoSize : boolean;
27243
+ isAutoSize() : boolean;
27257
27244
  /**
27258
- * @deprecated Please use the 'isAutoSize' property instead.
27259
27245
  * Indicates whether the control will automatically resize to display its entire contents.
27260
27246
  * @param value - The value to set.
27261
27247
  */
@@ -27376,14 +27362,9 @@ export class LabelActiveXControl extends ActiveXControl {
27376
27362
  */
27377
27363
  constructor(obj: ActiveXControl);
27378
27364
  /**
27379
- * @deprecated Please use the 'type' property instead.
27380
27365
  * Gets the type of the ActiveX control.
27381
27366
  */
27382
27367
  getType() : ControlType;
27383
- /**
27384
- * Gets the type of the ActiveX control.
27385
- */
27386
- readonly type : ControlType;
27387
27368
  /**
27388
27369
  * @deprecated Please use the 'caption' property instead.
27389
27370
  * Gets and set the descriptive text that appears on a control.
@@ -27515,14 +27496,9 @@ export class ListBoxActiveXControl extends ActiveXControl {
27515
27496
  */
27516
27497
  constructor(obj: ActiveXControl);
27517
27498
  /**
27518
- * @deprecated Please use the 'type' property instead.
27519
27499
  * Gets the type of the ActiveX control.
27520
27500
  */
27521
27501
  getType() : ControlType;
27522
- /**
27523
- * Gets the type of the ActiveX control.
27524
- */
27525
- readonly type : ControlType;
27526
27502
  /**
27527
27503
  * @deprecated Please use the 'scrollBars' property instead.
27528
27504
  * Indicates specifies whether the control has vertical scroll bars, horizontal scroll bars, both, or neither.
@@ -27991,14 +27967,9 @@ export class RadioButtonActiveXControl extends ToggleButtonActiveXControl {
27991
27967
  */
27992
27968
  constructor(obj: ToggleButtonActiveXControl);
27993
27969
  /**
27994
- * @deprecated Please use the 'type' property instead.
27995
27970
  * Gets the type of the ActiveX control.
27996
27971
  */
27997
27972
  getType() : ControlType;
27998
- /**
27999
- * Gets the type of the ActiveX control.
28000
- */
28001
- readonly type : ControlType;
28002
27973
  /**
28003
27974
  * @deprecated Please use the 'groupName' property instead.
28004
27975
  * Gets and sets the group's name.
@@ -28055,14 +28026,9 @@ export class ScrollBarActiveXControl extends SpinButtonActiveXControl {
28055
28026
  */
28056
28027
  constructor(obj: SpinButtonActiveXControl);
28057
28028
  /**
28058
- * @deprecated Please use the 'type' property instead.
28059
28029
  * Gets the type of the ActiveX control.
28060
28030
  */
28061
28031
  getType() : ControlType;
28062
- /**
28063
- * Gets the type of the ActiveX control.
28064
- */
28065
- readonly type : ControlType;
28066
28032
  /**
28067
28033
  * @deprecated Please use the 'largeChange' property instead.
28068
28034
  * Gets and sets the amount by which the Position property changes
@@ -28161,14 +28127,9 @@ export class SpinButtonActiveXControl extends ActiveXControl {
28161
28127
  */
28162
28128
  constructor(obj: ActiveXControl);
28163
28129
  /**
28164
- * @deprecated Please use the 'type' property instead.
28165
28130
  * Gets the type of the ActiveX control.
28166
28131
  */
28167
28132
  getType() : ControlType;
28168
- /**
28169
- * Gets the type of the ActiveX control.
28170
- */
28171
- readonly type : ControlType;
28172
28133
  /**
28173
28134
  * @deprecated Please use the 'min' property instead.
28174
28135
  * Gets and sets the minimum acceptable value.
@@ -28260,14 +28221,9 @@ export class TextBoxActiveXControl extends ActiveXControl {
28260
28221
  */
28261
28222
  constructor(obj: ActiveXControl);
28262
28223
  /**
28263
- * @deprecated Please use the 'type' property instead.
28264
28224
  * Gets the type of the ActiveX control.
28265
28225
  */
28266
28226
  getType() : ControlType;
28267
- /**
28268
- * Gets the type of the ActiveX control.
28269
- */
28270
- readonly type : ControlType;
28271
28227
  /**
28272
28228
  * @deprecated Please use the 'borderStyle' property instead.
28273
28229
  * Gets and set the type of border used by the control.
@@ -28485,6 +28441,12 @@ export class TextBoxActiveXControl extends ActiveXControl {
28485
28441
  * @param value - The value to set.
28486
28442
  */
28487
28443
  setIsMultiLine(value: boolean) : void;
28444
+ /**
28445
+ * Specifies the basic unit used to extend a selection.
28446
+ * True specifies that the basic unit is a single character.
28447
+ * false specifies that the basic unit is a whole word.
28448
+ */
28449
+ isAutoWordSelected() : boolean;
28488
28450
  /**
28489
28451
  * Specifies the basic unit used to extend a selection.
28490
28452
  * True specifies that the basic unit is a single character.
@@ -28563,14 +28525,9 @@ export class ToggleButtonActiveXControl extends ActiveXControl {
28563
28525
  */
28564
28526
  constructor(obj: ActiveXControl);
28565
28527
  /**
28566
- * @deprecated Please use the 'type' property instead.
28567
28528
  * Gets the type of the ActiveX control.
28568
28529
  */
28569
28530
  getType() : ControlType;
28570
- /**
28571
- * Gets the type of the ActiveX control.
28572
- */
28573
- readonly type : ControlType;
28574
28531
  /**
28575
28532
  * @deprecated Please use the 'caption' property instead.
28576
28533
  * Gets and set the descriptive text that appears on a control.
@@ -28719,23 +28676,13 @@ export class UnknownControl extends ActiveXControl {
28719
28676
  */
28720
28677
  constructor(obj: ActiveXControl);
28721
28678
  /**
28722
- * @deprecated Please use the 'data' property instead.
28723
28679
  * Gets and sets the binary data of the control.
28724
28680
  */
28725
28681
  getData() : Uint8Array;
28726
28682
  /**
28727
- * Gets and sets the binary data of the control.
28728
- */
28729
- readonly data : Uint8Array;
28730
- /**
28731
- * @deprecated Please use the 'type' property instead.
28732
28683
  * Gets the type of the ActiveX control.
28733
28684
  */
28734
28685
  getType() : ControlType;
28735
- /**
28736
- * Gets the type of the ActiveX control.
28737
- */
28738
- readonly type : ControlType;
28739
28686
  /**
28740
28687
  * Gets the related data.
28741
28688
  * @param relId - The relationship id.
@@ -29279,14 +29226,9 @@ export class AutoNumberedBulletValue extends BulletValue {
29279
29226
  */
29280
29227
  constructor();
29281
29228
  /**
29282
- * @deprecated Please use the 'type' property instead.
29283
29229
  * Gets the type of the bullet.
29284
29230
  */
29285
29231
  getType() : BulletType;
29286
- /**
29287
- * Gets the type of the bullet.
29288
- */
29289
- readonly type : BulletType;
29290
29232
  /**
29291
29233
  * @deprecated Please use the 'startAt' property instead.
29292
29234
  * Gets and sets the starting number of the bullet.
@@ -29422,14 +29364,9 @@ export class CharacterBulletValue extends BulletValue {
29422
29364
  */
29423
29365
  constructor();
29424
29366
  /**
29425
- * @deprecated Please use the 'type' property instead.
29426
29367
  * Gets the type of the bullet.
29427
29368
  */
29428
29369
  getType() : BulletType;
29429
- /**
29430
- * Gets the type of the bullet.
29431
- */
29432
- readonly type : BulletType;
29433
29370
  /**
29434
29371
  * @deprecated Please use the 'character' property instead.
29435
29372
  * Gets and sets character of the bullet.
@@ -30118,14 +30055,9 @@ export class EquationNode extends FontSetting {
30118
30055
  */
30119
30056
  setParentNode(value: EquationNode) : void;
30120
30057
  /**
30121
- * @deprecated Please use the 'type' property instead.
30122
30058
  * Represents the type of the node.
30123
30059
  */
30124
30060
  getType() : TextNodeType;
30125
- /**
30126
- * Represents the type of the node.
30127
- */
30128
- readonly type : TextNodeType;
30129
30061
  /**
30130
30062
  * @deprecated Please use the 'equationType' property instead.
30131
30063
  * Get the equation type of the current node
@@ -30529,14 +30461,9 @@ export class NoneBulletValue extends BulletValue {
30529
30461
  */
30530
30462
  constructor();
30531
30463
  /**
30532
- * @deprecated Please use the 'type' property instead.
30533
30464
  * Gets the type of the bullet's value.
30534
30465
  */
30535
30466
  getType() : BulletType;
30536
- /**
30537
- * Gets the type of the bullet's value.
30538
- */
30539
- readonly type : BulletType;
30540
30467
  /**
30541
30468
  * Checks whether the implementation object is null.
30542
30469
  */
@@ -30557,14 +30484,9 @@ export class PictureBulletValue extends BulletValue {
30557
30484
  */
30558
30485
  constructor();
30559
30486
  /**
30560
- * @deprecated Please use the 'type' property instead.
30561
30487
  * Gets the type of the bullet's value.
30562
30488
  */
30563
30489
  getType() : BulletType;
30564
- /**
30565
- * Gets the type of the bullet's value.
30566
- */
30567
- readonly type : BulletType;
30568
30490
  /**
30569
30491
  * @deprecated Please use the 'imageData' property instead.
30570
30492
  * Gets and sets image data of the bullet.
@@ -31078,14 +31000,9 @@ export class TextParagraph extends FontSetting {
31078
31000
  */
31079
31001
  readonly bullet : Bullet;
31080
31002
  /**
31081
- * @deprecated Please use the 'type' property instead.
31082
31003
  * Gets the type of text node.
31083
31004
  */
31084
31005
  getType() : TextNodeType;
31085
- /**
31086
- * Gets the type of text node.
31087
- */
31088
- readonly type : TextNodeType;
31089
31006
  /**
31090
31007
  * @deprecated Please use the 'lineSpaceSizeType' property instead.
31091
31008
  * Gets and sets the amount of vertical white space that will be used within a paragraph.
@@ -32212,25 +32129,14 @@ export class DBConnection extends ExternalConnection {
32212
32129
  */
32213
32130
  constructor(obj: ExternalConnection);
32214
32131
  /**
32215
- * @deprecated Please use the 'classType' property instead.
32216
32132
  * Gets the type of this <see cref="ExternalConnection"/> object.
32217
32133
  */
32218
32134
  getClassType() : ExternalConnectionClassType;
32219
32135
  /**
32220
- * Gets the type of this <see cref="ExternalConnection"/> object.
32221
- */
32222
- readonly classType : ExternalConnectionClassType;
32223
- /**
32224
- * @deprecated Please use the 'connectionString' property instead.
32225
32136
  * The connection information string is used to make contact with an OLE DB or ODBC data source.
32226
32137
  */
32227
32138
  getConnectionString() : string;
32228
32139
  /**
32229
- * The connection information string is used to make contact with an OLE DB or ODBC data source.
32230
- */
32231
- connectionString : string;
32232
- /**
32233
- * @deprecated Please use the 'connectionString' property instead.
32234
32140
  * The connection information string is used to make contact with an OLE DB or ODBC data source.
32235
32141
  * @param value - The value to set.
32236
32142
  */
@@ -32275,16 +32181,10 @@ export class DBConnection extends ExternalConnection {
32275
32181
  */
32276
32182
  setConnectionInfo(value: string) : void;
32277
32183
  /**
32278
- * @deprecated Please use the 'powerQueryFormula' property instead.
32279
32184
  * Gets the definition of power query formula.
32280
32185
  */
32281
32186
  getPowerQueryFormula() : PowerQueryFormula;
32282
32187
  /**
32283
- * Gets the definition of power query formula.
32284
- */
32285
- readonly powerQueryFormula : PowerQueryFormula;
32286
- /**
32287
- * @deprecated Please use the 'commandType' property instead.
32288
32188
  * Specifies the OLE DB command type.
32289
32189
  * 1. Query specifies a cube name
32290
32190
  * 2. Query specifies a SQL statement
@@ -32294,16 +32194,6 @@ export class DBConnection extends ExternalConnection {
32294
32194
  */
32295
32195
  getCommandType() : OLEDBCommandType;
32296
32196
  /**
32297
- * Specifies the OLE DB command type.
32298
- * 1. Query specifies a cube name
32299
- * 2. Query specifies a SQL statement
32300
- * 3. Query specifies a table name
32301
- * 4. Query specifies that default information has been given, and it is up to the provider how to interpret.
32302
- * 5. Query is against a web based List Data Provider.
32303
- */
32304
- commandType : OLEDBCommandType;
32305
- /**
32306
- * @deprecated Please use the 'commandType' property instead.
32307
32197
  * Specifies the OLE DB command type.
32308
32198
  * 1. Query specifies a cube name
32309
32199
  * 2. Query specifies a SQL statement
@@ -32314,18 +32204,11 @@ export class DBConnection extends ExternalConnection {
32314
32204
  */
32315
32205
  setCommandType(value: OLEDBCommandType) : void;
32316
32206
  /**
32317
- * @deprecated Please use the 'command' property instead.
32318
32207
  * The string containing the database command to pass to the data provider API that will
32319
32208
  * interact with the external source in order to retrieve data
32320
32209
  */
32321
32210
  getCommand() : string;
32322
32211
  /**
32323
- * The string containing the database command to pass to the data provider API that will
32324
- * interact with the external source in order to retrieve data
32325
- */
32326
- command : string;
32327
- /**
32328
- * @deprecated Please use the 'command' property instead.
32329
32212
  * The string containing the database command to pass to the data provider API that will
32330
32213
  * interact with the external source in order to retrieve data
32331
32214
  * @param value - The value to set.
@@ -32383,7 +32266,6 @@ export class DBConnection extends ExternalConnection {
32383
32266
  */
32384
32267
  setSeverCommand(value: string) : void;
32385
32268
  /**
32386
- * @deprecated Please use the 'secondCommand' property instead.
32387
32269
  * Specifies a second command text string that is persisted when PivotTable server-based
32388
32270
  * page fields are in use.
32389
32271
  * For ODBC connections, serverCommand is usually a broader query than command (no
@@ -32392,15 +32274,6 @@ export class DBConnection extends ExternalConnection {
32392
32274
  */
32393
32275
  getSecondCommand() : string;
32394
32276
  /**
32395
- * Specifies a second command text string that is persisted when PivotTable server-based
32396
- * page fields are in use.
32397
- * For ODBC connections, serverCommand is usually a broader query than command (no
32398
- * WHERE clause is present in the former). Based on these 2 commands(Command and ServerCommand),
32399
- * parameter UI can be populated and parameterized queries can be constructed
32400
- */
32401
- secondCommand : string;
32402
- /**
32403
- * @deprecated Please use the 'secondCommand' property instead.
32404
32277
  * Specifies a second command text string that is persisted when PivotTable server-based
32405
32278
  * page fields are in use.
32406
32279
  * For ODBC connections, serverCommand is usually a broader query than command (no
@@ -32427,14 +32300,9 @@ export class WebQueryConnection extends ExternalConnection {
32427
32300
  */
32428
32301
  constructor(obj: ExternalConnection);
32429
32302
  /**
32430
- * @deprecated Please use the 'classType' property instead.
32431
32303
  * Gets the type of this <see cref="ExternalConnection"/> object.
32432
32304
  */
32433
32305
  getClassType() : ExternalConnectionClassType;
32434
- /**
32435
- * Gets the type of this <see cref="ExternalConnection"/> object.
32436
- */
32437
- readonly classType : ExternalConnectionClassType;
32438
32306
  /**
32439
32307
  * true if the web query source is XML (versus HTML), otherwise false.
32440
32308
  */
@@ -32491,14 +32359,9 @@ export class WebQueryConnection extends ExternalConnection {
32491
32359
  */
32492
32360
  setUrl(value: string) : void;
32493
32361
  /**
32494
- * @deprecated Please use the 'connectionFile' property instead.
32495
32362
  * Gets the connection file.
32496
32363
  */
32497
32364
  getConnectionFile() : string;
32498
- /**
32499
- * Gets the connection file.
32500
- */
32501
- readonly connectionFile : string;
32502
32365
  /**
32503
32366
  * Flag indicating whether dates should be imported into cells in the worksheet as text rather than dates.
32504
32367
  */
@@ -34118,14 +33981,9 @@ export class RevisionAutoFormat extends Revision {
34118
33981
  */
34119
33982
  constructor(obj: Revision);
34120
33983
  /**
34121
- * @deprecated Please use the 'type' property instead.
34122
33984
  * Gets the type of the revision.
34123
33985
  */
34124
33986
  getType() : RevisionType;
34125
- /**
34126
- * Gets the type of the revision.
34127
- */
34128
- readonly type : RevisionType;
34129
33987
  /**
34130
33988
  * @deprecated Please use the 'cellArea' property instead.
34131
33989
  * Gets the location where the formatting was applied.
@@ -34151,14 +34009,9 @@ export class RevisionCellComment extends Revision {
34151
34009
  */
34152
34010
  constructor(obj: Revision);
34153
34011
  /**
34154
- * @deprecated Please use the 'type' property instead.
34155
34012
  * Gets the type of revision.
34156
34013
  */
34157
34014
  getType() : RevisionType;
34158
- /**
34159
- * Gets the type of revision.
34160
- */
34161
- readonly type : RevisionType;
34162
34015
  /**
34163
34016
  * @deprecated Please use the 'row' property instead.
34164
34017
  * Gets the row index of the which contains a comment.
@@ -34239,14 +34092,9 @@ export class RevisionCellMove extends Revision {
34239
34092
  */
34240
34093
  constructor(obj: Revision);
34241
34094
  /**
34242
- * @deprecated Please use the 'type' property instead.
34243
34095
  * Represents the type of revision.
34244
34096
  */
34245
34097
  getType() : RevisionType;
34246
- /**
34247
- * Represents the type of revision.
34248
- */
34249
- readonly type : RevisionType;
34250
34098
  /**
34251
34099
  * @deprecated Please use the 'sourceArea' property instead.
34252
34100
  * Gets the source area.
@@ -34290,14 +34138,9 @@ export class RevisionFormat extends Revision {
34290
34138
  */
34291
34139
  constructor(obj: Revision);
34292
34140
  /**
34293
- * @deprecated Please use the 'type' property instead.
34294
34141
  * Gets the type of revision.
34295
34142
  */
34296
34143
  getType() : RevisionType;
34297
- /**
34298
- * Gets the type of revision.
34299
- */
34300
- readonly type : RevisionType;
34301
34144
  /**
34302
34145
  * @deprecated Please use the 'areas' property instead.
34303
34146
  * The range to which this formatting was applied.
@@ -34332,14 +34175,9 @@ export class RevisionInsertDelete extends Revision {
34332
34175
  */
34333
34176
  constructor(obj: Revision);
34334
34177
  /**
34335
- * @deprecated Please use the 'type' property instead.
34336
34178
  * Represents the type of revision.
34337
34179
  */
34338
34180
  getType() : RevisionType;
34339
- /**
34340
- * Represents the type of revision.
34341
- */
34342
- readonly type : RevisionType;
34343
34181
  /**
34344
34182
  * @deprecated Please use the 'cellArea' property instead.
34345
34183
  * Gets the inserting/deleting range.
@@ -34383,14 +34221,9 @@ export class RevisionInsertSheet extends Revision {
34383
34221
  */
34384
34222
  constructor(obj: Revision);
34385
34223
  /**
34386
- * @deprecated Please use the 'type' property instead.
34387
34224
  * Gets the type of revision.
34388
34225
  */
34389
34226
  getType() : RevisionType;
34390
- /**
34391
- * Gets the type of revision.
34392
- */
34393
- readonly type : RevisionType;
34394
34227
  /**
34395
34228
  * @deprecated Please use the 'actionType' property instead.
34396
34229
  * Gets the action type of the revision.
@@ -34434,14 +34267,9 @@ export class RevisionMergeConflict extends Revision {
34434
34267
  */
34435
34268
  constructor(obj: Revision);
34436
34269
  /**
34437
- * @deprecated Please use the 'type' property instead.
34438
34270
  * Gets the type of revision.
34439
34271
  */
34440
34272
  getType() : RevisionType;
34441
- /**
34442
- * Gets the type of revision.
34443
- */
34444
- readonly type : RevisionType;
34445
34273
  /**
34446
34274
  * Checks whether the implementation object is null.
34447
34275
  */
@@ -34458,14 +34286,9 @@ export class RevisionQueryTable extends Revision {
34458
34286
  */
34459
34287
  constructor(obj: Revision);
34460
34288
  /**
34461
- * @deprecated Please use the 'type' property instead.
34462
34289
  * Represents the type of the revision.
34463
34290
  */
34464
34291
  getType() : RevisionType;
34465
- /**
34466
- * Represents the type of the revision.
34467
- */
34468
- readonly type : RevisionType;
34469
34292
  /**
34470
34293
  * @deprecated Please use the 'cellArea' property instead.
34471
34294
  * Gets the location of the affected query table.
@@ -34500,14 +34323,9 @@ export class RevisionCellChange extends Revision {
34500
34323
  */
34501
34324
  constructor(obj: Revision);
34502
34325
  /**
34503
- * @deprecated Please use the 'type' property instead.
34504
34326
  * Represents the type of revision.
34505
34327
  */
34506
34328
  getType() : RevisionType;
34507
- /**
34508
- * Represents the type of revision.
34509
- */
34510
- readonly type : RevisionType;
34511
34329
  /**
34512
34330
  * @deprecated Please use the 'cellName' property instead.
34513
34331
  * Gets the name of the cell.
@@ -34637,14 +34455,9 @@ export class RevisionDefinedName extends Revision {
34637
34455
  */
34638
34456
  constructor(obj: Revision);
34639
34457
  /**
34640
- * @deprecated Please use the 'type' property instead.
34641
34458
  * Represents the type of revision.
34642
34459
  */
34643
34460
  getType() : RevisionType;
34644
- /**
34645
- * Represents the type of revision.
34646
- */
34647
- readonly type : RevisionType;
34648
34461
  /**
34649
34462
  * @deprecated Please use the 'text' property instead.
34650
34463
  * Gets the text of the defined name.
@@ -34764,14 +34577,9 @@ export class RevisionCustomView extends Revision {
34764
34577
  */
34765
34578
  constructor(obj: Revision);
34766
34579
  /**
34767
- * @deprecated Please use the 'type' property instead.
34768
34580
  * Gets the type of revision.
34769
34581
  */
34770
34582
  getType() : RevisionType;
34771
- /**
34772
- * Gets the type of revision.
34773
- */
34774
- readonly type : RevisionType;
34775
34583
  /**
34776
34584
  * @deprecated Please use the 'actionType' property instead.
34777
34585
  * Gets the type of action.
@@ -34933,14 +34741,9 @@ export class RevisionRenameSheet extends Revision {
34933
34741
  */
34934
34742
  constructor(obj: Revision);
34935
34743
  /**
34936
- * @deprecated Please use the 'type' property instead.
34937
34744
  * Represents the type of the revision.
34938
34745
  */
34939
34746
  getType() : RevisionType;
34940
- /**
34941
- * Represents the type of the revision.
34942
- */
34943
- readonly type : RevisionType;
34944
34747
  /**
34945
34748
  * @deprecated Please use the 'oldName' property instead.
34946
34749
  * Gets the old name of the worksheet.
@@ -39894,34 +39697,65 @@ export class ShapePath {
39894
39697
  * Gets <see cref="ShapeSegmentPathCollection"/> list
39895
39698
  */
39896
39699
  readonly pathSegementList : ShapeSegmentPathCollection;
39700
+ /**
39701
+ * @deprecated Please use the 'widthPixel' property instead.
39702
+ * Gets the width of this path in unit of pixels.
39703
+ */
39704
+ getWidthPixel() : number;
39705
+ /**
39706
+ * Gets the width of this path in unit of pixels.
39707
+ */
39708
+ widthPixel : number;
39709
+ /**
39710
+ * @deprecated Please use the 'widthPixel' property instead.
39711
+ * Gets the width of this path in unit of pixels.
39712
+ * @param value - The value to set.
39713
+ */
39714
+ setWidthPixel(value: number) : void;
39715
+ /**
39716
+ * @deprecated Please use the 'heightPixel' property instead.
39717
+ * Gets the height of this path in unit of pixels.
39718
+ */
39719
+ getHeightPixel() : number;
39720
+ /**
39721
+ * Gets the height of this path in unit of pixels.
39722
+ */
39723
+ heightPixel : number;
39724
+ /**
39725
+ * @deprecated Please use the 'heightPixel' property instead.
39726
+ * Gets the height of this path in unit of pixels.
39727
+ * @param value - The value to set.
39728
+ */
39729
+ setHeightPixel(value: number) : void;
39897
39730
  /**
39898
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.
39899
- * @param x - The x-coordinate of the starting point of the figure.
39900
- * @param y - The y-coordinate of the starting point of the figure.
39732
+ * @param x - The x-coordinate of the starting point of the figure(Unit: Pixel).
39733
+ * @param y - The y-coordinate of the starting point of the figure(Unit: Pixel).
39901
39734
  */
39902
39735
  moveTo(x: number, y: number) : void;
39903
39736
  /**
39904
- * Appends a line segment to the current figure. The starting point is the end point of the current figure.
39905
- * @param x - The x-coordinate of the endpoint of the line segment.
39906
- * @param y - The y-coordinate of the endpoint of the line segment.
39737
+ * Appends a line segment to the current figure.
39738
+ * The starting point is the end point of the current figure.
39739
+ * @param x - The x-coordinate of the endpoint of the line segment(Unit: Pixel).
39740
+ * @param y - The y-coordinate of the endpoint of the line segment(Unit: Pixel).
39907
39741
  */
39908
39742
  lineTo(x: number, y: number) : void;
39909
39743
  /**
39910
39744
  * Appends a cubic Bézier curve to the current figure. The starting point is the end point of the current figure.
39911
- * @param ctrX1 - The x-coordinate of the first control point for the curve.
39912
- * @param ctrY1 - The y-coordinate of the first control point for the curve.
39913
- * @param ctrX2 - The x-coordinate of the second control point for the curve.
39914
- * @param ctrY2 - The y-coordinate of the second control point for the curve.
39915
- * @param endX - The x-coordinate of the endpoint of the curve.
39916
- * @param endY - The y-coordinate of the endpoint of the curve.
39745
+ * @param ctrX1 - The x-coordinate of the first control point for the curve(Unit: Pixel).
39746
+ * @param ctrY1 - The y-coordinate of the first control point for the curve(Unit: Pixel).
39747
+ * @param ctrX2 - The x-coordinate of the second control point for the curve(Unit: Pixel).
39748
+ * @param ctrY2 - The y-coordinate of the second control point for the curve(Unit: Pixel).
39749
+ * @param endX - The x-coordinate of the endpoint of the curve(Unit: Pixel).
39750
+ * @param endY - The y-coordinate of the endpoint of the curve(Unit: Pixel).
39917
39751
  */
39918
39752
  cubicBezierTo(ctrX1: number, ctrY1: number, ctrX2: number, ctrY2: number, endX: number, endY: number) : void;
39919
39753
  /**
39920
39754
  * Appends an elliptical arc to the current figure. The starting point is the end point of the current figure.
39921
- * @param wR - The half-width of the rectangular area of ​​the ellipse that draws the arc.
39922
- * @param hR - The half-height of the rectangular area of ​​the ellipse that draws the arc.
39923
- * @param stAng - The starting angle of the arc, measured in degrees clockwise from the x-axis.
39924
- * @param swAng - The angle between startAngle and the end of the arc.
39755
+ * @param wR - The half-width of the rectangular area of ​​the ellipse that draws the arc(Unit: Pixel).
39756
+ * @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 between startAngle and the end of the arc.(Unit: Degree)
39925
39759
  */
39926
39760
  arcTo(wR: number, hR: number, stAng: number, swAng: number) : void;
39927
39761
  /**
@@ -40213,7 +40047,7 @@ export class InterruptMonitor {
40213
40047
  /**
40214
40048
  * Mark the monitor as requesting interruption
40215
40049
  */
40216
- readonly isInterruptionRequested : boolean;
40050
+ isInterruptionRequested() : boolean;
40217
40051
  /**
40218
40052
  * Interrupt the current operator.
40219
40053
  */
@@ -42113,11 +41947,11 @@ export enum PivotFilterType {
42113
41947
  *
42114
41948
  * @remarks
42115
41949
  * NOTE: This class is now obsolete. Instead,
42116
- * please use PivotConditional class.
41950
+ * please use <see cref="PivotConditionalFormat"/> class.
42117
41951
  * This method will be removed 12 months later since December 2024.
42118
41952
  * Aspose apologizes for any inconvenience you may have experienced.
42119
41953
  * @deprecated
42120
- * Use PivotConditional class instead.
41954
+ * Use PivotConditionalFormat class instead.
42121
41955
  */
42122
41956
  export class PivotFormatCondition {
42123
41957
  /**
@@ -43379,27 +43213,35 @@ export enum PasteType {
43379
43213
  */
43380
43214
  RowHeights = 5,
43381
43215
  /**
43216
+ * Only copies comments in the range.
43382
43217
  */
43383
43218
  Comments = 6,
43384
43219
  /**
43220
+ * Only copies formats in the range.
43385
43221
  */
43386
43222
  Formats = 7,
43387
43223
  /**
43224
+ * Only copies formulas in the range.
43388
43225
  */
43389
43226
  Formulas = 8,
43390
43227
  /**
43228
+ * Only copies formulas and number formats in the range.
43391
43229
  */
43392
43230
  FormulasAndNumberFormats = 9,
43393
43231
  /**
43232
+ * Only copies validations in the range.
43394
43233
  */
43395
43234
  Validation = 10,
43396
43235
  /**
43236
+ * Only copies values in the range.
43397
43237
  */
43398
43238
  Values = 11,
43399
43239
  /**
43240
+ * Only copies values and formats in the range.
43400
43241
  */
43401
43242
  ValuesAndFormats = 12,
43402
43243
  /**
43244
+ * Only copies values and number formats in the range.
43403
43245
  */
43404
43246
  ValuesAndNumberFormats = 13,
43405
43247
  }
@@ -50954,7 +50796,6 @@ export class PlotArea extends ChartFrame {
50954
50796
  */
50955
50797
  constructor(obj: ChartFrame);
50956
50798
  /**
50957
- * @deprecated Please use the 'x' property instead.
50958
50799
  * Gets or gets the x coordinate of the upper left corner of plot-area bounding box in units of 1/4000 of the chart area.
50959
50800
  *
50960
50801
  * @remarks
@@ -50970,22 +50811,6 @@ export class PlotArea extends ChartFrame {
50970
50811
  */
50971
50812
  getX() : number;
50972
50813
  /**
50973
- * Gets or gets the x coordinate of the upper left corner of plot-area bounding box in units of 1/4000 of the chart area.
50974
- *
50975
- * @remarks
50976
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
50977
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
50978
- * <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
50979
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
50980
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
50981
- * <b>InnerHeightRatioToChart</b> properties.</p>
50982
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
50983
- * @deprecated
50984
- * Use PlotArea.XRatioToChart property, instead.
50985
- */
50986
- x : number;
50987
- /**
50988
- * @deprecated Please use the 'x' property instead.
50989
50814
  * Gets or gets the x coordinate of the upper left corner of plot-area bounding box in units of 1/4000 of the chart area.
50990
50815
  * @param value - The value to set.
50991
50816
  *
@@ -51002,7 +50827,6 @@ export class PlotArea extends ChartFrame {
51002
50827
  */
51003
50828
  setX(value: number) : void;
51004
50829
  /**
51005
- * @deprecated Please use the 'y' property instead.
51006
50830
  * Gets or gets the y coordinate of the upper top corner of plot-area bounding box in units of 1/4000 of the chart area.
51007
50831
  *
51008
50832
  * @remarks
@@ -51018,22 +50842,6 @@ export class PlotArea extends ChartFrame {
51018
50842
  */
51019
50843
  getY() : number;
51020
50844
  /**
51021
- * Gets or gets the y coordinate of the upper top corner of plot-area bounding box in units of 1/4000 of the chart area.
51022
- *
51023
- * @remarks
51024
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51025
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
51026
- * <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
51027
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51028
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
51029
- * <b>InnerHeightRatioToChart</b> properties.</p>
51030
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
51031
- * @deprecated
51032
- * Use PlotArea.YRatioToChart property, instead.
51033
- */
51034
- y : number;
51035
- /**
51036
- * @deprecated Please use the 'y' property instead.
51037
50845
  * Gets or gets the y coordinate of the upper top corner of plot-area bounding box in units of 1/4000 of the chart area.
51038
50846
  * @param value - The value to set.
51039
50847
  *
@@ -51050,7 +50858,6 @@ export class PlotArea extends ChartFrame {
51050
50858
  */
51051
50859
  setY(value: number) : void;
51052
50860
  /**
51053
- * @deprecated Please use the 'height' property instead.
51054
50861
  * Gets or sets the height of plot-area bounding box in units of 1/4000 of the chart area.
51055
50862
  *
51056
50863
  * @remarks
@@ -51066,22 +50873,6 @@ export class PlotArea extends ChartFrame {
51066
50873
  */
51067
50874
  getHeight() : number;
51068
50875
  /**
51069
- * Gets or sets the height of plot-area bounding box in units of 1/4000 of the chart area.
51070
- *
51071
- * @remarks
51072
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51073
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
51074
- * <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
51075
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51076
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
51077
- * <b>InnerHeightRatioToChart</b> properties.</p>
51078
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
51079
- * @deprecated
51080
- * Use PlotArea.HeightRatioToChart property, instead.
51081
- */
51082
- height : number;
51083
- /**
51084
- * @deprecated Please use the 'height' property instead.
51085
50876
  * Gets or sets the height of plot-area bounding box in units of 1/4000 of the chart area.
51086
50877
  * @param value - The value to set.
51087
50878
  *
@@ -51098,7 +50889,6 @@ export class PlotArea extends ChartFrame {
51098
50889
  */
51099
50890
  setHeight(value: number) : void;
51100
50891
  /**
51101
- * @deprecated Please use the 'width' property instead.
51102
50892
  * Gets or sets the width of plot-area bounding box in units of 1/4000 of the chart area.
51103
50893
  *
51104
50894
  * @remarks
@@ -51114,22 +50904,6 @@ export class PlotArea extends ChartFrame {
51114
50904
  */
51115
50905
  getWidth() : number;
51116
50906
  /**
51117
- * Gets or sets the width of plot-area bounding box in units of 1/4000 of the chart area.
51118
- *
51119
- * @remarks
51120
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51121
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
51122
- * <p>The <b>X</b>, <b>Y</b>, <b>Width</b> and <b>Height</b> of <b>PlotArea</b> represents the plot-area
51123
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51124
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
51125
- * <b>InnerHeightRatioToChart</b> properties.</p>
51126
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
51127
- * @deprecated
51128
- * Use PlotArea.WidthRatioToChart property, instead.
51129
- */
51130
- width : number;
51131
- /**
51132
- * @deprecated Please use the 'width' property instead.
51133
50907
  * Gets or sets the width of plot-area bounding box in units of 1/4000 of the chart area.
51134
50908
  * @param value - The value to set.
51135
50909
  *
@@ -51338,7 +51112,6 @@ export class PlotArea extends ChartFrame {
51338
51112
  */
51339
51113
  setInnerWidth(value: number) : void;
51340
51114
  /**
51341
- * @deprecated Please use the 'xRatioToChart' property instead.
51342
51115
  * Gets or gets the x coordinate of the upper left corner of plot-area bounding box in units of ratio of the chart area.
51343
51116
  *
51344
51117
  * @remarks
@@ -51353,21 +51126,6 @@ export class PlotArea extends ChartFrame {
51353
51126
  */
51354
51127
  getXRatioToChart() : number;
51355
51128
  /**
51356
- * Gets or gets the x coordinate of the upper left corner of plot-area bounding box in units of ratio of the chart area.
51357
- *
51358
- * @remarks
51359
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51360
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
51361
- * <p>The <b>XRatioToChart</b>, <b>YRatioToChart</b>, <b>WidthRatioToChart</b> and <b>HeightRatioToChart</b> of <b>PlotArea</b> represents the plot-area
51362
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51363
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
51364
- * <b>InnerHeightRatioToChart</b> properties.</p>
51365
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
51366
- * XPixel = XRatioToChart * chart.ChartObject.Width.
51367
- */
51368
- xRatioToChart : number;
51369
- /**
51370
- * @deprecated Please use the 'xRatioToChart' property instead.
51371
51129
  * Gets or gets the x coordinate of the upper left corner of plot-area bounding box in units of ratio of the chart area.
51372
51130
  * @param value - The value to set.
51373
51131
  *
@@ -51383,7 +51141,6 @@ export class PlotArea extends ChartFrame {
51383
51141
  */
51384
51142
  setXRatioToChart(value: number) : void;
51385
51143
  /**
51386
- * @deprecated Please use the 'yRatioToChart' property instead.
51387
51144
  * Gets or gets the y coordinate of the upper top corner of plot-area bounding box in units of ratio of the chart area.
51388
51145
  *
51389
51146
  * @remarks
@@ -51398,21 +51155,6 @@ export class PlotArea extends ChartFrame {
51398
51155
  */
51399
51156
  getYRatioToChart() : number;
51400
51157
  /**
51401
- * Gets or gets the y coordinate of the upper top corner of plot-area bounding box in units of ratio of the chart area.
51402
- *
51403
- * @remarks
51404
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51405
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
51406
- * <p>The <b>XRatioToChart</b>, <b>YRatioToChart</b>, <b>WidthRatioToChart</b> and <b>HeightRatioToChart</b> of <b>PlotArea</b> represents the plot-area
51407
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51408
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
51409
- * <b>InnerHeightRatioToChart</b> properties.</p>
51410
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
51411
- * YPixel = YRatioToChart * chart.ChartObject.Width.
51412
- */
51413
- yRatioToChart : number;
51414
- /**
51415
- * @deprecated Please use the 'yRatioToChart' property instead.
51416
51158
  * Gets or gets the y coordinate of the upper top corner of plot-area bounding box in units of ratio of the chart area.
51417
51159
  * @param value - The value to set.
51418
51160
  *
@@ -51428,7 +51170,6 @@ export class PlotArea extends ChartFrame {
51428
51170
  */
51429
51171
  setYRatioToChart(value: number) : void;
51430
51172
  /**
51431
- * @deprecated Please use the 'heightRatioToChart' property instead.
51432
51173
  * Gets or sets the height of plot-area bounding box in units of ratio of the chart area.
51433
51174
  *
51434
51175
  * @remarks
@@ -51443,21 +51184,6 @@ export class PlotArea extends ChartFrame {
51443
51184
  */
51444
51185
  getHeightRatioToChart() : number;
51445
51186
  /**
51446
- * Gets or sets the height of plot-area bounding box in units of ratio of the chart area.
51447
- *
51448
- * @remarks
51449
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51450
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
51451
- * <p>The <b>XRatioToChart</b>, <b>YRatioToChart</b>, <b>WidthRatioToChart</b> and <b>HeightRatioToChart</b> of <b>PlotArea</b> represents the plot-area
51452
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51453
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
51454
- * <b>InnerHeightRatioToChart</b> properties.</p>
51455
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
51456
- * HeightPixel = HeightRatioToChart * chart.ChartObject.Width.
51457
- */
51458
- heightRatioToChart : number;
51459
- /**
51460
- * @deprecated Please use the 'heightRatioToChart' property instead.
51461
51187
  * Gets or sets the height of plot-area bounding box in units of ratio of the chart area.
51462
51188
  * @param value - The value to set.
51463
51189
  *
@@ -51473,7 +51199,6 @@ export class PlotArea extends ChartFrame {
51473
51199
  */
51474
51200
  setHeightRatioToChart(value: number) : void;
51475
51201
  /**
51476
- * @deprecated Please use the 'widthRatioToChart' property instead.
51477
51202
  * Gets or sets the width of plot-area bounding box in units of ratio of the chart area.
51478
51203
  *
51479
51204
  * @remarks
@@ -51488,21 +51213,6 @@ export class PlotArea extends ChartFrame {
51488
51213
  */
51489
51214
  getWidthRatioToChart() : number;
51490
51215
  /**
51491
- * Gets or sets the width of plot-area bounding box in units of ratio of the chart area.
51492
- *
51493
- * @remarks
51494
- * <p>The plot-area bounding box includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51495
- * If the value is not created by MS Excel, please call Chart.Calculate() method before calling this method. </p>
51496
- * <p>The <b>XRatioToChart</b>, <b>YRatioToChart</b>, <b>WidthRatioToChart</b> and <b>HeightRatioToChart</b> of <b>PlotArea</b> represents the plot-area
51497
- * bounding box that includes the plot area, tick marks(tick labels), and a small border around the tick marks.
51498
- * If you want to get actual size of plot area, you should call <b>InnerXRatioToChart</b>, <b>InnerYRatioToChart</b>, <b>InnerWidthRatioToChart</b> and
51499
- * <b>InnerHeightRatioToChart</b> properties.</p>
51500
- * <p>For excel 2007 or latter, the default value is zero. you should call get the value after calling Chart.Calculate().</p>
51501
- * WidthPixel = WidthRatioToChart * chart.ChartObject.Width.
51502
- */
51503
- widthRatioToChart : number;
51504
- /**
51505
- * @deprecated Please use the 'widthRatioToChart' property instead.
51506
51216
  * Gets or sets the width of plot-area bounding box in units of ratio of the chart area.
51507
51217
  * @param value - The value to set.
51508
51218
  *
@@ -51700,9 +51410,8 @@ export class PlotArea extends ChartFrame {
51700
51410
  /**
51701
51411
  * Indicates whether the plot area is automatic sized.
51702
51412
  */
51703
- isAutomaticSize : boolean;
51413
+ isAutomaticSize() : boolean;
51704
51414
  /**
51705
- * @deprecated Please use the 'isAutomaticSize' property instead.
51706
51415
  * Indicates whether the plot area is automatic sized.
51707
51416
  * @param value - The value to set.
51708
51417
  */
@@ -56198,7 +55907,6 @@ export class ChartArea extends ChartFrame {
56198
55907
  */
56199
55908
  constructor(obj: ChartFrame);
56200
55909
  /**
56201
- * @deprecated Please use the 'x' property instead.
56202
55910
  * Gets or gets the horizontal offset from its upper left corner column, in units of 1/4000 of the chart area.
56203
55911
  *
56204
55912
  * @remarks
@@ -56212,20 +55920,6 @@ export class ChartArea extends ChartFrame {
56212
55920
  */
56213
55921
  getX() : number;
56214
55922
  /**
56215
- * Gets or gets the horizontal offset from its upper left corner column, in units of 1/4000 of the chart area.
56216
- *
56217
- * @remarks
56218
- * NOTE: This member is now obsolete.
56219
- * Please use ChartArea.XRatioToChart property, instead.
56220
- * X = XRatioToChart * 4000.
56221
- * This property will be removed 12 months later since February 2025.
56222
- * Aspose apologizes for any inconvenience you may have experienced.
56223
- * @deprecated
56224
- * Use ChartArea.XRatioToChart property, instead.
56225
- */
56226
- x : number;
56227
- /**
56228
- * @deprecated Please use the 'x' property instead.
56229
55923
  * Gets or gets the horizontal offset from its upper left corner column, in units of 1/4000 of the chart area.
56230
55924
  * @param value - The value to set.
56231
55925
  *
@@ -56240,7 +55934,6 @@ export class ChartArea extends ChartFrame {
56240
55934
  */
56241
55935
  setX(value: number) : void;
56242
55936
  /**
56243
- * @deprecated Please use the 'y' property instead.
56244
55937
  * Gets or gets the vertical offset from its upper left corner row, in units of 1/4000 of the chart area.
56245
55938
  *
56246
55939
  * @remarks
@@ -56254,20 +55947,6 @@ export class ChartArea extends ChartFrame {
56254
55947
  */
56255
55948
  getY() : number;
56256
55949
  /**
56257
- * Gets or gets the vertical offset from its upper left corner row, in units of 1/4000 of the chart area.
56258
- *
56259
- * @remarks
56260
- * NOTE: This member is now obsolete.
56261
- * Please use ChartArea.YRatioToChart property, instead.
56262
- * Y = YRatioToChart * 4000;
56263
- * This property will be removed 12 months later since February 2025.
56264
- * Aspose apologizes for any inconvenience you may have experienced.
56265
- * @deprecated
56266
- * Use ChartArea.YRatioToChart property, instead.
56267
- */
56268
- y : number;
56269
- /**
56270
- * @deprecated Please use the 'y' property instead.
56271
55950
  * Gets or gets the vertical offset from its upper left corner row, in units of 1/4000 of the chart area.
56272
55951
  * @param value - The value to set.
56273
55952
  *
@@ -56282,7 +55961,6 @@ export class ChartArea extends ChartFrame {
56282
55961
  */
56283
55962
  setY(value: number) : void;
56284
55963
  /**
56285
- * @deprecated Please use the 'height' property instead.
56286
55964
  * Gets or sets the vertical offset from its lower right corner row, in units of 1/4000 of the chart area.
56287
55965
  *
56288
55966
  * @remarks
@@ -56296,20 +55974,6 @@ export class ChartArea extends ChartFrame {
56296
55974
  */
56297
55975
  getHeight() : number;
56298
55976
  /**
56299
- * Gets or sets the vertical offset from its lower right corner row, in units of 1/4000 of the chart area.
56300
- *
56301
- * @remarks
56302
- * NOTE: This member is now obsolete.
56303
- * Please use ChartArea.HeightRatioToChart property, instead.
56304
- * Height = HeightRatioToChart * 4000.
56305
- * This property will be removed 12 months later since February 2025.
56306
- * Aspose apologizes for any inconvenience you may have experienced.
56307
- * @deprecated
56308
- * Use ChartArea.HeightRatioToChart property, instead.
56309
- */
56310
- height : number;
56311
- /**
56312
- * @deprecated Please use the 'height' property instead.
56313
55977
  * Gets or sets the vertical offset from its lower right corner row, in units of 1/4000 of the chart area.
56314
55978
  * @param value - The value to set.
56315
55979
  *
@@ -56324,7 +55988,6 @@ export class ChartArea extends ChartFrame {
56324
55988
  */
56325
55989
  setHeight(value: number) : void;
56326
55990
  /**
56327
- * @deprecated Please use the 'width' property instead.
56328
55991
  * Gets or sets the horizontal offset from its lower right corner column, in units of 1/4000 of the chart area.
56329
55992
  *
56330
55993
  * @remarks
@@ -56338,20 +56001,6 @@ export class ChartArea extends ChartFrame {
56338
56001
  */
56339
56002
  getWidth() : number;
56340
56003
  /**
56341
- * Gets or sets the horizontal offset from its lower right corner column, in units of 1/4000 of the chart area.
56342
- *
56343
- * @remarks
56344
- * NOTE: This member is now obsolete.
56345
- * Please use ChartArea.WidthRatioToChart property, instead.
56346
- * Width = WidthRatioToChart * 4000.
56347
- * This property will be removed 12 months later since February 2025.
56348
- * Aspose apologizes for any inconvenience you may have experienced.
56349
- * @deprecated
56350
- * Use ChartArea.WidthRatioToChart property, instead.
56351
- */
56352
- width : number;
56353
- /**
56354
- * @deprecated Please use the 'width' property instead.
56355
56004
  * Gets or sets the horizontal offset from its lower right corner column, in units of 1/4000 of the chart area.
56356
56005
  * @param value - The value to set.
56357
56006
  *
@@ -56366,74 +56015,45 @@ export class ChartArea extends ChartFrame {
56366
56015
  */
56367
56016
  setWidth(value: number) : void;
56368
56017
  /**
56369
- * @deprecated Please use the 'xRatioToChart' property instead.
56370
56018
  * Gets or gets the horizontal offset from its upper left corner column, in units of ratio of the chart area.
56371
56019
  */
56372
56020
  getXRatioToChart() : number;
56373
56021
  /**
56374
- * Gets or gets the horizontal offset from its upper left corner column, in units of ratio of the chart area.
56375
- */
56376
- xRatioToChart : number;
56377
- /**
56378
- * @deprecated Please use the 'xRatioToChart' property instead.
56379
56022
  * Gets or gets the horizontal offset from its upper left corner column, in units of ratio of the chart area.
56380
56023
  * @param value - The value to set.
56381
56024
  */
56382
56025
  setXRatioToChart(value: number) : void;
56383
56026
  /**
56384
- * @deprecated Please use the 'yRatioToChart' property instead.
56385
56027
  * Gets or gets the vertical offset from its upper left corner row, in units of ratio of the chart area.
56386
56028
  */
56387
56029
  getYRatioToChart() : number;
56388
56030
  /**
56389
- * Gets or gets the vertical offset from its upper left corner row, in units of ratio of the chart area.
56390
- */
56391
- yRatioToChart : number;
56392
- /**
56393
- * @deprecated Please use the 'yRatioToChart' property instead.
56394
56031
  * Gets or gets the vertical offset from its upper left corner row, in units of ratio of the chart area.
56395
56032
  * @param value - The value to set.
56396
56033
  */
56397
56034
  setYRatioToChart(value: number) : void;
56398
56035
  /**
56399
- * @deprecated Please use the 'heightRatioToChart' property instead.
56400
56036
  * Gets or sets the vertical offset from its lower right corner row, in units of ratio of the chart area.
56401
56037
  */
56402
56038
  getHeightRatioToChart() : number;
56403
56039
  /**
56404
- * Gets or sets the vertical offset from its lower right corner row, in units of ratio of the chart area.
56405
- */
56406
- heightRatioToChart : number;
56407
- /**
56408
- * @deprecated Please use the 'heightRatioToChart' property instead.
56409
56040
  * Gets or sets the vertical offset from its lower right corner row, in units of ratio of the chart area.
56410
56041
  * @param value - The value to set.
56411
56042
  */
56412
56043
  setHeightRatioToChart(value: number) : void;
56413
56044
  /**
56414
- * @deprecated Please use the 'widthRatioToChart' property instead.
56415
56045
  * Gets or sets the horizontal offset from its lower right corner column, in units of ratio of the chart area.
56416
56046
  */
56417
56047
  getWidthRatioToChart() : number;
56418
56048
  /**
56419
- * Gets or sets the horizontal offset from its lower right corner column, in units of ratio of the chart area.
56420
- */
56421
- widthRatioToChart : number;
56422
- /**
56423
- * @deprecated Please use the 'widthRatioToChart' property instead.
56424
56049
  * Gets or sets the horizontal offset from its lower right corner column, in units of ratio of the chart area.
56425
56050
  * @param value - The value to set.
56426
56051
  */
56427
56052
  setWidthRatioToChart(value: number) : void;
56428
56053
  /**
56429
- * @deprecated Please use the 'font' property instead.
56430
56054
  * Gets a <see cref="Font"/> object of the specified chartarea object.
56431
56055
  */
56432
56056
  getFont() : Font;
56433
- /**
56434
- * Gets a <see cref="Font"/> object of the specified chartarea object.
56435
- */
56436
- readonly font : Font;
56437
56057
  /**
56438
56058
  * Checks whether the implementation object is null.
56439
56059
  */
@@ -56740,6 +56360,10 @@ export class ChartFrame {
56740
56360
  * @param value - The value to set.
56741
56361
  */
56742
56362
  setBackgroundMode(value: BackgroundMode) : void;
56363
+ /**
56364
+ * Indicates whether the chart frame is automatic sized.
56365
+ */
56366
+ isAutomaticSize() : boolean;
56743
56367
  /**
56744
56368
  * Indicates whether the chart frame is automatic sized.
56745
56369
  * @param value - The value to set.
@@ -59488,59 +59112,36 @@ export class DataLabels extends ChartTextFrame {
59488
59112
  */
59489
59113
  constructor(obj: ChartTextFrame);
59490
59114
  /**
59491
- * @deprecated Please use the 'border' property instead.
59492
59115
  * Gets the <see cref="Line">border</see>.
59493
59116
  */
59494
59117
  getBorder() : Line;
59495
59118
  /**
59496
- * Gets the <see cref="Line">border</see>.
59497
- */
59498
- readonly border : Line;
59499
- /**
59500
- * @deprecated Please use the 'area' property instead.
59501
59119
  * Gets the <see cref="Area">area</see>.
59502
59120
  */
59503
59121
  getArea() : Area;
59504
- /**
59505
- * Gets the <see cref="Area">area</see>.
59506
- */
59507
- readonly area : Area;
59508
59122
  /**
59509
59123
  * Indicates the text is auto generated.
59510
59124
  */
59511
- isAutoText : boolean;
59125
+ isAutoText() : boolean;
59512
59126
  /**
59513
- * @deprecated Please use the 'isAutoText' property instead.
59514
59127
  * Indicates the text is auto generated.
59515
59128
  * @param value - The value to set.
59516
59129
  */
59517
59130
  setIsAutoText(value: boolean) : void;
59518
59131
  /**
59519
- * @deprecated Please use the 'directionType' property instead.
59520
59132
  * Gets and sets the direction of text.
59521
59133
  */
59522
59134
  getDirectionType() : ChartTextDirectionType;
59523
59135
  /**
59524
- * Gets and sets the direction of text.
59525
- */
59526
- directionType : ChartTextDirectionType;
59527
- /**
59528
- * @deprecated Please use the 'directionType' property instead.
59529
59136
  * Gets and sets the direction of text.
59530
59137
  * @param value - The value to set.
59531
59138
  */
59532
59139
  setDirectionType(value: ChartTextDirectionType) : void;
59533
59140
  /**
59534
- * @deprecated Please use the 'text' property instead.
59535
59141
  * Gets or sets the text of data label.
59536
59142
  */
59537
59143
  getText() : string;
59538
59144
  /**
59539
- * Gets or sets the text of data label.
59540
- */
59541
- text : string;
59542
- /**
59543
- * @deprecated Please use the 'text' property instead.
59544
59145
  * Gets or sets the text of data label.
59545
59146
  * @param value - The value to set.
59546
59147
  */
@@ -59548,9 +59149,8 @@ export class DataLabels extends ChartTextFrame {
59548
59149
  /**
59549
59150
  * Gets or sets a value indicating whether the text is wrapped.
59550
59151
  */
59551
- isTextWrapped : boolean;
59152
+ isTextWrapped() : boolean;
59552
59153
  /**
59553
- * @deprecated Please use the 'isTextWrapped' property instead.
59554
59154
  * Gets or sets a value indicating whether the text is wrapped.
59555
59155
  * @param value - The value to set.
59556
59156
  */
@@ -59730,14 +59330,9 @@ export class DataLabels extends ChartTextFrame {
59730
59330
  */
59731
59331
  setNumberFormatLinked(value: boolean) : void;
59732
59332
  /**
59733
- * @deprecated Please use the 'font' property instead.
59734
59333
  * Gets the font of the DataLabels;
59735
59334
  */
59736
59335
  getFont() : Font;
59737
- /**
59738
- * Gets the font of the DataLabels;
59739
- */
59740
- readonly font : Font;
59741
59336
  /**
59742
59337
  * @deprecated Please use the 'separatorType' property instead.
59743
59338
  * Gets or sets the separator type used for the data labels on a chart.
@@ -60135,40 +59730,23 @@ export class DisplayUnitLabel extends ChartTextFrame {
60135
59730
  */
60136
59731
  constructor(obj: ChartTextFrame);
60137
59732
  /**
60138
- * @deprecated Please use the 'text' property instead.
60139
59733
  * Gets or sets the text of display unit label.
60140
59734
  */
60141
59735
  getText() : string;
60142
59736
  /**
60143
- * Gets or sets the text of display unit label.
60144
- */
60145
- text : string;
60146
- /**
60147
- * @deprecated Please use the 'text' property instead.
60148
59737
  * Gets or sets the text of display unit label.
60149
59738
  * @param value - The value to set.
60150
59739
  */
60151
59740
  setText(value: string) : void;
60152
59741
  /**
60153
- * @deprecated Please use the 'font' property instead.
60154
59742
  * Gets a <see cref="Font"/> object of the specified ChartFrame object.
60155
59743
  */
60156
59744
  getFont() : Font;
60157
59745
  /**
60158
- * Gets a <see cref="Font"/> object of the specified ChartFrame object.
60159
- */
60160
- readonly font : Font;
60161
- /**
60162
- * @deprecated Please use the 'autoScaleFont' property instead.
60163
59746
  * True if the text in the object changes font size when the object size changes. The default value is True.
60164
59747
  */
60165
59748
  getAutoScaleFont() : boolean;
60166
59749
  /**
60167
- * True if the text in the object changes font size when the object size changes. The default value is True.
60168
- */
60169
- autoScaleFont : boolean;
60170
- /**
60171
- * @deprecated Please use the 'autoScaleFont' property instead.
60172
59750
  * True if the text in the object changes font size when the object size changes. The default value is True.
60173
59751
  * @param value - The value to set.
60174
59752
  */
@@ -63457,6 +63035,29 @@ export class CellsHelper {
63457
63035
  * The cached file is used to store some temporary data.
63458
63036
  */
63459
63037
  static mergeFiles(files: string[], cachedFile: string, destFile: string) : void;
63038
+ /**
63039
+ * Gets the folder for temporary files that may be used as data cache.
63040
+ * @returns
63041
+ * Folder for cache files that has been specified.
63042
+ * If it has not been specified, null will be returned
63043
+ * and system's temporary path will be used when needed.
63044
+ *
63045
+ * @remarks
63046
+ * Cache files are used generally for some features for memory performance consideration,
63047
+ * such as saving large data set to xls file,
63048
+ * or using memory mode with file cache for cells model.
63049
+ */
63050
+ static getCacheFolder() : string;
63051
+ /**
63052
+ * Sets the folder for temporary files that may be used as data cache.
63053
+ * @param cache - Folder for for temporary files that may be used as data cache.
63054
+ *
63055
+ * @remarks
63056
+ * Cache files are used generally for some features for memory performance consideration,
63057
+ * such as saving large data set to xls file,
63058
+ * or using memory mode with file cache for cells model.
63059
+ */
63060
+ static setCacheFolder(cache: string) : void;
63460
63061
  /**
63461
63062
  * Checks given sheet name and create a valid one when needed.
63462
63063
  * If given sheet name conforms to the rules of excel sheet name, then return it.
@@ -64010,20 +63611,6 @@ export class TxtSaveOptions extends SaveOptions {
64010
63611
  isNull() : boolean;
64011
63612
  }
64012
63613
 
64013
- /**
64014
- * Represents Xml Data Binding information.
64015
- */
64016
- export class XmlColumnProperty {
64017
- /**
64018
- * Default Constructor.
64019
- */
64020
- constructor();
64021
- /**
64022
- * Checks whether the implementation object is null.
64023
- */
64024
- isNull() : boolean;
64025
- }
64026
-
64027
63614
  /**
64028
63615
  * Encapsulates the object that represents a label in a spreadsheet.
64029
63616
  */
@@ -69200,7 +68787,8 @@ export class SaveOptions {
69200
68787
  * @remarks
69201
68788
  * If the folder has not been specified,
69202
68789
  * the default value for it is <see cref="CellsHelper.GetCacheFolder()"/>.
69203
- * If it is empty, then no cache file will be used when saving the workbook.
68790
+ * If its default value is null or empty, or has been specified as null or empty,
68791
+ * then no cache file will be used when saving the workbook.
69204
68792
  */
69205
68793
  getCachedFileFolder() : string;
69206
68794
  /**
@@ -69209,7 +68797,8 @@ export class SaveOptions {
69209
68797
  * @remarks
69210
68798
  * If the folder has not been specified,
69211
68799
  * the default value for it is <see cref="CellsHelper.GetCacheFolder()"/>.
69212
- * If it is empty, then no cache file will be used when saving the workbook.
68800
+ * If its default value is null or empty, or has been specified as null or empty,
68801
+ * then no cache file will be used when saving the workbook.
69213
68802
  */
69214
68803
  cachedFileFolder : string;
69215
68804
  /**
@@ -69220,7 +68809,8 @@ export class SaveOptions {
69220
68809
  * @remarks
69221
68810
  * If the folder has not been specified,
69222
68811
  * the default value for it is <see cref="CellsHelper.GetCacheFolder()"/>.
69223
- * If it is empty, then no cache file will be used when saving the workbook.
68812
+ * If its default value is null or empty, or has been specified as null or empty,
68813
+ * then no cache file will be used when saving the workbook.
69224
68814
  */
69225
68815
  setCachedFileFolder(value: string) : void;
69226
68816
  /**
@@ -71656,14 +71246,17 @@ export class ShapeCollection {
71656
71246
  /**
71657
71247
  * Adds a freeform shape to the worksheet.
71658
71248
  * @param upperLeftRow - Upper left row index.
71659
- * @param top - Represents the vertical offset of Polygon from its left row, in unit of pixel.
71249
+ * @param top - Represents the vertical offset of freeform shape from its left row, in unit of pixel.
71660
71250
  * @param upperLeftColumn - Upper left column index.
71661
- * @param left - Represents the horizontal offset of Polygon from its left column, in unit of pixel.
71662
- * @param height - Represents the height of Polygon, in unit of pixel.
71663
- * @param width - Represents the width of Polygon, in unit of pixel.
71251
+ * @param left - Represents the horizontal offset of freeform shape from its left column, in unit of pixel.
71252
+ * @param height - Represents the height of freeform shape, in unit of pixel.
71253
+ * @param width - Represents the width of freeform shape, in unit of pixel.
71664
71254
  * @param paths - Represents a user-defined path
71665
71255
  * @returns
71666
71256
  * A freeform shape.
71257
+ *
71258
+ * @remarks
71259
+ * Notice: That the width and height in the parameters can be any positive integer values, not the total width and height of the ShapePath array specified by ’paths'. The relationship between them is a scale-fill relationship, that is, each ShapePath object will be scaled according to the width and height. Therefore, when there are multiple objects in the 'paths', each ShapePath object needs to be designed reasonably to meet expectations. When there is only one ShapePath object and there are no other requirements, passing the object's width and height as parameter values ​​is a good solution.
71667
71260
  */
71668
71261
  addFreeform(upperLeftRow: number, top: number, upperLeftColumn: number, left: number, height: number, width: number, paths: ShapePath[]) : Shape;
71669
71262
  /**
@@ -75060,16 +74653,10 @@ export class Title extends ChartTextFrame {
75060
74653
  */
75061
74654
  constructor(obj: ChartTextFrame);
75062
74655
  /**
75063
- * @deprecated Please use the 'text' property instead.
75064
74656
  * Gets or sets the text of display unit label.
75065
74657
  */
75066
74658
  getText() : string;
75067
74659
  /**
75068
- * Gets or sets the text of display unit label.
75069
- */
75070
- text : string;
75071
- /**
75072
- * @deprecated Please use the 'text' property instead.
75073
74660
  * Gets or sets the text of display unit label.
75074
74661
  * @param value - The value to set.
75075
74662
  */
@@ -75085,7 +74672,6 @@ export class Title extends ChartTextFrame {
75085
74672
  */
75086
74673
  setIsVisible(value: boolean) : void;
75087
74674
  /**
75088
- * @deprecated Please use the 'x' property instead.
75089
74675
  * Gets or sets the x coordinate of the upper left corner in units of 1/4000 of the chart area.
75090
74676
  *
75091
74677
  * @remarks
@@ -75099,20 +74685,6 @@ export class Title extends ChartTextFrame {
75099
74685
  */
75100
74686
  getX() : number;
75101
74687
  /**
75102
- * Gets or sets the x coordinate of the upper left corner in units of 1/4000 of the chart area.
75103
- *
75104
- * @remarks
75105
- * NOTE: This member is now obsolete.
75106
- * Please use Title.XRatioToChart property, instead.
75107
- * X = XRatioToChart * 4000;
75108
- * This property will be removed 12 months later since February 2025.
75109
- * Aspose apologizes for any inconvenience you may have experienced.
75110
- * @deprecated
75111
- * Use Title.XRatioToChart property, instead.
75112
- */
75113
- x : number;
75114
- /**
75115
- * @deprecated Please use the 'x' property instead.
75116
74688
  * Gets or sets the x coordinate of the upper left corner in units of 1/4000 of the chart area.
75117
74689
  * @param value - The value to set.
75118
74690
  *
@@ -75127,7 +74699,6 @@ export class Title extends ChartTextFrame {
75127
74699
  */
75128
74700
  setX(value: number) : void;
75129
74701
  /**
75130
- * @deprecated Please use the 'y' property instead.
75131
74702
  * Gets or sets the y coordinate of the upper left corner in units of 1/4000 of the chart area.
75132
74703
  *
75133
74704
  * @remarks
@@ -75141,20 +74712,6 @@ export class Title extends ChartTextFrame {
75141
74712
  */
75142
74713
  getY() : number;
75143
74714
  /**
75144
- * Gets or sets the y coordinate of the upper left corner in units of 1/4000 of the chart area.
75145
- *
75146
- * @remarks
75147
- * NOTE: This member is now obsolete.
75148
- * Please use Title.YRatioToChart property, instead.
75149
- * Y = YRatioToChart * 4000;
75150
- * This property will be removed 12 months later since February 2025.
75151
- * Aspose apologizes for any inconvenience you may have experienced.
75152
- * @deprecated
75153
- * Use Title.YRatioToChart property, instead.
75154
- */
75155
- y : number;
75156
- /**
75157
- * @deprecated Please use the 'y' property instead.
75158
74715
  * Gets or sets the y coordinate of the upper left corner in units of 1/4000 of the chart area.
75159
74716
  * @param value - The value to set.
75160
74717
  *
@@ -75169,36 +74726,22 @@ export class Title extends ChartTextFrame {
75169
74726
  */
75170
74727
  setY(value: number) : void;
75171
74728
  /**
75172
- * @deprecated Please use the 'xRatioToChart' property instead.
75173
74729
  * Gets or sets the x coordinate of the upper left corner in units of Fraction of the chart area.
75174
74730
  * X In Pixels = XRatioToChart * Chart.ChartObject.Width;
75175
74731
  */
75176
74732
  getXRatioToChart() : number;
75177
74733
  /**
75178
- * Gets or sets the x coordinate of the upper left corner in units of Fraction of the chart area.
75179
- * X In Pixels = XRatioToChart * Chart.ChartObject.Width;
75180
- */
75181
- xRatioToChart : number;
75182
- /**
75183
- * @deprecated Please use the 'xRatioToChart' property instead.
75184
74734
  * Gets or sets the x coordinate of the upper left corner in units of Fraction of the chart area.
75185
74735
  * X In Pixels = XRatioToChart * Chart.ChartObject.Width;
75186
74736
  * @param value - The value to set.
75187
74737
  */
75188
74738
  setXRatioToChart(value: number) : void;
75189
74739
  /**
75190
- * @deprecated Please use the 'yRatioToChart' property instead.
75191
74740
  * Gets or sets the y coordinate of the upper left corner in units of Fraction of the chart area.
75192
74741
  * Y In Pixels = YRatioToChart * Chart.ChartObject.Width;
75193
74742
  */
75194
74743
  getYRatioToChart() : number;
75195
74744
  /**
75196
- * Gets or sets the y coordinate of the upper left corner in units of Fraction of the chart area.
75197
- * Y In Pixels = YRatioToChart * Chart.ChartObject.Width;
75198
- */
75199
- yRatioToChart : number;
75200
- /**
75201
- * @deprecated Please use the 'yRatioToChart' property instead.
75202
74745
  * Gets or sets the y coordinate of the upper left corner in units of Fraction of the chart area.
75203
74746
  * Y In Pixels = YRatioToChart * Chart.ChartObject.Width;
75204
74747
  * @param value - The value to set.