aspose.cells.node 25.3.0 → 25.4.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/README.md +1 -1
- package/aspose.cells.js +32 -22
- package/package.json +6 -5
- package/types.d.ts +2195 -368
package/types.d.ts
CHANGED
|
@@ -232,7 +232,7 @@ export class AutoFilter {
|
|
|
232
232
|
* @param operatorType1 - The filter operator type
|
|
233
233
|
* @param criteria1 - The custom criteria
|
|
234
234
|
*/
|
|
235
|
-
custom(fieldIndex: number, operatorType1: FilterOperatorType, criteria1:
|
|
235
|
+
custom(fieldIndex: number, operatorType1: FilterOperatorType, criteria1: Object) : void;
|
|
236
236
|
/**
|
|
237
237
|
* Filters a list with custom criteria.
|
|
238
238
|
* @param fieldIndex - The integer offset of the field on which you want to base the filter /// (from the left of the list; the leftmost field is field 0).
|
|
@@ -242,7 +242,7 @@ export class AutoFilter {
|
|
|
242
242
|
* @param operatorType2 - The filter operator type
|
|
243
243
|
* @param criteria2 - The custom criteria
|
|
244
244
|
*/
|
|
245
|
-
custom(fieldIndex: number, operatorType1: FilterOperatorType, criteria1:
|
|
245
|
+
custom(fieldIndex: number, operatorType1: FilterOperatorType, criteria1: Object, isAnd: boolean, operatorType2: FilterOperatorType, criteria2: Object) : void;
|
|
246
246
|
/**
|
|
247
247
|
* Unhide all rows.
|
|
248
248
|
*/
|
|
@@ -331,6 +331,83 @@ export enum AutoFitWrappedTextType {
|
|
|
331
331
|
Paragraph = 1,
|
|
332
332
|
}
|
|
333
333
|
|
|
334
|
+
/**
|
|
335
|
+
* Represents the embedded font type in Svg image.
|
|
336
|
+
*/
|
|
337
|
+
export enum SvgEmbeddedFontType {
|
|
338
|
+
/**
|
|
339
|
+
* Not Embed font.
|
|
340
|
+
*/
|
|
341
|
+
None = 0,
|
|
342
|
+
/**
|
|
343
|
+
* Embed WOFF font.
|
|
344
|
+
*/
|
|
345
|
+
Woff = 1,
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* Options for generating Svg image.
|
|
350
|
+
*/
|
|
351
|
+
export class SvgImageOptions extends ImageOrPrintOptions {
|
|
352
|
+
/**
|
|
353
|
+
* Ctor.
|
|
354
|
+
*/
|
|
355
|
+
constructor();
|
|
356
|
+
/**
|
|
357
|
+
* Constructs from a parent object convertible to this.
|
|
358
|
+
* @param obj - The parent object.
|
|
359
|
+
*/
|
|
360
|
+
constructor(obj: ImageOrPrintOptions);
|
|
361
|
+
/**
|
|
362
|
+
* Gets or sets the format of the generated images.
|
|
363
|
+
* default value: PNG.
|
|
364
|
+
*/
|
|
365
|
+
getImageType() : ImageType;
|
|
366
|
+
/**
|
|
367
|
+
* Gets or sets the format of the generated images.
|
|
368
|
+
* default value: PNG.
|
|
369
|
+
* @param value - The value to set.
|
|
370
|
+
*/
|
|
371
|
+
setImageType(value: ImageType) : void;
|
|
372
|
+
/**
|
|
373
|
+
* if this property is true, the generated svg will fit to view port.
|
|
374
|
+
*/
|
|
375
|
+
getFitToViewPort() : boolean;
|
|
376
|
+
/**
|
|
377
|
+
* if this property is true, the generated svg will fit to view port.
|
|
378
|
+
* @param value - The value to set.
|
|
379
|
+
*/
|
|
380
|
+
setFitToViewPort(value: boolean) : void;
|
|
381
|
+
/**
|
|
382
|
+
* Gets and sets the prefix of the css name in svg,the default value is empty string.
|
|
383
|
+
*/
|
|
384
|
+
getCssPrefix() : string;
|
|
385
|
+
/**
|
|
386
|
+
* Gets and sets the prefix of the css name in svg,the default value is empty string.
|
|
387
|
+
* @param value - The value to set.
|
|
388
|
+
*/
|
|
389
|
+
setCssPrefix(value: string) : void;
|
|
390
|
+
/**
|
|
391
|
+
* Gets or sets the type of font that embedded in Svg.
|
|
392
|
+
*
|
|
393
|
+
* @remarks
|
|
394
|
+
* Default value is <see cref="SvgEmbeddedFontType.None"/> which indicates that it will not embed font in Svg.
|
|
395
|
+
*/
|
|
396
|
+
getEmbeddedFontType() : SvgEmbeddedFontType;
|
|
397
|
+
/**
|
|
398
|
+
* Gets or sets the type of font that embedded in Svg.
|
|
399
|
+
* @param value - The value to set.
|
|
400
|
+
*
|
|
401
|
+
* @remarks
|
|
402
|
+
* Default value is <see cref="SvgEmbeddedFontType.None"/> which indicates that it will not embed font in Svg.
|
|
403
|
+
*/
|
|
404
|
+
setEmbeddedFontType(value: SvgEmbeddedFontType) : void;
|
|
405
|
+
/**
|
|
406
|
+
* Checks whether the implementation object is null.
|
|
407
|
+
*/
|
|
408
|
+
isNull() : boolean;
|
|
409
|
+
}
|
|
410
|
+
|
|
334
411
|
/**
|
|
335
412
|
* Represents data infomation of font file data.
|
|
336
413
|
*/
|
|
@@ -338,7 +415,7 @@ export class FontFileDataInfo {
|
|
|
338
415
|
/**
|
|
339
416
|
* Gets binary data of font file.
|
|
340
417
|
*/
|
|
341
|
-
getData() :
|
|
418
|
+
getData() : Uint8Array;
|
|
342
419
|
/**
|
|
343
420
|
* Gets font format type of font file.
|
|
344
421
|
*/
|
|
@@ -468,7 +545,7 @@ export class CellValue {
|
|
|
468
545
|
* </item>
|
|
469
546
|
* </list>
|
|
470
547
|
*/
|
|
471
|
-
getValue() :
|
|
548
|
+
getValue() : Object;
|
|
472
549
|
/**
|
|
473
550
|
* Gets/sets the cell value.
|
|
474
551
|
* @param value - The value to set.
|
|
@@ -506,7 +583,7 @@ export class CellValue {
|
|
|
506
583
|
* </item>
|
|
507
584
|
* </list>
|
|
508
585
|
*/
|
|
509
|
-
setValue(value:
|
|
586
|
+
setValue(value: Object) : void;
|
|
510
587
|
/**
|
|
511
588
|
* Checks whether the implementation object is null.
|
|
512
589
|
*/
|
|
@@ -863,7 +940,7 @@ export class RenderingWatermark {
|
|
|
863
940
|
* Creates instance of image watermark.
|
|
864
941
|
* @param imageData -
|
|
865
942
|
*/
|
|
866
|
-
constructor(imageData:
|
|
943
|
+
constructor(imageData: Uint8Array);
|
|
867
944
|
/**
|
|
868
945
|
* Creates instance of text watermark.
|
|
869
946
|
* @param text - watermark text
|
|
@@ -917,7 +994,7 @@ export class RenderingWatermark {
|
|
|
917
994
|
/**
|
|
918
995
|
* Gets image of the watermark.
|
|
919
996
|
*/
|
|
920
|
-
getImage() :
|
|
997
|
+
getImage() : Uint8Array;
|
|
921
998
|
/**
|
|
922
999
|
* Gets or sets horizontal alignment of the watermark to the page.
|
|
923
1000
|
*
|
|
@@ -1659,7 +1736,7 @@ export class ArrayEquationNode extends EquationNode {
|
|
|
1659
1736
|
* Determine whether the current equation node is equal to the specified node
|
|
1660
1737
|
* @param obj - The specified node
|
|
1661
1738
|
*/
|
|
1662
|
-
equals(obj:
|
|
1739
|
+
equals(obj: Object) : boolean;
|
|
1663
1740
|
/**
|
|
1664
1741
|
* Checks whether the implementation object is null.
|
|
1665
1742
|
*/
|
|
@@ -1680,7 +1757,7 @@ export class FunctionEquationNode extends EquationNode {
|
|
|
1680
1757
|
* Determine whether the current equation node is equal to the specified node
|
|
1681
1758
|
* @param obj - The specified node
|
|
1682
1759
|
*/
|
|
1683
|
-
equals(obj:
|
|
1760
|
+
equals(obj: Object) : boolean;
|
|
1684
1761
|
/**
|
|
1685
1762
|
* Checks whether the implementation object is null.
|
|
1686
1763
|
*/
|
|
@@ -1746,7 +1823,7 @@ export class GroupCharacterEquationNode extends EquationNode {
|
|
|
1746
1823
|
* Determine whether the current equation node is equal to the specified node
|
|
1747
1824
|
* @param obj - The specified node
|
|
1748
1825
|
*/
|
|
1749
|
-
equals(obj:
|
|
1826
|
+
equals(obj: Object) : boolean;
|
|
1750
1827
|
/**
|
|
1751
1828
|
* Checks whether the implementation object is null.
|
|
1752
1829
|
*/
|
|
@@ -1766,7 +1843,7 @@ export class LimLowUppEquationNode extends EquationNode {
|
|
|
1766
1843
|
* Determine whether the current equation node is equal to the specified node
|
|
1767
1844
|
* @param obj - The specified node
|
|
1768
1845
|
*/
|
|
1769
|
-
equals(obj:
|
|
1846
|
+
equals(obj: Object) : boolean;
|
|
1770
1847
|
/**
|
|
1771
1848
|
* Checks whether the implementation object is null.
|
|
1772
1849
|
*/
|
|
@@ -1786,7 +1863,7 @@ export class MathematicalEquationNode extends EquationNode {
|
|
|
1786
1863
|
* Determine whether the current equation node is equal to the specified node
|
|
1787
1864
|
* @param obj - The specified node
|
|
1788
1865
|
*/
|
|
1789
|
-
equals(obj:
|
|
1866
|
+
equals(obj: Object) : boolean;
|
|
1790
1867
|
/**
|
|
1791
1868
|
* Checks whether the implementation object is null.
|
|
1792
1869
|
*/
|
|
@@ -1824,7 +1901,7 @@ export class MatrixEquationNode extends EquationNode {
|
|
|
1824
1901
|
* Determine whether the current equation node is equal to the specified node
|
|
1825
1902
|
* @param obj - The specified node
|
|
1826
1903
|
*/
|
|
1827
|
-
equals(obj:
|
|
1904
|
+
equals(obj: Object) : boolean;
|
|
1828
1905
|
/**
|
|
1829
1906
|
* Checks whether the implementation object is null.
|
|
1830
1907
|
*/
|
|
@@ -2233,6 +2310,996 @@ export class HtmlTableLoadOptionCollection {
|
|
|
2233
2310
|
isNull() : boolean;
|
|
2234
2311
|
}
|
|
2235
2312
|
|
|
2313
|
+
/**
|
|
2314
|
+
* Implementation to provide multiple load options for processes
|
|
2315
|
+
* that use multiple inputs(such as template files).
|
|
2316
|
+
*
|
|
2317
|
+
* @remarks
|
|
2318
|
+
* For example, <see cref="SpreadsheetMerger"/> feature requires
|
|
2319
|
+
* multiple template files to merge.
|
|
2320
|
+
*/
|
|
2321
|
+
export class AbstractLowCodeLoadOptionsProvider {
|
|
2322
|
+
/**
|
|
2323
|
+
* Gets the load options from which to load data of currently processed part.
|
|
2324
|
+
*/
|
|
2325
|
+
getCurrent() : LowCodeLoadOptions;
|
|
2326
|
+
/**
|
|
2327
|
+
* Checks whether there is more input.
|
|
2328
|
+
*/
|
|
2329
|
+
moveNext() : boolean;
|
|
2330
|
+
/**
|
|
2331
|
+
* Releases resources after processing currently part of input.
|
|
2332
|
+
* @param part - the load options used for currently split part.
|
|
2333
|
+
*
|
|
2334
|
+
* @remarks
|
|
2335
|
+
* By default this method just closes the stream specified by the
|
|
2336
|
+
* <see cref="LowCodeLoadOptions.InputStream"/> directly(if the load options
|
|
2337
|
+
* specified a Stream as source).
|
|
2338
|
+
* User may overwrite this method to control how to release resources
|
|
2339
|
+
* according to their requirement and the implementation of
|
|
2340
|
+
* <see cref="Current"/>.
|
|
2341
|
+
*/
|
|
2342
|
+
finish(part: LowCodeLoadOptions) : void;
|
|
2343
|
+
/**
|
|
2344
|
+
* Checks whether the implementation object is null.
|
|
2345
|
+
*/
|
|
2346
|
+
isNull() : boolean;
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2349
|
+
/**
|
|
2350
|
+
* Implementation to provide protection settings
|
|
2351
|
+
*/
|
|
2352
|
+
export class AbstractLowCodeProtectionProvider {
|
|
2353
|
+
/**
|
|
2354
|
+
* Default Constructor.
|
|
2355
|
+
*/
|
|
2356
|
+
constructor();
|
|
2357
|
+
/**
|
|
2358
|
+
* Gets the password to open spread sheet file.
|
|
2359
|
+
* @returns
|
|
2360
|
+
* Password to open spread sheet file. Empty means no protection for openning the filel.
|
|
2361
|
+
*/
|
|
2362
|
+
getOpenPassword() : string;
|
|
2363
|
+
/**
|
|
2364
|
+
* Gets the password to modify spread sheet file.
|
|
2365
|
+
* @returns
|
|
2366
|
+
* Password to modify the spread sheet file.
|
|
2367
|
+
* Empty means no protection for modifying the file.
|
|
2368
|
+
*/
|
|
2369
|
+
getWritePassword() : string;
|
|
2370
|
+
/**
|
|
2371
|
+
* Gets the password to protect the workbook with specified protection type.
|
|
2372
|
+
* @returns
|
|
2373
|
+
* Password to protect the workbook.
|
|
2374
|
+
*/
|
|
2375
|
+
getWorkbookPassword() : string;
|
|
2376
|
+
/**
|
|
2377
|
+
* Gets the protection type to protect the workbook.
|
|
2378
|
+
* @returns
|
|
2379
|
+
* Protection type to protect the workbook.
|
|
2380
|
+
* <see cref="ProtectionType.None"/> means no protection for the workbook.
|
|
2381
|
+
*/
|
|
2382
|
+
getWorkbookProtectionType() : ProtectionType;
|
|
2383
|
+
/**
|
|
2384
|
+
* Gets the password to protect the specified worksheet.
|
|
2385
|
+
* @returns
|
|
2386
|
+
* Password to protect the specified worksheet.
|
|
2387
|
+
*/
|
|
2388
|
+
getWorksheetPassword(sheetName: string) : string;
|
|
2389
|
+
/**
|
|
2390
|
+
* Gets the protection type to protect the specified worksheet.
|
|
2391
|
+
* @returns
|
|
2392
|
+
* Protection type to protect the specified worksheet.
|
|
2393
|
+
* <see cref="ProtectionType.None"/> means no protection for the worksheet.
|
|
2394
|
+
*/
|
|
2395
|
+
getWorksheetProtectionType(sheetName: string) : ProtectionType;
|
|
2396
|
+
/**
|
|
2397
|
+
* Checks whether the implementation object is null.
|
|
2398
|
+
*/
|
|
2399
|
+
isNull() : boolean;
|
|
2400
|
+
}
|
|
2401
|
+
|
|
2402
|
+
/**
|
|
2403
|
+
* Implementation to provide multiple save options for processes
|
|
2404
|
+
* that require multiple outputs. For example,
|
|
2405
|
+
* <see cref="SpreadsheetSplitter"/> feature requires multiple destinations
|
|
2406
|
+
* to save the split files.
|
|
2407
|
+
*/
|
|
2408
|
+
export class AbstractLowCodeSaveOptionsProvider {
|
|
2409
|
+
/**
|
|
2410
|
+
* Gets the save options from which to get the output settings for currently split part.
|
|
2411
|
+
* Returning null denotes to skip given part.
|
|
2412
|
+
*/
|
|
2413
|
+
getSaveOptions(part: SplitPartInfo) : LowCodeSaveOptions;
|
|
2414
|
+
/**
|
|
2415
|
+
* Releases resources after processing currently split part.
|
|
2416
|
+
* @param part - the save options used for currently split part.
|
|
2417
|
+
*
|
|
2418
|
+
* @remarks
|
|
2419
|
+
* By default this method just closes the stream specified by the
|
|
2420
|
+
* <see cref="LowCodeSaveOptions.OutputStream"/> directly(if the save options
|
|
2421
|
+
* specified a Stream as destination).
|
|
2422
|
+
* User may overwrite this method to control how to release resources
|
|
2423
|
+
* according to their requirement and the implementation of
|
|
2424
|
+
* <see cref="GetSaveOptions(SplitPartInfo)"/>.
|
|
2425
|
+
*/
|
|
2426
|
+
finish(part: LowCodeSaveOptions) : void;
|
|
2427
|
+
/**
|
|
2428
|
+
* Checks whether the implementation object is null.
|
|
2429
|
+
*/
|
|
2430
|
+
isNull() : boolean;
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
/**
|
|
2434
|
+
* Converter for conversion between html files(html or mht) and other spreadsheet file formats.
|
|
2435
|
+
*/
|
|
2436
|
+
export class HtmlConverter {
|
|
2437
|
+
/**
|
|
2438
|
+
* Converts given template file between html and other formats.
|
|
2439
|
+
* @param templateFile - The template file to be converted
|
|
2440
|
+
* @param resultFile - The resultant file
|
|
2441
|
+
*/
|
|
2442
|
+
static process(templateFile: string, resultFile: string) : void;
|
|
2443
|
+
/**
|
|
2444
|
+
* Checks whether the implementation object is null.
|
|
2445
|
+
*/
|
|
2446
|
+
isNull() : boolean;
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
/**
|
|
2450
|
+
* Converter for converting template file to images.
|
|
2451
|
+
*/
|
|
2452
|
+
export class ImageConverter {
|
|
2453
|
+
/**
|
|
2454
|
+
* Converts template file to images.
|
|
2455
|
+
* @param templateFile - The template file to be converted to images.
|
|
2456
|
+
* @param resultFile - The resultant file(name pattern) for generated images.
|
|
2457
|
+
*
|
|
2458
|
+
* @remarks
|
|
2459
|
+
* The output files will be build from the specified result file
|
|
2460
|
+
* by appending sequence number of the sheet and split part.
|
|
2461
|
+
* For example, if the specified output file is Image.png, then the generated image
|
|
2462
|
+
* files will be Image_0_0.png, Image_0_1.png, ..., Image_1_0.png, ...
|
|
2463
|
+
*/
|
|
2464
|
+
static process(templateFile: string, resultFile: string) : void;
|
|
2465
|
+
/**
|
|
2466
|
+
* Checks whether the implementation object is null.
|
|
2467
|
+
*/
|
|
2468
|
+
isNull() : boolean;
|
|
2469
|
+
}
|
|
2470
|
+
|
|
2471
|
+
/**
|
|
2472
|
+
* Converter for conversion between json data structure and other spreadsheet file formats.
|
|
2473
|
+
*/
|
|
2474
|
+
export class JsonConverter {
|
|
2475
|
+
/**
|
|
2476
|
+
* Converts given template file between json and other formats.
|
|
2477
|
+
* @param templateFile - The template file to be converted
|
|
2478
|
+
* @param resultFile - The resultant file
|
|
2479
|
+
*/
|
|
2480
|
+
static process(templateFile: string, resultFile: string) : void;
|
|
2481
|
+
/**
|
|
2482
|
+
* Checks whether the implementation object is null.
|
|
2483
|
+
*/
|
|
2484
|
+
isNull() : boolean;
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
/**
|
|
2488
|
+
* Options for saving html in low code way.
|
|
2489
|
+
*/
|
|
2490
|
+
export class LowCodeHtmlSaveOptions extends LowCodeSaveOptions {
|
|
2491
|
+
/**
|
|
2492
|
+
* Constructs from a parent object convertible to this.
|
|
2493
|
+
* @param obj - The parent object.
|
|
2494
|
+
*/
|
|
2495
|
+
constructor(obj: LowCodeSaveOptions);
|
|
2496
|
+
/**
|
|
2497
|
+
* Default Constructor.
|
|
2498
|
+
*/
|
|
2499
|
+
constructor();
|
|
2500
|
+
/**
|
|
2501
|
+
* Gets and sets the format of spreadsheet.
|
|
2502
|
+
*
|
|
2503
|
+
* @remarks
|
|
2504
|
+
* When changing this property,
|
|
2505
|
+
* the save format specified by <see cref="HtmlOptions"/> will be ignored(if it had been specified before).
|
|
2506
|
+
*/
|
|
2507
|
+
getSaveFormat() : SaveFormat;
|
|
2508
|
+
/**
|
|
2509
|
+
* Gets and sets the format of spreadsheet.
|
|
2510
|
+
* @param value - The value to set.
|
|
2511
|
+
*
|
|
2512
|
+
* @remarks
|
|
2513
|
+
* When changing this property,
|
|
2514
|
+
* the save format specified by <see cref="HtmlOptions"/> will be ignored(if it had been specified before).
|
|
2515
|
+
*/
|
|
2516
|
+
setSaveFormat(value: SaveFormat) : void;
|
|
2517
|
+
/**
|
|
2518
|
+
* The general options for saving html.
|
|
2519
|
+
*
|
|
2520
|
+
* @remarks
|
|
2521
|
+
* When one <see cref="HtmlSaveOptions"/> instance is specified,
|
|
2522
|
+
* the <see cref="SaveFormat"/> will be overwritten(if it had been specified before).
|
|
2523
|
+
*/
|
|
2524
|
+
getHtmlOptions() : HtmlSaveOptions;
|
|
2525
|
+
/**
|
|
2526
|
+
* The general options for saving html.
|
|
2527
|
+
* @param value - The value to set.
|
|
2528
|
+
*
|
|
2529
|
+
* @remarks
|
|
2530
|
+
* When one <see cref="HtmlSaveOptions"/> instance is specified,
|
|
2531
|
+
* the <see cref="SaveFormat"/> will be overwritten(if it had been specified before).
|
|
2532
|
+
*/
|
|
2533
|
+
setHtmlOptions(value: HtmlSaveOptions) : void;
|
|
2534
|
+
/**
|
|
2535
|
+
* Checks whether the implementation object is null.
|
|
2536
|
+
*/
|
|
2537
|
+
isNull() : boolean;
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
/**
|
|
2541
|
+
* Options for saving image in low code way.
|
|
2542
|
+
*/
|
|
2543
|
+
export class LowCodeImageSaveOptions extends LowCodeSaveOptions {
|
|
2544
|
+
/**
|
|
2545
|
+
* Constructs from a parent object convertible to this.
|
|
2546
|
+
* @param obj - The parent object.
|
|
2547
|
+
*/
|
|
2548
|
+
constructor(obj: LowCodeSaveOptions);
|
|
2549
|
+
/**
|
|
2550
|
+
* Default Constructor.
|
|
2551
|
+
*/
|
|
2552
|
+
constructor();
|
|
2553
|
+
/**
|
|
2554
|
+
* Gets or sets the save format.
|
|
2555
|
+
*
|
|
2556
|
+
* @remarks
|
|
2557
|
+
* If <see cref="ImageOptions"/> has been specified, setting this property will also
|
|
2558
|
+
* change the <see cref="ImageOrPrintOptions.ImageType"/> value of it.
|
|
2559
|
+
*/
|
|
2560
|
+
getSaveFormat() : SaveFormat;
|
|
2561
|
+
/**
|
|
2562
|
+
* Gets or sets the save format.
|
|
2563
|
+
* @param value - The value to set.
|
|
2564
|
+
*
|
|
2565
|
+
* @remarks
|
|
2566
|
+
* If <see cref="ImageOptions"/> has been specified, setting this property will also
|
|
2567
|
+
* change the <see cref="ImageOrPrintOptions.ImageType"/> value of it.
|
|
2568
|
+
*/
|
|
2569
|
+
setSaveFormat(value: SaveFormat) : void;
|
|
2570
|
+
/**
|
|
2571
|
+
* The options for rendering images.
|
|
2572
|
+
*
|
|
2573
|
+
* @remarks
|
|
2574
|
+
* When one <see cref="ImageOrPrintOptions"/> instance is specified,
|
|
2575
|
+
* the <see cref="SaveFormat"/> will be overwritten(if it had been specified before).
|
|
2576
|
+
*/
|
|
2577
|
+
getImageOptions() : ImageOrPrintOptions;
|
|
2578
|
+
/**
|
|
2579
|
+
* The options for rendering images.
|
|
2580
|
+
* @param value - The value to set.
|
|
2581
|
+
*
|
|
2582
|
+
* @remarks
|
|
2583
|
+
* When one <see cref="ImageOrPrintOptions"/> instance is specified,
|
|
2584
|
+
* the <see cref="SaveFormat"/> will be overwritten(if it had been specified before).
|
|
2585
|
+
*/
|
|
2586
|
+
setImageOptions(value: ImageOrPrintOptions) : void;
|
|
2587
|
+
/**
|
|
2588
|
+
* Provider of save options for saving generated images.
|
|
2589
|
+
*
|
|
2590
|
+
* @remarks
|
|
2591
|
+
* The output(<see cref="LowCodeSaveOptions.OutputFile"/> or <see cref="LowCodeSaveOptions.OutputStream"/>)
|
|
2592
|
+
* specified by this instance will take no effect when this property is specified.
|
|
2593
|
+
* Instead the output of every generated image will be specified by the provider.
|
|
2594
|
+
*/
|
|
2595
|
+
getSaveOptionsProvider() : AbstractLowCodeSaveOptionsProvider;
|
|
2596
|
+
/**
|
|
2597
|
+
* Provider of save options for saving generated images.
|
|
2598
|
+
* @param value - The value to set.
|
|
2599
|
+
*
|
|
2600
|
+
* @remarks
|
|
2601
|
+
* The output(<see cref="LowCodeSaveOptions.OutputFile"/> or <see cref="LowCodeSaveOptions.OutputStream"/>)
|
|
2602
|
+
* specified by this instance will take no effect when this property is specified.
|
|
2603
|
+
* Instead the output of every generated image will be specified by the provider.
|
|
2604
|
+
*/
|
|
2605
|
+
setSaveOptionsProvider(value: AbstractLowCodeSaveOptionsProvider) : void;
|
|
2606
|
+
/**
|
|
2607
|
+
* Checks whether the implementation object is null.
|
|
2608
|
+
*/
|
|
2609
|
+
isNull() : boolean;
|
|
2610
|
+
}
|
|
2611
|
+
|
|
2612
|
+
/**
|
|
2613
|
+
* Options for loading template file.
|
|
2614
|
+
*/
|
|
2615
|
+
export class LowCodeLoadOptions {
|
|
2616
|
+
/**
|
|
2617
|
+
* Default Constructor.
|
|
2618
|
+
*/
|
|
2619
|
+
constructor();
|
|
2620
|
+
/**
|
|
2621
|
+
* Gets and sets the file(with path if needed) of the template.
|
|
2622
|
+
*
|
|
2623
|
+
* @remarks
|
|
2624
|
+
* When setting a non-null and non-empty path to this property,
|
|
2625
|
+
* the previously set value for <see cref="InputStream"/> will be ignored.
|
|
2626
|
+
*/
|
|
2627
|
+
getInputFile() : string;
|
|
2628
|
+
/**
|
|
2629
|
+
* Gets and sets the file(with path if needed) of the template.
|
|
2630
|
+
* @param value - The value to set.
|
|
2631
|
+
*
|
|
2632
|
+
* @remarks
|
|
2633
|
+
* When setting a non-null and non-empty path to this property,
|
|
2634
|
+
* the previously set value for <see cref="InputStream"/> will be ignored.
|
|
2635
|
+
*/
|
|
2636
|
+
setInputFile(value: string) : void;
|
|
2637
|
+
/**
|
|
2638
|
+
* Gets and sets the Stream of the template.
|
|
2639
|
+
*
|
|
2640
|
+
* @remarks
|
|
2641
|
+
* When setting a non-null Stream to this property,
|
|
2642
|
+
* the previously set value for <see cref="InputFile"/> will be ignored.
|
|
2643
|
+
*/
|
|
2644
|
+
getInputStream() : Uint8Array;
|
|
2645
|
+
/**
|
|
2646
|
+
* Gets and sets the Stream of the template.
|
|
2647
|
+
* @param value - The value to set.
|
|
2648
|
+
*
|
|
2649
|
+
* @remarks
|
|
2650
|
+
* When setting a non-null Stream to this property,
|
|
2651
|
+
* the previously set value for <see cref="InputFile"/> will be ignored.
|
|
2652
|
+
*/
|
|
2653
|
+
setInputStream(value: Uint8Array) : void;
|
|
2654
|
+
/**
|
|
2655
|
+
* Checks whether the implementation object is null.
|
|
2656
|
+
*/
|
|
2657
|
+
isNull() : boolean;
|
|
2658
|
+
}
|
|
2659
|
+
|
|
2660
|
+
/**
|
|
2661
|
+
* Options for merging multiple template files into one.
|
|
2662
|
+
*/
|
|
2663
|
+
export class LowCodeMergeOptions {
|
|
2664
|
+
/**
|
|
2665
|
+
* Default Constructor.
|
|
2666
|
+
*/
|
|
2667
|
+
constructor();
|
|
2668
|
+
/**
|
|
2669
|
+
* Save options for saving the split parts.
|
|
2670
|
+
*/
|
|
2671
|
+
getSaveOptions() : LowCodeSaveOptions;
|
|
2672
|
+
/**
|
|
2673
|
+
* Save options for saving the split parts.
|
|
2674
|
+
* @param value - The value to set.
|
|
2675
|
+
*/
|
|
2676
|
+
setSaveOptions(value: LowCodeSaveOptions) : void;
|
|
2677
|
+
/**
|
|
2678
|
+
* Provider of save options for saving the split parts.
|
|
2679
|
+
*
|
|
2680
|
+
* @remarks
|
|
2681
|
+
* If this property is specified, <see cref="LoadOptions"/> takes no effect
|
|
2682
|
+
* because the output of every split part will be specified by the provider.
|
|
2683
|
+
*/
|
|
2684
|
+
getLoadOptionsProvider() : AbstractLowCodeLoadOptionsProvider;
|
|
2685
|
+
/**
|
|
2686
|
+
* Provider of save options for saving the split parts.
|
|
2687
|
+
* @param value - The value to set.
|
|
2688
|
+
*
|
|
2689
|
+
* @remarks
|
|
2690
|
+
* If this property is specified, <see cref="LoadOptions"/> takes no effect
|
|
2691
|
+
* because the output of every split part will be specified by the provider.
|
|
2692
|
+
*/
|
|
2693
|
+
setLoadOptionsProvider(value: AbstractLowCodeLoadOptionsProvider) : void;
|
|
2694
|
+
/**
|
|
2695
|
+
* Checks whether the implementation object is null.
|
|
2696
|
+
*/
|
|
2697
|
+
isNull() : boolean;
|
|
2698
|
+
}
|
|
2699
|
+
|
|
2700
|
+
/**
|
|
2701
|
+
* Options for saving pdf in low code way.
|
|
2702
|
+
*/
|
|
2703
|
+
export class LowCodePdfSaveOptions extends LowCodeSaveOptions {
|
|
2704
|
+
/**
|
|
2705
|
+
* Constructs from a parent object convertible to this.
|
|
2706
|
+
* @param obj - The parent object.
|
|
2707
|
+
*/
|
|
2708
|
+
constructor(obj: LowCodeSaveOptions);
|
|
2709
|
+
/**
|
|
2710
|
+
* Default Constructor.
|
|
2711
|
+
*/
|
|
2712
|
+
constructor();
|
|
2713
|
+
/**
|
|
2714
|
+
* The save format for the output.
|
|
2715
|
+
* For converting to pdf, it can only be <see cref="SaveFormat.Pdf"/>.
|
|
2716
|
+
*/
|
|
2717
|
+
getSaveFormat() : SaveFormat;
|
|
2718
|
+
/**
|
|
2719
|
+
* The save format for the output.
|
|
2720
|
+
* For converting to pdf, it can only be <see cref="SaveFormat.Pdf"/>.
|
|
2721
|
+
* @param value - The value to set.
|
|
2722
|
+
*/
|
|
2723
|
+
setSaveFormat(value: SaveFormat) : void;
|
|
2724
|
+
/**
|
|
2725
|
+
* The options for saving Pdf file.
|
|
2726
|
+
*/
|
|
2727
|
+
getPdfOptions() : PdfSaveOptions;
|
|
2728
|
+
/**
|
|
2729
|
+
* The options for saving Pdf file.
|
|
2730
|
+
* @param value - The value to set.
|
|
2731
|
+
*/
|
|
2732
|
+
setPdfOptions(value: PdfSaveOptions) : void;
|
|
2733
|
+
/**
|
|
2734
|
+
* Checks whether the implementation object is null.
|
|
2735
|
+
*/
|
|
2736
|
+
isNull() : boolean;
|
|
2737
|
+
}
|
|
2738
|
+
|
|
2739
|
+
/**
|
|
2740
|
+
* Options for saving generated results in low code way.
|
|
2741
|
+
*/
|
|
2742
|
+
export class LowCodeSaveOptions {
|
|
2743
|
+
/**
|
|
2744
|
+
* Default Constructor.
|
|
2745
|
+
*/
|
|
2746
|
+
constructor();
|
|
2747
|
+
/**
|
|
2748
|
+
* Gets and sets the file(with path if needed) for saving the generated data.
|
|
2749
|
+
* When setting this property with value other than null or empty string, <see cref="OutputStream"/> will be ignored.
|
|
2750
|
+
*/
|
|
2751
|
+
getOutputFile() : string;
|
|
2752
|
+
/**
|
|
2753
|
+
* Gets and sets the file(with path if needed) for saving the generated data.
|
|
2754
|
+
* When setting this property with value other than null or empty string, <see cref="OutputStream"/> will be ignored.
|
|
2755
|
+
* @param value - The value to set.
|
|
2756
|
+
*/
|
|
2757
|
+
setOutputFile(value: string) : void;
|
|
2758
|
+
/**
|
|
2759
|
+
* Gets and sets the Stream for writing the generated data to.
|
|
2760
|
+
* When setting this property with value other than null, <see cref="OutputFile"/> will be ignored.
|
|
2761
|
+
*/
|
|
2762
|
+
getOutputStream() : Uint8Array;
|
|
2763
|
+
/**
|
|
2764
|
+
* Gets and sets the Stream for writing the generated data to.
|
|
2765
|
+
* When setting this property with value other than null, <see cref="OutputFile"/> will be ignored.
|
|
2766
|
+
* @param value - The value to set.
|
|
2767
|
+
*/
|
|
2768
|
+
setOutputStream(value: Uint8Array) : void;
|
|
2769
|
+
/**
|
|
2770
|
+
* Gets and sets the save format for the output.
|
|
2771
|
+
* Generally, for specific process in low code way, only some specific formats are allowed.
|
|
2772
|
+
* Please specify the correct format for corresponding process, otherwise unexpected result
|
|
2773
|
+
* or even exception may be caused.
|
|
2774
|
+
*/
|
|
2775
|
+
getSaveFormat() : SaveFormat;
|
|
2776
|
+
/**
|
|
2777
|
+
* Gets and sets the save format for the output.
|
|
2778
|
+
* Generally, for specific process in low code way, only some specific formats are allowed.
|
|
2779
|
+
* Please specify the correct format for corresponding process, otherwise unexpected result
|
|
2780
|
+
* or even exception may be caused.
|
|
2781
|
+
* @param value - The value to set.
|
|
2782
|
+
*/
|
|
2783
|
+
setSaveFormat(value: SaveFormat) : void;
|
|
2784
|
+
/**
|
|
2785
|
+
* Checks whether the implementation object is null.
|
|
2786
|
+
*/
|
|
2787
|
+
isNull() : boolean;
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
/**
|
|
2791
|
+
* Implementation to provide save options which save split parts to files
|
|
2792
|
+
* and the path of resultant file are named as(it may contains directories):
|
|
2793
|
+
* <see cref="PathHeader"/>+<see cref="SheetPrefix"/>+SheetIndex(or SheetName)
|
|
2794
|
+
* +<see cref="SplitPartPrefix"/>+SplitPartIndex+<see cref="PathTail"/>.
|
|
2795
|
+
*/
|
|
2796
|
+
export class LowCodeSaveOptionsProviderOfAssembling extends AbstractLowCodeSaveOptionsProvider {
|
|
2797
|
+
/**
|
|
2798
|
+
* Constructs from a parent object convertible to this.
|
|
2799
|
+
* @param obj - The parent object.
|
|
2800
|
+
*/
|
|
2801
|
+
constructor(obj: AbstractLowCodeSaveOptionsProvider);
|
|
2802
|
+
/**
|
|
2803
|
+
* Default Constructor.
|
|
2804
|
+
*/
|
|
2805
|
+
constructor();
|
|
2806
|
+
/**
|
|
2807
|
+
* Header part(before added content of sheet and split part) of file path.
|
|
2808
|
+
*/
|
|
2809
|
+
getPathHeader() : string;
|
|
2810
|
+
/**
|
|
2811
|
+
* Header part(before added content of sheet and split part) of file path.
|
|
2812
|
+
* @param value - The value to set.
|
|
2813
|
+
*/
|
|
2814
|
+
setPathHeader(value: string) : void;
|
|
2815
|
+
/**
|
|
2816
|
+
* Tailing part(after sequence numbers) of file path.
|
|
2817
|
+
* It should include extension of file name.
|
|
2818
|
+
*/
|
|
2819
|
+
getPathTail() : string;
|
|
2820
|
+
/**
|
|
2821
|
+
* Tailing part(after sequence numbers) of file path.
|
|
2822
|
+
* It should include extension of file name.
|
|
2823
|
+
* @param value - The value to set.
|
|
2824
|
+
*/
|
|
2825
|
+
setPathTail(value: string) : void;
|
|
2826
|
+
/**
|
|
2827
|
+
* Whether builds the file path with sheet name instead of sheet index. Default value is false.
|
|
2828
|
+
*
|
|
2829
|
+
* @remarks
|
|
2830
|
+
* The sheet name will never be rebuilt automatically.
|
|
2831
|
+
* So when set it to true, please make sure there is no special sheet name
|
|
2832
|
+
* that can cause invalid file path or name.
|
|
2833
|
+
*/
|
|
2834
|
+
getUseSheetName() : boolean;
|
|
2835
|
+
/**
|
|
2836
|
+
* Whether builds the file path with sheet name instead of sheet index. Default value is false.
|
|
2837
|
+
* @param value - The value to set.
|
|
2838
|
+
*
|
|
2839
|
+
* @remarks
|
|
2840
|
+
* The sheet name will never be rebuilt automatically.
|
|
2841
|
+
* So when set it to true, please make sure there is no special sheet name
|
|
2842
|
+
* that can cause invalid file path or name.
|
|
2843
|
+
*/
|
|
2844
|
+
setUseSheetName(value: boolean) : void;
|
|
2845
|
+
/**
|
|
2846
|
+
* Prefix for the index of worksheet.
|
|
2847
|
+
*
|
|
2848
|
+
* @remarks
|
|
2849
|
+
* If there is only one worksheet and <see cref="BuildPathWithSheetAlways"/> is false,
|
|
2850
|
+
* then this prefix and the sheet index(or name) will not be added to the resultant file path.
|
|
2851
|
+
*/
|
|
2852
|
+
getSheetPrefix() : string;
|
|
2853
|
+
/**
|
|
2854
|
+
* Prefix for the index of worksheet.
|
|
2855
|
+
* @param value - The value to set.
|
|
2856
|
+
*
|
|
2857
|
+
* @remarks
|
|
2858
|
+
* If there is only one worksheet and <see cref="BuildPathWithSheetAlways"/> is false,
|
|
2859
|
+
* then this prefix and the sheet index(or name) will not be added to the resultant file path.
|
|
2860
|
+
*/
|
|
2861
|
+
setSheetPrefix(value: string) : void;
|
|
2862
|
+
/**
|
|
2863
|
+
* Prefix for the index of split part.
|
|
2864
|
+
*
|
|
2865
|
+
* @remarks
|
|
2866
|
+
* If there is only one split part and <see cref="BuildPathWithSplitPartAlways"/> is false,
|
|
2867
|
+
* then this prefix and the split part index(0) will not be added to the resultant file path.
|
|
2868
|
+
*/
|
|
2869
|
+
getSplitPartPrefix() : string;
|
|
2870
|
+
/**
|
|
2871
|
+
* Prefix for the index of split part.
|
|
2872
|
+
* @param value - The value to set.
|
|
2873
|
+
*
|
|
2874
|
+
* @remarks
|
|
2875
|
+
* If there is only one split part and <see cref="BuildPathWithSplitPartAlways"/> is false,
|
|
2876
|
+
* then this prefix and the split part index(0) will not be added to the resultant file path.
|
|
2877
|
+
*/
|
|
2878
|
+
setSplitPartPrefix(value: string) : void;
|
|
2879
|
+
/**
|
|
2880
|
+
* Offset of sheet's index between what used in file path
|
|
2881
|
+
* and its actual value(<see cref="SplitPartInfo.SheetIndex"/>).
|
|
2882
|
+
*
|
|
2883
|
+
* @remarks
|
|
2884
|
+
* Only takes effect when <see cref="UseSheetName"/> is false.
|
|
2885
|
+
*/
|
|
2886
|
+
getSheetIndexOffset() : number;
|
|
2887
|
+
/**
|
|
2888
|
+
* Offset of sheet's index between what used in file path
|
|
2889
|
+
* and its actual value(<see cref="SplitPartInfo.SheetIndex"/>).
|
|
2890
|
+
* @param value - The value to set.
|
|
2891
|
+
*
|
|
2892
|
+
* @remarks
|
|
2893
|
+
* Only takes effect when <see cref="UseSheetName"/> is false.
|
|
2894
|
+
*/
|
|
2895
|
+
setSheetIndexOffset(value: number) : void;
|
|
2896
|
+
/**
|
|
2897
|
+
* Offset of split part's index between what used in file path
|
|
2898
|
+
* and its actual value(<see cref="SplitPartInfo.PartIndex"/>).
|
|
2899
|
+
*/
|
|
2900
|
+
getSplitPartIndexOffset() : number;
|
|
2901
|
+
/**
|
|
2902
|
+
* Offset of split part's index between what used in file path
|
|
2903
|
+
* and its actual value(<see cref="SplitPartInfo.PartIndex"/>).
|
|
2904
|
+
* @param value - The value to set.
|
|
2905
|
+
*/
|
|
2906
|
+
setSplitPartIndexOffset(value: number) : void;
|
|
2907
|
+
/**
|
|
2908
|
+
* Whether add sheet index or name to file path always.
|
|
2909
|
+
* Default value is false, that is, when there is only one sheet,
|
|
2910
|
+
* the sheet index(or name) and corresponding prefix will not be added to the file path.
|
|
2911
|
+
*/
|
|
2912
|
+
getBuildPathWithSheetAlways() : boolean;
|
|
2913
|
+
/**
|
|
2914
|
+
* Whether add sheet index or name to file path always.
|
|
2915
|
+
* Default value is false, that is, when there is only one sheet,
|
|
2916
|
+
* the sheet index(or name) and corresponding prefix will not be added to the file path.
|
|
2917
|
+
* @param value - The value to set.
|
|
2918
|
+
*/
|
|
2919
|
+
setBuildPathWithSheetAlways(value: boolean) : void;
|
|
2920
|
+
/**
|
|
2921
|
+
* Whether add split part index to file path always.
|
|
2922
|
+
* Default value is false, that is, when there is only one split part,
|
|
2923
|
+
* the split part index and corresponding prefix will not be added to the file path.
|
|
2924
|
+
*/
|
|
2925
|
+
getBuildPathWithSplitPartAlways() : boolean;
|
|
2926
|
+
/**
|
|
2927
|
+
* Whether add split part index to file path always.
|
|
2928
|
+
* Default value is false, that is, when there is only one split part,
|
|
2929
|
+
* the split part index and corresponding prefix will not be added to the file path.
|
|
2930
|
+
* @param value - The value to set.
|
|
2931
|
+
*/
|
|
2932
|
+
setBuildPathWithSplitPartAlways(value: boolean) : void;
|
|
2933
|
+
/**
|
|
2934
|
+
* The template for creating instance of save options in <see cref="GetSaveOptions(SplitPartInfo)"/>.
|
|
2935
|
+
*
|
|
2936
|
+
* @remarks
|
|
2937
|
+
* If the template has been specified, then the created instance will copy
|
|
2938
|
+
* all setting from it and update the output file accordingly.
|
|
2939
|
+
*/
|
|
2940
|
+
getSaveOptionsTemplate() : LowCodeSaveOptions;
|
|
2941
|
+
/**
|
|
2942
|
+
* The template for creating instance of save options in <see cref="GetSaveOptions(SplitPartInfo)"/>.
|
|
2943
|
+
* @param value - The value to set.
|
|
2944
|
+
*
|
|
2945
|
+
* @remarks
|
|
2946
|
+
* If the template has been specified, then the created instance will copy
|
|
2947
|
+
* all setting from it and update the output file accordingly.
|
|
2948
|
+
*/
|
|
2949
|
+
setSaveOptionsTemplate(value: LowCodeSaveOptions) : void;
|
|
2950
|
+
/**
|
|
2951
|
+
* Gets the save options from which to get the output settings for currently split part.
|
|
2952
|
+
*/
|
|
2953
|
+
getSaveOptions(part: SplitPartInfo) : LowCodeSaveOptions;
|
|
2954
|
+
/**
|
|
2955
|
+
* Checks whether the implementation object is null.
|
|
2956
|
+
*/
|
|
2957
|
+
isNull() : boolean;
|
|
2958
|
+
}
|
|
2959
|
+
|
|
2960
|
+
/**
|
|
2961
|
+
* Implementation to provide save options which save split parts to files
|
|
2962
|
+
* and the path of resultant file are defined with placeholders.
|
|
2963
|
+
*/
|
|
2964
|
+
export class LowCodeSaveOptionsProviderOfPlaceHolders extends AbstractLowCodeSaveOptionsProvider {
|
|
2965
|
+
/**
|
|
2966
|
+
* Constructs from a parent object convertible to this.
|
|
2967
|
+
* @param obj - The parent object.
|
|
2968
|
+
*/
|
|
2969
|
+
constructor(obj: AbstractLowCodeSaveOptionsProvider);
|
|
2970
|
+
/**
|
|
2971
|
+
* Instantiates an instance to provide save options according to specified templates.
|
|
2972
|
+
* @param pathTemplate - The template of the resultant file path.
|
|
2973
|
+
*
|
|
2974
|
+
* @remarks
|
|
2975
|
+
* The supported placeholders in file path template:
|
|
2976
|
+
* <ul>
|
|
2977
|
+
* <li>${SheetIndex}: will be replaced by the sheet index of the split part</li>
|
|
2978
|
+
* <li>${SheetName}: will be replaced by the sheet name of the split part</li>
|
|
2979
|
+
* <li>${SplitPartIndex}: will be replaced by the index of the split part</li>
|
|
2980
|
+
* <li>${SheetIndexPrefix}: will be replaced by <see cref="SheetIndexPrefix"/></li>
|
|
2981
|
+
* <li>${SheetNamePrefix}: will be replaced by <see cref="SheetNamePrefix"/></li>
|
|
2982
|
+
* <li>${SplitPartPrefix}: will be replaced by <see cref="SplitPartPrefix"/></li>
|
|
2983
|
+
* </ul>
|
|
2984
|
+
*/
|
|
2985
|
+
constructor(pathTemplate: string);
|
|
2986
|
+
/**
|
|
2987
|
+
* Offset of sheet's index between what used in file path
|
|
2988
|
+
* and its actual value(<see cref="SplitPartInfo.SheetIndex"/>).
|
|
2989
|
+
*/
|
|
2990
|
+
getSheetIndexOffset() : number;
|
|
2991
|
+
/**
|
|
2992
|
+
* Offset of sheet's index between what used in file path
|
|
2993
|
+
* and its actual value(<see cref="SplitPartInfo.SheetIndex"/>).
|
|
2994
|
+
* @param value - The value to set.
|
|
2995
|
+
*/
|
|
2996
|
+
setSheetIndexOffset(value: number) : void;
|
|
2997
|
+
/**
|
|
2998
|
+
* Offset of split part's index between what used in file path
|
|
2999
|
+
* and its actual value(<see cref="SplitPartInfo.PartIndex"/>).
|
|
3000
|
+
*/
|
|
3001
|
+
getSplitPartIndexOffset() : number;
|
|
3002
|
+
/**
|
|
3003
|
+
* Offset of split part's index between what used in file path
|
|
3004
|
+
* and its actual value(<see cref="SplitPartInfo.PartIndex"/>).
|
|
3005
|
+
* @param value - The value to set.
|
|
3006
|
+
*/
|
|
3007
|
+
setSplitPartIndexOffset(value: number) : void;
|
|
3008
|
+
/**
|
|
3009
|
+
* Whether add sheet index or name to file path always.
|
|
3010
|
+
* Default value is false, that is, when there is only one sheet,
|
|
3011
|
+
* the sheet index and name and corresponding prefix(<see cref="SheetNamePrefix"/>)
|
|
3012
|
+
* will not be added to the file path.
|
|
3013
|
+
*/
|
|
3014
|
+
getBuildPathWithSheetAlways() : boolean;
|
|
3015
|
+
/**
|
|
3016
|
+
* Whether add sheet index or name to file path always.
|
|
3017
|
+
* Default value is false, that is, when there is only one sheet,
|
|
3018
|
+
* the sheet index and name and corresponding prefix(<see cref="SheetNamePrefix"/>)
|
|
3019
|
+
* will not be added to the file path.
|
|
3020
|
+
* @param value - The value to set.
|
|
3021
|
+
*/
|
|
3022
|
+
setBuildPathWithSheetAlways(value: boolean) : void;
|
|
3023
|
+
/**
|
|
3024
|
+
* Whether add split part index to file path always.
|
|
3025
|
+
* Default value is false, that is, when there is only one split part,
|
|
3026
|
+
* the split part index and corresponding prefix(<see cref="SplitPartPrefix"/>)
|
|
3027
|
+
* will not be added to the file path.
|
|
3028
|
+
*/
|
|
3029
|
+
getBuildPathWithSplitPartAlways() : boolean;
|
|
3030
|
+
/**
|
|
3031
|
+
* Whether add split part index to file path always.
|
|
3032
|
+
* Default value is false, that is, when there is only one split part,
|
|
3033
|
+
* the split part index and corresponding prefix(<see cref="SplitPartPrefix"/>)
|
|
3034
|
+
* will not be added to the file path.
|
|
3035
|
+
* @param value - The value to set.
|
|
3036
|
+
*/
|
|
3037
|
+
setBuildPathWithSplitPartAlways(value: boolean) : void;
|
|
3038
|
+
/**
|
|
3039
|
+
* Prefix for the index of worksheet.
|
|
3040
|
+
*
|
|
3041
|
+
* @remarks
|
|
3042
|
+
* If there is only one worksheet and <see cref="BuildPathWithSheetAlways"/> is false,
|
|
3043
|
+
* then this prefix and the sheet index(or name) will not be added to the resultant file path.
|
|
3044
|
+
*/
|
|
3045
|
+
getSheetNamePrefix() : string;
|
|
3046
|
+
/**
|
|
3047
|
+
* Prefix for the index of worksheet.
|
|
3048
|
+
* @param value - The value to set.
|
|
3049
|
+
*
|
|
3050
|
+
* @remarks
|
|
3051
|
+
* If there is only one worksheet and <see cref="BuildPathWithSheetAlways"/> is false,
|
|
3052
|
+
* then this prefix and the sheet index(or name) will not be added to the resultant file path.
|
|
3053
|
+
*/
|
|
3054
|
+
setSheetNamePrefix(value: string) : void;
|
|
3055
|
+
/**
|
|
3056
|
+
* Prefix for the index of worksheet.
|
|
3057
|
+
*
|
|
3058
|
+
* @remarks
|
|
3059
|
+
* If there is only one worksheet and <see cref="BuildPathWithSheetAlways"/> is false,
|
|
3060
|
+
* then this prefix and the sheet index(or name) will not be added to the resultant file path.
|
|
3061
|
+
*/
|
|
3062
|
+
getSheetIndexPrefix() : string;
|
|
3063
|
+
/**
|
|
3064
|
+
* Prefix for the index of worksheet.
|
|
3065
|
+
* @param value - The value to set.
|
|
3066
|
+
*
|
|
3067
|
+
* @remarks
|
|
3068
|
+
* If there is only one worksheet and <see cref="BuildPathWithSheetAlways"/> is false,
|
|
3069
|
+
* then this prefix and the sheet index(or name) will not be added to the resultant file path.
|
|
3070
|
+
*/
|
|
3071
|
+
setSheetIndexPrefix(value: string) : void;
|
|
3072
|
+
/**
|
|
3073
|
+
* Prefix for the index of split part.
|
|
3074
|
+
*
|
|
3075
|
+
* @remarks
|
|
3076
|
+
* If there is only one split part and <see cref="BuildPathWithSplitPartAlways"/> is false,
|
|
3077
|
+
* then this prefix and the split part index(0) will not be added to the resultant file path.
|
|
3078
|
+
*/
|
|
3079
|
+
getSplitPartPrefix() : string;
|
|
3080
|
+
/**
|
|
3081
|
+
* Prefix for the index of split part.
|
|
3082
|
+
* @param value - The value to set.
|
|
3083
|
+
*
|
|
3084
|
+
* @remarks
|
|
3085
|
+
* If there is only one split part and <see cref="BuildPathWithSplitPartAlways"/> is false,
|
|
3086
|
+
* then this prefix and the split part index(0) will not be added to the resultant file path.
|
|
3087
|
+
*/
|
|
3088
|
+
setSplitPartPrefix(value: string) : void;
|
|
3089
|
+
/**
|
|
3090
|
+
* The template for creating instance of save options in <see cref="GetSaveOptions(SplitPartInfo)"/>.
|
|
3091
|
+
*
|
|
3092
|
+
* @remarks
|
|
3093
|
+
* If the template has been specified, then the created instance will copy
|
|
3094
|
+
* all setting from it and update the output file accordingly.
|
|
3095
|
+
*/
|
|
3096
|
+
getSaveOptionsTemplate() : LowCodeSaveOptions;
|
|
3097
|
+
/**
|
|
3098
|
+
* The template for creating instance of save options in <see cref="GetSaveOptions(SplitPartInfo)"/>.
|
|
3099
|
+
* @param value - The value to set.
|
|
3100
|
+
*
|
|
3101
|
+
* @remarks
|
|
3102
|
+
* If the template has been specified, then the created instance will copy
|
|
3103
|
+
* all setting from it and update the output file accordingly.
|
|
3104
|
+
*/
|
|
3105
|
+
setSaveOptionsTemplate(value: LowCodeSaveOptions) : void;
|
|
3106
|
+
/**
|
|
3107
|
+
* Gets the save options from which to get the output settings for currently split part.
|
|
3108
|
+
*/
|
|
3109
|
+
getSaveOptions(part: SplitPartInfo) : LowCodeSaveOptions;
|
|
3110
|
+
/**
|
|
3111
|
+
* Checks whether the implementation object is null.
|
|
3112
|
+
*/
|
|
3113
|
+
isNull() : boolean;
|
|
3114
|
+
}
|
|
3115
|
+
|
|
3116
|
+
/**
|
|
3117
|
+
* Options for splitting spreadsheet.
|
|
3118
|
+
*/
|
|
3119
|
+
export class LowCodeSplitOptions {
|
|
3120
|
+
/**
|
|
3121
|
+
* Default Constructor.
|
|
3122
|
+
*/
|
|
3123
|
+
constructor();
|
|
3124
|
+
/**
|
|
3125
|
+
* Load options for loading the spreadsheet that will be split.
|
|
3126
|
+
*/
|
|
3127
|
+
getLoadOptions() : LowCodeLoadOptions;
|
|
3128
|
+
/**
|
|
3129
|
+
* Load options for loading the spreadsheet that will be split.
|
|
3130
|
+
* @param value - The value to set.
|
|
3131
|
+
*/
|
|
3132
|
+
setLoadOptions(value: LowCodeLoadOptions) : void;
|
|
3133
|
+
/**
|
|
3134
|
+
* Save options for saving the split parts.
|
|
3135
|
+
*/
|
|
3136
|
+
getSaveOptions() : LowCodeSaveOptions;
|
|
3137
|
+
/**
|
|
3138
|
+
* Save options for saving the split parts.
|
|
3139
|
+
* @param value - The value to set.
|
|
3140
|
+
*/
|
|
3141
|
+
setSaveOptions(value: LowCodeSaveOptions) : void;
|
|
3142
|
+
/**
|
|
3143
|
+
* Provider of save options for saving the split parts.
|
|
3144
|
+
*
|
|
3145
|
+
* @remarks
|
|
3146
|
+
* If this property is specified, <see cref="SaveOptions"/> takes no effect
|
|
3147
|
+
* because the output of every split part will be specified by the provider.
|
|
3148
|
+
*/
|
|
3149
|
+
getSaveOptionsProvider() : AbstractLowCodeSaveOptionsProvider;
|
|
3150
|
+
/**
|
|
3151
|
+
* Provider of save options for saving the split parts.
|
|
3152
|
+
* @param value - The value to set.
|
|
3153
|
+
*
|
|
3154
|
+
* @remarks
|
|
3155
|
+
* If this property is specified, <see cref="SaveOptions"/> takes no effect
|
|
3156
|
+
* because the output of every split part will be specified by the provider.
|
|
3157
|
+
*/
|
|
3158
|
+
setSaveOptionsProvider(value: AbstractLowCodeSaveOptionsProvider) : void;
|
|
3159
|
+
/**
|
|
3160
|
+
* Checks whether the implementation object is null.
|
|
3161
|
+
*/
|
|
3162
|
+
isNull() : boolean;
|
|
3163
|
+
}
|
|
3164
|
+
|
|
3165
|
+
/**
|
|
3166
|
+
* Converter for converting template file to pdf.
|
|
3167
|
+
*/
|
|
3168
|
+
export class PdfConverter {
|
|
3169
|
+
/**
|
|
3170
|
+
* Converts given template file to pdf.
|
|
3171
|
+
* @param templateFile - The template file to be converted
|
|
3172
|
+
* @param resultFile - The resultant file, it must be pdf file.
|
|
3173
|
+
*/
|
|
3174
|
+
static process(templateFile: string, resultFile: string) : void;
|
|
3175
|
+
/**
|
|
3176
|
+
* Checks whether the implementation object is null.
|
|
3177
|
+
*/
|
|
3178
|
+
isNull() : boolean;
|
|
3179
|
+
}
|
|
3180
|
+
|
|
3181
|
+
/**
|
|
3182
|
+
* Represents the information of one input/output for multiple inputs/outputs,
|
|
3183
|
+
* such as current page to be rendered when converting spreadsheet to image.
|
|
3184
|
+
*/
|
|
3185
|
+
export class SplitPartInfo {
|
|
3186
|
+
/**
|
|
3187
|
+
* Index of current part in sequence(0 based).
|
|
3188
|
+
* -1 means there are no multiple parts so the result is single.
|
|
3189
|
+
*
|
|
3190
|
+
* @remarks
|
|
3191
|
+
* If multiple sheets need to be processed and every sheet is processed(split)
|
|
3192
|
+
* separately, the part index always starts from 0 for every sheet.
|
|
3193
|
+
* For example, when converting workbook to images,
|
|
3194
|
+
* it represents the output page index of currently processed sheet.
|
|
3195
|
+
* And -1 denotes there is only one page for current sheet.
|
|
3196
|
+
*/
|
|
3197
|
+
getPartIndex() : number;
|
|
3198
|
+
/**
|
|
3199
|
+
* Index of the sheet where current part is in. -1 denotes there is only one sheet.
|
|
3200
|
+
*/
|
|
3201
|
+
getSheetIndex() : number;
|
|
3202
|
+
/**
|
|
3203
|
+
* Name of the sheet where current part is in.
|
|
3204
|
+
*
|
|
3205
|
+
* @remarks
|
|
3206
|
+
* May be null for some situations, such as when rendering the whole workbook to tiff image.
|
|
3207
|
+
*/
|
|
3208
|
+
getSheetName() : string;
|
|
3209
|
+
/**
|
|
3210
|
+
* Checks whether the implementation object is null.
|
|
3211
|
+
*/
|
|
3212
|
+
isNull() : boolean;
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3215
|
+
/**
|
|
3216
|
+
* Converter for conversion between different spreadsheet file formats, such as xls, xlsx, xlsb, spreadsheet ml...
|
|
3217
|
+
*/
|
|
3218
|
+
export class SpreadsheetConverter {
|
|
3219
|
+
/**
|
|
3220
|
+
* Converts given template file between spreadsheet file formats.
|
|
3221
|
+
* @param templateFile - The template file to be converted
|
|
3222
|
+
* @param resultFile - The resultant file
|
|
3223
|
+
*/
|
|
3224
|
+
static process(templateFile: string, resultFile: string) : void;
|
|
3225
|
+
/**
|
|
3226
|
+
* Checks whether the implementation object is null.
|
|
3227
|
+
*/
|
|
3228
|
+
isNull() : boolean;
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
/**
|
|
3232
|
+
* Low code api to lock spreadsheet file.
|
|
3233
|
+
*/
|
|
3234
|
+
export class SpreadsheetLocker {
|
|
3235
|
+
/**
|
|
3236
|
+
* Locks spreadsheet file with specified settings.
|
|
3237
|
+
* @param templateFile - The template file to be locked
|
|
3238
|
+
* @param resultFile - The resultant file
|
|
3239
|
+
* @param openPassword - Password for file encryption
|
|
3240
|
+
* @param writePassword - Password for protection of modifying spreadsheet
|
|
3241
|
+
*/
|
|
3242
|
+
static process(templateFile: string, resultFile: string, openPassword: string, writePassword: string) : void;
|
|
3243
|
+
/**
|
|
3244
|
+
* Checks whether the implementation object is null.
|
|
3245
|
+
*/
|
|
3246
|
+
isNull() : boolean;
|
|
3247
|
+
}
|
|
3248
|
+
|
|
3249
|
+
/**
|
|
3250
|
+
* Merges multiple template files into one.
|
|
3251
|
+
*/
|
|
3252
|
+
export class SpreadsheetMerger {
|
|
3253
|
+
/**
|
|
3254
|
+
* Merge given template files.
|
|
3255
|
+
* @param templateFiles - The template files to be merged
|
|
3256
|
+
* @param resultFile - The resultant file
|
|
3257
|
+
*/
|
|
3258
|
+
static process(templateFiles: string[], resultFile: string) : void;
|
|
3259
|
+
/**
|
|
3260
|
+
* Checks whether the implementation object is null.
|
|
3261
|
+
*/
|
|
3262
|
+
isNull() : boolean;
|
|
3263
|
+
}
|
|
3264
|
+
|
|
3265
|
+
/**
|
|
3266
|
+
* Splits spreadsheet file into multiple parts.
|
|
3267
|
+
*/
|
|
3268
|
+
export class SpreadsheetSplitter {
|
|
3269
|
+
/**
|
|
3270
|
+
* Splits given template file into multiple parts.
|
|
3271
|
+
* @param templateFile - The template file to be split
|
|
3272
|
+
* @param resultFile - The resultant file(name pattern)
|
|
3273
|
+
*
|
|
3274
|
+
* @remarks
|
|
3275
|
+
* The output files will be build from the specified resultant file by
|
|
3276
|
+
* appending sequence number of the sheet and split part.
|
|
3277
|
+
* For example, if the specified output file is Split.xlsx, then the generated
|
|
3278
|
+
* files will be Split_0_0.xlsx, Split_0_1.xlsx, ..., Split_1_0.xlsx, ...
|
|
3279
|
+
*/
|
|
3280
|
+
static process(templateFile: string, resultFile: string) : void;
|
|
3281
|
+
/**
|
|
3282
|
+
* Checks whether the implementation object is null.
|
|
3283
|
+
*/
|
|
3284
|
+
isNull() : boolean;
|
|
3285
|
+
}
|
|
3286
|
+
|
|
3287
|
+
/**
|
|
3288
|
+
* Converter for conversion between text based formats(csv, tsv, dif...) and other spreadsheet file formats.
|
|
3289
|
+
*/
|
|
3290
|
+
export class TextConverter {
|
|
3291
|
+
/**
|
|
3292
|
+
* Converts given template file between text based files and other formats.
|
|
3293
|
+
* @param templateFile - The template file to be converted
|
|
3294
|
+
* @param resultFile - The resultant file
|
|
3295
|
+
*/
|
|
3296
|
+
static process(templateFile: string, resultFile: string) : void;
|
|
3297
|
+
/**
|
|
3298
|
+
* Checks whether the implementation object is null.
|
|
3299
|
+
*/
|
|
3300
|
+
isNull() : boolean;
|
|
3301
|
+
}
|
|
3302
|
+
|
|
2236
3303
|
/**
|
|
2237
3304
|
* Represents the header type of the table in the markdown file.
|
|
2238
3305
|
*/
|
|
@@ -2251,6 +3318,137 @@ export enum MarkdownTableHeaderType {
|
|
|
2251
3318
|
Empty = 2,
|
|
2252
3319
|
}
|
|
2253
3320
|
|
|
3321
|
+
/**
|
|
3322
|
+
* Represents the sensitivity label.
|
|
3323
|
+
*/
|
|
3324
|
+
export class SensitivityLabel {
|
|
3325
|
+
/**
|
|
3326
|
+
* Gets and sets the id of sensitivity label.
|
|
3327
|
+
*/
|
|
3328
|
+
getId() : string;
|
|
3329
|
+
/**
|
|
3330
|
+
* Gets and sets the id of sensitivity label.
|
|
3331
|
+
* @param value - The value to set.
|
|
3332
|
+
*/
|
|
3333
|
+
setId(value: string) : void;
|
|
3334
|
+
/**
|
|
3335
|
+
* Indicates whether the sensitivity label is enabled
|
|
3336
|
+
*/
|
|
3337
|
+
isEnabled() : boolean;
|
|
3338
|
+
/**
|
|
3339
|
+
* Indicates whether the sensitivity label is enabled
|
|
3340
|
+
* @param value - The value to set.
|
|
3341
|
+
*/
|
|
3342
|
+
setIsEnabled(value: boolean) : void;
|
|
3343
|
+
/**
|
|
3344
|
+
* Gets and sets the assignment method for the sensitivity label.
|
|
3345
|
+
*/
|
|
3346
|
+
getAssignmentType() : SensitivityLabelAssignmentType;
|
|
3347
|
+
/**
|
|
3348
|
+
* Gets and sets the assignment method for the sensitivity label.
|
|
3349
|
+
* @param value - The value to set.
|
|
3350
|
+
*/
|
|
3351
|
+
setAssignmentType(value: SensitivityLabelAssignmentType) : void;
|
|
3352
|
+
/**
|
|
3353
|
+
* Represents the Azure Active Directory (Azure AD) site identifier corresponding to the sensitivity label policy which describes the sensitivity label.
|
|
3354
|
+
*/
|
|
3355
|
+
getSiteId() : string;
|
|
3356
|
+
/**
|
|
3357
|
+
* Represents the Azure Active Directory (Azure AD) site identifier corresponding to the sensitivity label policy which describes the sensitivity label.
|
|
3358
|
+
* @param value - The value to set.
|
|
3359
|
+
*/
|
|
3360
|
+
setSiteId(value: string) : void;
|
|
3361
|
+
/**
|
|
3362
|
+
* Gets and sets the types of content marking that ought to be applied to a file.
|
|
3363
|
+
*/
|
|
3364
|
+
getContentMarkType() : SensitivityLabelMarkType;
|
|
3365
|
+
/**
|
|
3366
|
+
* Gets and sets the types of content marking that ought to be applied to a file.
|
|
3367
|
+
* @param value - The value to set.
|
|
3368
|
+
*/
|
|
3369
|
+
setContentMarkType(value: SensitivityLabelMarkType) : void;
|
|
3370
|
+
/**
|
|
3371
|
+
* Indicates whether the sensitivity label was removed.
|
|
3372
|
+
*/
|
|
3373
|
+
isRemoved() : boolean;
|
|
3374
|
+
/**
|
|
3375
|
+
* Indicates whether the sensitivity label was removed.
|
|
3376
|
+
* @param value - The value to set.
|
|
3377
|
+
*/
|
|
3378
|
+
setIsRemoved(value: boolean) : void;
|
|
3379
|
+
/**
|
|
3380
|
+
* Checks whether the implementation object is null.
|
|
3381
|
+
*/
|
|
3382
|
+
isNull() : boolean;
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
/**
|
|
3386
|
+
* Represents the assignment method for the sensitivity label.
|
|
3387
|
+
*/
|
|
3388
|
+
export enum SensitivityLabelAssignmentType {
|
|
3389
|
+
/**
|
|
3390
|
+
* Use for any sensitivity label that was not directly applied by the user.
|
|
3391
|
+
*/
|
|
3392
|
+
Standard = 0,
|
|
3393
|
+
/**
|
|
3394
|
+
* Use for any sensitivity label that was directly applied by the user.
|
|
3395
|
+
*/
|
|
3396
|
+
Privileged = 1,
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
/**
|
|
3400
|
+
* Represents the list of sensitivity labels.
|
|
3401
|
+
*/
|
|
3402
|
+
export class SensitivityLabelCollection {
|
|
3403
|
+
/**
|
|
3404
|
+
* Default Constructor.
|
|
3405
|
+
*/
|
|
3406
|
+
constructor();
|
|
3407
|
+
/**
|
|
3408
|
+
* Adds a sensitivity label.
|
|
3409
|
+
* @param id - The id of the label.
|
|
3410
|
+
* @param isEnabled - Indicates whether this sensitivity label is enabled.
|
|
3411
|
+
* @param methodType - The assignment method type.
|
|
3412
|
+
* @param siteId - The id of the site.
|
|
3413
|
+
* @param markType - The mark type.
|
|
3414
|
+
*/
|
|
3415
|
+
add(id: string, isEnabled: boolean, methodType: SensitivityLabelAssignmentType, siteId: string, markType: SensitivityLabelMarkType) : number;
|
|
3416
|
+
/**
|
|
3417
|
+
* Gets the number of elements contained in.
|
|
3418
|
+
*/
|
|
3419
|
+
getCount() : number;
|
|
3420
|
+
/**
|
|
3421
|
+
* Checks whether the implementation object is null.
|
|
3422
|
+
*/
|
|
3423
|
+
isNull() : boolean;
|
|
3424
|
+
}
|
|
3425
|
+
|
|
3426
|
+
/**
|
|
3427
|
+
* Represents the types of content marking that ought to be applied to a file.
|
|
3428
|
+
*/
|
|
3429
|
+
export enum SensitivityLabelMarkType {
|
|
3430
|
+
/**
|
|
3431
|
+
* None
|
|
3432
|
+
*/
|
|
3433
|
+
None = 0,
|
|
3434
|
+
/**
|
|
3435
|
+
* Header
|
|
3436
|
+
*/
|
|
3437
|
+
Header = 1,
|
|
3438
|
+
/**
|
|
3439
|
+
* Footer
|
|
3440
|
+
*/
|
|
3441
|
+
Footer = 2,
|
|
3442
|
+
/**
|
|
3443
|
+
* Watermark
|
|
3444
|
+
*/
|
|
3445
|
+
Watermark = 4,
|
|
3446
|
+
/**
|
|
3447
|
+
* Encryption
|
|
3448
|
+
*/
|
|
3449
|
+
Encryption = 8,
|
|
3450
|
+
}
|
|
3451
|
+
|
|
2254
3452
|
/**
|
|
2255
3453
|
* Represents a list of pivot area.
|
|
2256
3454
|
*/
|
|
@@ -2577,7 +3775,7 @@ export class CellRichValue {
|
|
|
2577
3775
|
/**
|
|
2578
3776
|
* Gets the image data of the cell.
|
|
2579
3777
|
*/
|
|
2580
|
-
getImage() :
|
|
3778
|
+
getImage() : Uint8Array;
|
|
2581
3779
|
/**
|
|
2582
3780
|
* Gets the alt text associated with the image.
|
|
2583
3781
|
*/
|
|
@@ -4190,7 +5388,7 @@ export class CalculationCell {
|
|
|
4190
5388
|
* @remarks
|
|
4191
5389
|
* User can set the calculated result by this method to ignore the automatic calculation for the cell.
|
|
4192
5390
|
*/
|
|
4193
|
-
setCalculatedValue(v:
|
|
5391
|
+
setCalculatedValue(v: Object) : void;
|
|
4194
5392
|
/**
|
|
4195
5393
|
* Checks whether the implementation object is null.
|
|
4196
5394
|
*/
|
|
@@ -5391,7 +6589,7 @@ export class ThreeDFormat {
|
|
|
5391
6589
|
/**
|
|
5392
6590
|
* @param obj -
|
|
5393
6591
|
*/
|
|
5394
|
-
equals(obj:
|
|
6592
|
+
equals(obj: Object) : boolean;
|
|
5395
6593
|
/**
|
|
5396
6594
|
* Checks whether the implementation object is null.
|
|
5397
6595
|
*/
|
|
@@ -5604,7 +6802,7 @@ export class LineFormat extends FillFormat {
|
|
|
5604
6802
|
* @returns
|
|
5605
6803
|
* true if the value of the obj parameter is the same as the value of this instance; otherwise, false. If obj is null, this method returns false.
|
|
5606
6804
|
*/
|
|
5607
|
-
equals(obj:
|
|
6805
|
+
equals(obj: Object) : boolean;
|
|
5608
6806
|
/**
|
|
5609
6807
|
* Checks whether the implementation object is null.
|
|
5610
6808
|
*/
|
|
@@ -5777,7 +6975,7 @@ export class TextRunEquationNode extends EquationNode {
|
|
|
5777
6975
|
* Determine whether the current equation node is equal to the specified node
|
|
5778
6976
|
* @param obj - The specified node
|
|
5779
6977
|
*/
|
|
5780
|
-
equals(obj:
|
|
6978
|
+
equals(obj: Object) : boolean;
|
|
5781
6979
|
/**
|
|
5782
6980
|
* Checks whether the implementation object is null.
|
|
5783
6981
|
*/
|
|
@@ -5926,7 +7124,7 @@ export class FillFormat {
|
|
|
5926
7124
|
* @remarks
|
|
5927
7125
|
* If the fill format is not custom texture format, returns null.
|
|
5928
7126
|
*/
|
|
5929
|
-
getImageData() :
|
|
7127
|
+
getImageData() : Uint8Array;
|
|
5930
7128
|
/**
|
|
5931
7129
|
* Gets and sets the picture image data.
|
|
5932
7130
|
* @param value - The value to set.
|
|
@@ -5934,7 +7132,7 @@ export class FillFormat {
|
|
|
5934
7132
|
* @remarks
|
|
5935
7133
|
* If the fill format is not custom texture format, returns null.
|
|
5936
7134
|
*/
|
|
5937
|
-
setImageData(value:
|
|
7135
|
+
setImageData(value: Uint8Array) : void;
|
|
5938
7136
|
/**
|
|
5939
7137
|
* Sets the specified fill to a one-color gradient.
|
|
5940
7138
|
* Only applies for Excel 2007.
|
|
@@ -5975,7 +7173,7 @@ export class FillFormat {
|
|
|
5975
7173
|
/**
|
|
5976
7174
|
* @param obj -
|
|
5977
7175
|
*/
|
|
5978
|
-
equals(obj:
|
|
7176
|
+
equals(obj: Object) : boolean;
|
|
5979
7177
|
/**
|
|
5980
7178
|
* Gets the hash code.
|
|
5981
7179
|
*/
|
|
@@ -6289,11 +7487,11 @@ export class MemoryFontSource extends FontSourceBase {
|
|
|
6289
7487
|
* Ctor.
|
|
6290
7488
|
* @param fontData - Binary font data.
|
|
6291
7489
|
*/
|
|
6292
|
-
constructor(fontData:
|
|
7490
|
+
constructor(fontData: Uint8Array);
|
|
6293
7491
|
/**
|
|
6294
7492
|
* Binary font data.
|
|
6295
7493
|
*/
|
|
6296
|
-
getFontData() :
|
|
7494
|
+
getFontData() : Uint8Array;
|
|
6297
7495
|
/**
|
|
6298
7496
|
* Returns the type of the font source.
|
|
6299
7497
|
*/
|
|
@@ -7615,7 +8813,7 @@ export class CalculationData {
|
|
|
7615
8813
|
* by the default calculation engine of Aspose.Cells and then the calculated value will
|
|
7616
8814
|
* be returned(generally it should be #NAME? for user-defined functions).
|
|
7617
8815
|
*/
|
|
7618
|
-
getCalculatedValue() :
|
|
8816
|
+
getCalculatedValue() : Object;
|
|
7619
8817
|
/**
|
|
7620
8818
|
* Gets or sets the calculated value for this function.
|
|
7621
8819
|
* @param value - The value to set.
|
|
@@ -7629,7 +8827,7 @@ export class CalculationData {
|
|
|
7629
8827
|
* by the default calculation engine of Aspose.Cells and then the calculated value will
|
|
7630
8828
|
* be returned(generally it should be #NAME? for user-defined functions).
|
|
7631
8829
|
*/
|
|
7632
|
-
setCalculatedValue(value:
|
|
8830
|
+
setCalculatedValue(value: Object) : void;
|
|
7633
8831
|
/**
|
|
7634
8832
|
* Gets the Workbook object where the function is in.
|
|
7635
8833
|
*/
|
|
@@ -7687,7 +8885,7 @@ export class CalculationData {
|
|
|
7687
8885
|
* then an array(object[][]) will be returned whose items are A1+B1,A2+B2,....
|
|
7688
8886
|
* </p>
|
|
7689
8887
|
*/
|
|
7690
|
-
getParamValue(index: number) :
|
|
8888
|
+
getParamValue(index: number) : Object;
|
|
7691
8889
|
/**
|
|
7692
8890
|
* Gets the value(s) of the parameter at given index.
|
|
7693
8891
|
* If the parameter is some kind of expression that needs to be calculated,
|
|
@@ -7706,7 +8904,7 @@ export class CalculationData {
|
|
|
7706
8904
|
* (such as according to <see cref="Cells.MaxDataRow"/> and <see cref="Cells.MaxDataColumn"/>),
|
|
7707
8905
|
* otherwise the returned large array may increase memory cost with large amount of useless data.
|
|
7708
8906
|
*/
|
|
7709
|
-
getParamValueInArrayMode(index: number, maxRowCount: number, maxColumnCount: number) :
|
|
8907
|
+
getParamValueInArrayMode(index: number, maxRowCount: number, maxColumnCount: number) : Object[][];
|
|
7710
8908
|
/**
|
|
7711
8909
|
* Gets the literal text of the parameter at given index.
|
|
7712
8910
|
* @param index - index of the parameter(0 based)
|
|
@@ -7909,6 +9107,10 @@ export class Cell {
|
|
|
7909
9107
|
* Represents if the specified cell contains formula.
|
|
7910
9108
|
*/
|
|
7911
9109
|
isFormula() : boolean;
|
|
9110
|
+
/**
|
|
9111
|
+
* Checks whether there is custom function(unsupported function) in this cell's formula.
|
|
9112
|
+
*/
|
|
9113
|
+
getHasCustomFunction() : boolean;
|
|
7912
9114
|
/**
|
|
7913
9115
|
* Represents cell value type.
|
|
7914
9116
|
*/
|
|
@@ -8056,7 +9258,7 @@ export class Cell {
|
|
|
8056
9258
|
* For int value, it may be returned as an Integer object or a Double object.
|
|
8057
9259
|
* And there is no guarantee that the returned value will be kept as the same type of object always.
|
|
8058
9260
|
*/
|
|
8059
|
-
getValue() :
|
|
9261
|
+
getValue() : Object;
|
|
8060
9262
|
/**
|
|
8061
9263
|
* Gets/sets the value contained in this cell.
|
|
8062
9264
|
* @param value - The value to set.
|
|
@@ -8072,7 +9274,7 @@ export class Cell {
|
|
|
8072
9274
|
* For int value, it may be returned as an Integer object or a Double object.
|
|
8073
9275
|
* And there is no guarantee that the returned value will be kept as the same type of object always.
|
|
8074
9276
|
*/
|
|
8075
|
-
setValue(value:
|
|
9277
|
+
setValue(value: Object) : void;
|
|
8076
9278
|
/**
|
|
8077
9279
|
* Indicates if the cell's style is set. If return false, it means this cell has a default cell format.
|
|
8078
9280
|
*/
|
|
@@ -8109,12 +9311,12 @@ export class Cell {
|
|
|
8109
9311
|
/**
|
|
8110
9312
|
* Gets and sets the embeddedn image in the cell.
|
|
8111
9313
|
*/
|
|
8112
|
-
getEmbeddedImage() :
|
|
9314
|
+
getEmbeddedImage() : Uint8Array;
|
|
8113
9315
|
/**
|
|
8114
9316
|
* Gets and sets the embeddedn image in the cell.
|
|
8115
9317
|
* @param value - The value to set.
|
|
8116
9318
|
*/
|
|
8117
|
-
setEmbeddedImage(value:
|
|
9319
|
+
setEmbeddedImage(value: Uint8Array) : void;
|
|
8118
9320
|
/**
|
|
8119
9321
|
* Calculates the formula of the cell.
|
|
8120
9322
|
* @param options - Options for calculation
|
|
@@ -8169,7 +9371,7 @@ export class Cell {
|
|
|
8169
9371
|
* Puts an object value into the cell.
|
|
8170
9372
|
* @param objectValue - input value
|
|
8171
9373
|
*/
|
|
8172
|
-
putValue(objectValue:
|
|
9374
|
+
putValue(objectValue: Object) : void;
|
|
8173
9375
|
/**
|
|
8174
9376
|
* Gets the string value by specific formatted strategy.
|
|
8175
9377
|
* @param formatStrategy - The formatted strategy.
|
|
@@ -8218,25 +9420,25 @@ export class Cell {
|
|
|
8218
9420
|
* @remarks
|
|
8219
9421
|
* If this cell is also affected by other settings such as conditional formatting, list objects, etc.,
|
|
8220
9422
|
* then the display style may be different from <see cref="GetStyle()"/>.
|
|
8221
|
-
* <br>For flags of adjusting borders according to adjacent cells,
|
|
9423
|
+
* <br></br>For flags of adjusting borders according to adjacent cells,
|
|
8222
9424
|
* <see cref="BorderType.TopBorder"/>/<see cref="BorderType.BottomBorder"/>
|
|
8223
9425
|
* <see cref="BorderType.LeftBorder"/>/<see cref="BorderType.RightBorder"/>
|
|
8224
9426
|
* denote whether check and combine the bottom/top/right/left borders of
|
|
8225
|
-
* the left/right/top/bottom cells adjacent to this one
|
|
8226
|
-
* <br>For performance and compatibility consideration,
|
|
8227
|
-
* some enums are used to denote some special operations
|
|
8228
|
-
* <br><see cref="BorderType.Horizontal"/>/<see cref="BorderType.Vertical"/>
|
|
8229
|
-
* denote whether check and combine the bottom/right border of merged cells to this one
|
|
8230
|
-
* <br><see cref="BorderType.Diagonal"/>(that is, both <see cref="StyleModifyFlag.DiagonalUpBorder"/> and
|
|
9427
|
+
* the left/right/top/bottom cells adjacent to this one.
|
|
9428
|
+
* <br></br>For performance and compatibility consideration,
|
|
9429
|
+
* some enums are used to denote some special operations:
|
|
9430
|
+
* <br></br><see cref="BorderType.Horizontal"/>/<see cref="BorderType.Vertical"/>
|
|
9431
|
+
* denote whether check and combine the bottom/right border of merged cells to this one.
|
|
9432
|
+
* <br></br><see cref="BorderType.Diagonal"/>(that is, both <see cref="StyleModifyFlag.DiagonalUpBorder"/> and
|
|
8231
9433
|
* <see cref="StyleModifyFlag.DiagonalDownBorder"/> have been set) denotes check and combine borders
|
|
8232
|
-
* from the display style of adjacent cells
|
|
8233
|
-
* <br>Please note, checking borders/styles of adjacent cells, especially the display styles,
|
|
9434
|
+
* from the display style of adjacent cells.
|
|
9435
|
+
* <br></br>Please note, checking borders/styles of adjacent cells, especially the display styles,
|
|
8234
9436
|
* is time-consumed process. If there is no need to get the borders for the returned style,
|
|
8235
9437
|
* using <see cref="BorderType.None"/> to disable the process of adjacent cells
|
|
8236
9438
|
* will give better performance.
|
|
8237
9439
|
* When getting borders of adjacent cells from styles defined on those cells only(without setting
|
|
8238
9440
|
* <see cref="BorderType.Diagonal"/>), the performance also may be better because checking
|
|
8239
|
-
* the display style of one cell is time-consumed too
|
|
9441
|
+
* the display style of one cell is time-consumed too.
|
|
8240
9442
|
*/
|
|
8241
9443
|
getDisplayStyle(adjacentBorders: BorderType) : Style;
|
|
8242
9444
|
/**
|
|
@@ -8289,7 +9491,7 @@ export class Cell {
|
|
|
8289
9491
|
* @param formula - The formula.
|
|
8290
9492
|
* @param value - The value(calculated result) of the formula.
|
|
8291
9493
|
*/
|
|
8292
|
-
setFormula(formula: string, value:
|
|
9494
|
+
setFormula(formula: string, value: Object) : void;
|
|
8293
9495
|
/**
|
|
8294
9496
|
* Set the formula and the value(calculated result) of the formula.
|
|
8295
9497
|
* @param formula - The formula.
|
|
@@ -8302,7 +9504,7 @@ export class Cell {
|
|
|
8302
9504
|
* @param options - Options for parsing the formula.
|
|
8303
9505
|
* @param value - The value(calculated result) of the formula.
|
|
8304
9506
|
*/
|
|
8305
|
-
setFormula(formula: string, options: FormulaParseOptions, value:
|
|
9507
|
+
setFormula(formula: string, options: FormulaParseOptions, value: Object) : void;
|
|
8306
9508
|
/**
|
|
8307
9509
|
* Get the formula of this cell.
|
|
8308
9510
|
* @param isR1C1 - Whether the formula needs to be formatted as R1C1.
|
|
@@ -8334,7 +9536,7 @@ export class Cell {
|
|
|
8334
9536
|
* @param options - Options for parsing the formula.
|
|
8335
9537
|
* @param values - values for those cells with given array formula
|
|
8336
9538
|
*/
|
|
8337
|
-
setArrayFormula(arrayFormula: string, rowNumber: number, columnNumber: number, options: FormulaParseOptions, values:
|
|
9539
|
+
setArrayFormula(arrayFormula: string, rowNumber: number, columnNumber: number, options: FormulaParseOptions, values: Object[][]) : void;
|
|
8338
9540
|
/**
|
|
8339
9541
|
* Sets shared formulas to a range of cells.
|
|
8340
9542
|
* @param sharedFormula - Shared formula.
|
|
@@ -8360,7 +9562,7 @@ export class Cell {
|
|
|
8360
9562
|
* @param options - Options for parsing the formula.
|
|
8361
9563
|
* @param values - values for those cells with given shared formula
|
|
8362
9564
|
*/
|
|
8363
|
-
setSharedFormula(sharedFormula: string, rowNumber: number, columnNumber: number, options: FormulaParseOptions, values:
|
|
9565
|
+
setSharedFormula(sharedFormula: string, rowNumber: number, columnNumber: number, options: FormulaParseOptions, values: Object[][]) : void;
|
|
8364
9566
|
/**
|
|
8365
9567
|
* Gets all references appearing in this cell's formula.
|
|
8366
9568
|
* @returns
|
|
@@ -8457,7 +9659,7 @@ export class Cell {
|
|
|
8457
9659
|
* If there are non-empty cells in the range, the formula will be set for current cell only and marked as "#SPILL!".
|
|
8458
9660
|
* But for such kind of situation we still return the whole range that this formula should spill into.
|
|
8459
9661
|
*/
|
|
8460
|
-
setDynamicArrayFormula(arrayFormula: string, options: FormulaParseOptions, values:
|
|
9662
|
+
setDynamicArrayFormula(arrayFormula: string, options: FormulaParseOptions, values: Object[][], calculateRange: boolean, calculateValue: boolean) : CellArea;
|
|
8461
9663
|
/**
|
|
8462
9664
|
* Sets dynamic array formula and make the formula spill into neighboring cells if possible.
|
|
8463
9665
|
* @param arrayFormula - the formula expression
|
|
@@ -8474,7 +9676,7 @@ export class Cell {
|
|
|
8474
9676
|
* If there are non-empty cells in the range, the formula will be set for current cell only and marked as "#SPILL!".
|
|
8475
9677
|
* But for such kind of situation we still return the whole range that this formula should spill into.
|
|
8476
9678
|
*/
|
|
8477
|
-
setDynamicArrayFormula(arrayFormula: string, options: FormulaParseOptions, values:
|
|
9679
|
+
setDynamicArrayFormula(arrayFormula: string, options: FormulaParseOptions, values: Object[][], calculateRange: boolean, calculateValue: boolean, copts: CalculationOptions) : CellArea;
|
|
8478
9680
|
/**
|
|
8479
9681
|
* Create two-variable data table for given range starting from this cell.
|
|
8480
9682
|
* @param rowNumber - Number of rows to populate the formula.
|
|
@@ -8483,7 +9685,7 @@ export class Cell {
|
|
|
8483
9685
|
* @param columnInputCell - the column input cell
|
|
8484
9686
|
* @param values - values for cells in table formula range
|
|
8485
9687
|
*/
|
|
8486
|
-
setTableFormula(rowNumber: number, columnNumber: number, rowInputCell: string, columnInputCell: string, values:
|
|
9688
|
+
setTableFormula(rowNumber: number, columnNumber: number, rowInputCell: string, columnInputCell: string, values: Object[][]) : void;
|
|
8487
9689
|
/**
|
|
8488
9690
|
* Create one-variable data table for given range starting from this cell.
|
|
8489
9691
|
* @param rowNumber - Number of rows to populate the formula.
|
|
@@ -8492,7 +9694,7 @@ export class Cell {
|
|
|
8492
9694
|
* @param isRowInput - Indicates whether the input cell is a row input cell(true) or a column input cell(false).
|
|
8493
9695
|
* @param values - values for cells in table formula range
|
|
8494
9696
|
*/
|
|
8495
|
-
setTableFormula(rowNumber: number, columnNumber: number, inputCell: string, isRowInput: boolean, values:
|
|
9697
|
+
setTableFormula(rowNumber: number, columnNumber: number, inputCell: string, isRowInput: boolean, values: Object[][]) : void;
|
|
8496
9698
|
/**
|
|
8497
9699
|
* Create two-variable data table for given range starting from this cell.
|
|
8498
9700
|
* @param rowNumber - Number of rows to populate the formula.
|
|
@@ -8503,7 +9705,7 @@ export class Cell {
|
|
|
8503
9705
|
* @param columnIndexOfColumnInputCell - column index of the column input cell
|
|
8504
9706
|
* @param values - values for cells in table formula range
|
|
8505
9707
|
*/
|
|
8506
|
-
setTableFormula(rowNumber: number, columnNumber: number, rowIndexOfRowInputCell: number, columnIndexOfRowInputCell: number, rowIndexOfColumnInputCell: number, columnIndexOfColumnInputCell: number, values:
|
|
9708
|
+
setTableFormula(rowNumber: number, columnNumber: number, rowIndexOfRowInputCell: number, columnIndexOfRowInputCell: number, rowIndexOfColumnInputCell: number, columnIndexOfColumnInputCell: number, values: Object[][]) : void;
|
|
8507
9709
|
/**
|
|
8508
9710
|
* Create one-variable data table for given range starting from this cell.
|
|
8509
9711
|
* @param rowNumber - Number of rows to populate the formula.
|
|
@@ -8513,7 +9715,7 @@ export class Cell {
|
|
|
8513
9715
|
* @param isRowInput - Indicates whether the input cell is a row input cell(true) or a column input cell(false).
|
|
8514
9716
|
* @param values - values for cells in table formula range
|
|
8515
9717
|
*/
|
|
8516
|
-
setTableFormula(rowNumber: number, columnNumber: number, rowIndexOfInputCell: number, columnIndexOfInputCell: number, isRowInput: boolean, values:
|
|
9718
|
+
setTableFormula(rowNumber: number, columnNumber: number, rowIndexOfInputCell: number, columnIndexOfInputCell: number, isRowInput: boolean, values: Object[][]) : void;
|
|
8517
9719
|
/**
|
|
8518
9720
|
* Remove array formula.
|
|
8519
9721
|
* @param leaveNormalFormula - True represents converting the array formula to normal formula.
|
|
@@ -8598,7 +9800,7 @@ export class Cell {
|
|
|
8598
9800
|
* @returns
|
|
8599
9801
|
* true if two objects refers to the same cell.
|
|
8600
9802
|
*/
|
|
8601
|
-
equals(obj:
|
|
9803
|
+
equals(obj: Object) : boolean;
|
|
8602
9804
|
/**
|
|
8603
9805
|
* Checks whether this object refers to the same cell with another cell object.
|
|
8604
9806
|
* @param cell - another cell object
|
|
@@ -9791,7 +10993,7 @@ export class Cells {
|
|
|
9791
10993
|
* @remarks
|
|
9792
10994
|
* Returns null (Nothing) if no cell is found.
|
|
9793
10995
|
*/
|
|
9794
|
-
find(what:
|
|
10996
|
+
find(what: Object, previousCell: Cell) : Cell;
|
|
9795
10997
|
/**
|
|
9796
10998
|
* Finds the cell containing with the input object.
|
|
9797
10999
|
* @param what - The object to search for. /// The type should be int,double,DateTime,string,bool.
|
|
@@ -9803,7 +11005,7 @@ export class Cells {
|
|
|
9803
11005
|
* @remarks
|
|
9804
11006
|
* Returns null (Nothing) if no cell is found.
|
|
9805
11007
|
*/
|
|
9806
|
-
find(what:
|
|
11008
|
+
find(what: Object, previousCell: Cell, findOptions: FindOptions) : Cell;
|
|
9807
11009
|
/**
|
|
9808
11010
|
* Gets the last cell in this row.
|
|
9809
11011
|
* @param rowIndex - Row index.
|
|
@@ -9892,7 +11094,7 @@ export class Cells {
|
|
|
9892
11094
|
* @returns
|
|
9893
11095
|
* Exported cell value array object.
|
|
9894
11096
|
*/
|
|
9895
|
-
exportArray(firstRow: number, firstColumn: number, totalRows: number, totalColumns: number) :
|
|
11097
|
+
exportArray(firstRow: number, firstColumn: number, totalRows: number, totalColumns: number) : Object[][];
|
|
9896
11098
|
/**
|
|
9897
11099
|
* Retrieves subtotals setting of the range.
|
|
9898
11100
|
* @param ca - The range
|
|
@@ -10458,12 +11660,12 @@ export class OdsPageBackground {
|
|
|
10458
11660
|
/**
|
|
10459
11661
|
* Gets and sets the graphic data.
|
|
10460
11662
|
*/
|
|
10461
|
-
getGraphicData() :
|
|
11663
|
+
getGraphicData() : Uint8Array;
|
|
10462
11664
|
/**
|
|
10463
11665
|
* Gets and sets the graphic data.
|
|
10464
11666
|
* @param value - The value to set.
|
|
10465
11667
|
*/
|
|
10466
|
-
setGraphicData(value:
|
|
11668
|
+
setGraphicData(value: Uint8Array) : void;
|
|
10467
11669
|
/**
|
|
10468
11670
|
* Checks whether the implementation object is null.
|
|
10469
11671
|
*/
|
|
@@ -10934,6 +12136,11 @@ export class PowerQueryFormulaCollection {
|
|
|
10934
12136
|
* @param name - The name of the item.
|
|
10935
12137
|
*/
|
|
10936
12138
|
get(name: string) : PowerQueryFormula;
|
|
12139
|
+
/**
|
|
12140
|
+
* Remove power query formula by name.
|
|
12141
|
+
* @param name - The name of power query formula.
|
|
12142
|
+
*/
|
|
12143
|
+
removeBy(name: string) : void;
|
|
10937
12144
|
/**
|
|
10938
12145
|
* Gets the number of elements contained in.
|
|
10939
12146
|
*/
|
|
@@ -11176,7 +12383,7 @@ export class Range {
|
|
|
11176
12383
|
* @remarks
|
|
11177
12384
|
* If the range contains multiple cells, the returned/applied object should be a two-dimension <see cref="Array"/> object.
|
|
11178
12385
|
*/
|
|
11179
|
-
getValue() :
|
|
12386
|
+
getValue() : Object;
|
|
11180
12387
|
/**
|
|
11181
12388
|
* Gets and sets the value of the range.
|
|
11182
12389
|
* @param value - The value to set.
|
|
@@ -11184,7 +12391,7 @@ export class Range {
|
|
|
11184
12391
|
* @remarks
|
|
11185
12392
|
* If the range contains multiple cells, the returned/applied object should be a two-dimension <see cref="Array"/> object.
|
|
11186
12393
|
*/
|
|
11187
|
-
setValue(value:
|
|
12394
|
+
setValue(value: Object) : void;
|
|
11188
12395
|
/**
|
|
11189
12396
|
* Sets or gets the column width of this range
|
|
11190
12397
|
*/
|
|
@@ -11432,7 +12639,7 @@ export class Range {
|
|
|
11432
12639
|
* Converts the range to image.
|
|
11433
12640
|
* @param options - The options for converting this range to image
|
|
11434
12641
|
*/
|
|
11435
|
-
toImage(options: ImageOrPrintOptions) :
|
|
12642
|
+
toImage(options: ImageOrPrintOptions) : Uint8Array;
|
|
11436
12643
|
/**
|
|
11437
12644
|
* Convert the range to JSON value.
|
|
11438
12645
|
* @param options - The options of converting
|
|
@@ -11442,7 +12649,7 @@ export class Range {
|
|
|
11442
12649
|
* Convert the range to html .
|
|
11443
12650
|
* @param saveOptions - Options for coverting range to html.
|
|
11444
12651
|
*/
|
|
11445
|
-
toHtml(saveOptions: HtmlSaveOptions) :
|
|
12652
|
+
toHtml(saveOptions: HtmlSaveOptions) : Uint8Array;
|
|
11446
12653
|
/**
|
|
11447
12654
|
* Checks whether the implementation object is null.
|
|
11448
12655
|
*/
|
|
@@ -11700,7 +12907,7 @@ export class Row {
|
|
|
11700
12907
|
* @returns
|
|
11701
12908
|
* true if two objects refers to the same row.
|
|
11702
12909
|
*/
|
|
11703
|
-
equals(obj:
|
|
12910
|
+
equals(obj: Object) : boolean;
|
|
11704
12911
|
/**
|
|
11705
12912
|
* Checks whether this object refers to the same row with another row object.
|
|
11706
12913
|
* @param row - another row object
|
|
@@ -11732,6 +12939,15 @@ export class DocxSaveOptions extends PaginatedSaveOptions {
|
|
|
11732
12939
|
* @param saveAsImage - If True, the workbook will be converted into some pictures of .docx file. ///If False, the workbook will be converted into some tables of .docx file.
|
|
11733
12940
|
*/
|
|
11734
12941
|
constructor(saveAsImage: boolean);
|
|
12942
|
+
/**
|
|
12943
|
+
* Save all drawing objecgts as editable shapes in word file.So you can edit them in Word.
|
|
12944
|
+
*/
|
|
12945
|
+
getSaveAsEditableShaps() : boolean;
|
|
12946
|
+
/**
|
|
12947
|
+
* Save all drawing objecgts as editable shapes in word file.So you can edit them in Word.
|
|
12948
|
+
* @param value - The value to set.
|
|
12949
|
+
*/
|
|
12950
|
+
setSaveAsEditableShaps(value: boolean) : void;
|
|
11735
12951
|
/**
|
|
11736
12952
|
* Checks whether the implementation object is null.
|
|
11737
12953
|
*/
|
|
@@ -12030,12 +13246,12 @@ export class UnionRange {
|
|
|
12030
13246
|
/**
|
|
12031
13247
|
* Gets and sets the values of the range.
|
|
12032
13248
|
*/
|
|
12033
|
-
getValue() :
|
|
13249
|
+
getValue() : Object;
|
|
12034
13250
|
/**
|
|
12035
13251
|
* Gets and sets the values of the range.
|
|
12036
13252
|
* @param value - The value to set.
|
|
12037
13253
|
*/
|
|
12038
|
-
setValue(value:
|
|
13254
|
+
setValue(value: Object) : void;
|
|
12039
13255
|
/**
|
|
12040
13256
|
* Gets or sets the name of the range.
|
|
12041
13257
|
*
|
|
@@ -13013,6 +14229,11 @@ export class Workbook {
|
|
|
13013
14229
|
* @param value - The value to set.
|
|
13014
14230
|
*/
|
|
13015
14231
|
setFileFormat(value: FileFormatType) : void;
|
|
14232
|
+
/**
|
|
14233
|
+
* Detects whether there is custom function used in this workbook,
|
|
14234
|
+
* such as in cell's formula, in defined names...
|
|
14235
|
+
*/
|
|
14236
|
+
getHasCustomFunction() : boolean;
|
|
13016
14237
|
/**
|
|
13017
14238
|
* Gets and sets the interrupt monitor.
|
|
13018
14239
|
*/
|
|
@@ -13246,13 +14467,13 @@ export class Workbook {
|
|
|
13246
14467
|
* @param boolValue - The boolean value to be replaced.
|
|
13247
14468
|
* @param newValue - New value. Can be string, integer, double or DateTime value.
|
|
13248
14469
|
*/
|
|
13249
|
-
replace(boolValue: boolean, newValue:
|
|
14470
|
+
replace(boolValue: boolean, newValue: Object) : number;
|
|
13250
14471
|
/**
|
|
13251
14472
|
* Replaces cells' values with new data.
|
|
13252
14473
|
* @param intValue - The integer value to be replaced.
|
|
13253
14474
|
* @param newValue - New value. Can be string, integer, double or DateTime value.
|
|
13254
14475
|
*/
|
|
13255
|
-
replace(intValue: number, newValue:
|
|
14476
|
+
replace(intValue: number, newValue: Object) : number;
|
|
13256
14477
|
/**
|
|
13257
14478
|
* Replaces a cell's value with a new string.
|
|
13258
14479
|
* @param placeHolder - Cell placeholder
|
|
@@ -14755,7 +15976,7 @@ export class WorksheetCollection {
|
|
|
14755
15976
|
* @remarks
|
|
14756
15977
|
* Null means no ole size setting.
|
|
14757
15978
|
*/
|
|
14758
|
-
getOleSize() :
|
|
15979
|
+
getOleSize() : Object;
|
|
14759
15980
|
/**
|
|
14760
15981
|
* Gets and Sets displayed size when Workbook file is used as an Ole object.
|
|
14761
15982
|
* @param value - The value to set.
|
|
@@ -14763,7 +15984,7 @@ export class WorksheetCollection {
|
|
|
14763
15984
|
* @remarks
|
|
14764
15985
|
* Null means no ole size setting.
|
|
14765
15986
|
*/
|
|
14766
|
-
setOleSize(value:
|
|
15987
|
+
setOleSize(value: Object) : void;
|
|
14767
15988
|
/**
|
|
14768
15989
|
* Represents external links in a workbook.
|
|
14769
15990
|
*/
|
|
@@ -14776,6 +15997,10 @@ export class WorksheetCollection {
|
|
|
14776
15997
|
* Represents revision logs.
|
|
14777
15998
|
*/
|
|
14778
15999
|
getRevisionLogs() : RevisionLogCollection;
|
|
16000
|
+
/**
|
|
16001
|
+
* Represents all sensitivity labels.
|
|
16002
|
+
*/
|
|
16003
|
+
getSensitivityLabels() : SensitivityLabelCollection;
|
|
14779
16004
|
/**
|
|
14780
16005
|
* Creates a <see cref="Range"/> object from an address of the range.
|
|
14781
16006
|
* @param address - The address of the range.
|
|
@@ -15015,10 +16240,6 @@ export class Worksheet {
|
|
|
15015
16240
|
* Gets <see cref="QueryTableCollection"/> in the worksheet.
|
|
15016
16241
|
*/
|
|
15017
16242
|
getQueryTables() : QueryTableCollection;
|
|
15018
|
-
/**
|
|
15019
|
-
* Gets all pivot tables in this worksheet.
|
|
15020
|
-
*/
|
|
15021
|
-
getPivotTables() : PivotTableCollection;
|
|
15022
16243
|
/**
|
|
15023
16244
|
* Represents worksheet type.
|
|
15024
16245
|
*/
|
|
@@ -15116,6 +16337,10 @@ export class Worksheet {
|
|
|
15116
16337
|
* @param value - The value to set.
|
|
15117
16338
|
*/
|
|
15118
16339
|
setIsSelected(value: boolean) : void;
|
|
16340
|
+
/**
|
|
16341
|
+
* Gets all pivot tables in this worksheet.
|
|
16342
|
+
*/
|
|
16343
|
+
getPivotTables() : PivotTableCollection;
|
|
15119
16344
|
/**
|
|
15120
16345
|
* Gets all ListObjects in this worksheet.
|
|
15121
16346
|
*/
|
|
@@ -15330,6 +16555,15 @@ export class Worksheet {
|
|
|
15330
16555
|
* If you save file as Excel97 or Excel2000 format, it will be omitted.
|
|
15331
16556
|
*/
|
|
15332
16557
|
setTabColor(value: Color) : void;
|
|
16558
|
+
/**
|
|
16559
|
+
* Gets and sets the color of gridline
|
|
16560
|
+
*/
|
|
16561
|
+
getGridlineColor() : Color;
|
|
16562
|
+
/**
|
|
16563
|
+
* Gets and sets the color of gridline
|
|
16564
|
+
* @param value - The value to set.
|
|
16565
|
+
*/
|
|
16566
|
+
setGridlineColor(value: Color) : void;
|
|
15333
16567
|
/**
|
|
15334
16568
|
* Gets worksheet code name.
|
|
15335
16569
|
*/
|
|
@@ -15342,12 +16576,12 @@ export class Worksheet {
|
|
|
15342
16576
|
/**
|
|
15343
16577
|
* Gets and sets worksheet background image.
|
|
15344
16578
|
*/
|
|
15345
|
-
getBackgroundImage() :
|
|
16579
|
+
getBackgroundImage() : Uint8Array;
|
|
15346
16580
|
/**
|
|
15347
16581
|
* Gets and sets worksheet background image.
|
|
15348
16582
|
* @param value - The value to set.
|
|
15349
16583
|
*/
|
|
15350
|
-
setBackgroundImage(value:
|
|
16584
|
+
setBackgroundImage(value: Uint8Array) : void;
|
|
15351
16585
|
/**
|
|
15352
16586
|
* Gets the ConditionalFormattings in the worksheet.
|
|
15353
16587
|
*/
|
|
@@ -15806,6 +17040,12 @@ export class Worksheet {
|
|
|
15806
17040
|
* @param newString - New string value.
|
|
15807
17041
|
*/
|
|
15808
17042
|
replace(oldString: string, newString: string) : number;
|
|
17043
|
+
/**
|
|
17044
|
+
* Gets selected ranges of cells in the designer spreadsheet.
|
|
17045
|
+
* @returns
|
|
17046
|
+
* Returns all selected ranges.
|
|
17047
|
+
*/
|
|
17048
|
+
getSelectedAreas() : Range[];
|
|
15809
17049
|
/**
|
|
15810
17050
|
* Gets automatic page breaks.
|
|
15811
17051
|
* @param options - The print options
|
|
@@ -15850,7 +17090,7 @@ export class Worksheet {
|
|
|
15850
17090
|
* @returns
|
|
15851
17091
|
* Calculated formula result.
|
|
15852
17092
|
*/
|
|
15853
|
-
calculateFormula(formula: string) :
|
|
17093
|
+
calculateFormula(formula: string) : Object;
|
|
15854
17094
|
/**
|
|
15855
17095
|
* Calculates a formula expression directly.
|
|
15856
17096
|
* @param formula - Formula to be calculated.
|
|
@@ -15865,7 +17105,7 @@ export class Worksheet {
|
|
|
15865
17105
|
* If you need the formula be calculated as an array formula and to get an array for the calculated result,
|
|
15866
17106
|
* please use <see cref="CalculateArrayFormula(string, CalculationOptions)"/> instead.
|
|
15867
17107
|
*/
|
|
15868
|
-
calculateFormula(formula: string, opts: CalculationOptions) :
|
|
17108
|
+
calculateFormula(formula: string, opts: CalculationOptions) : Object;
|
|
15869
17109
|
/**
|
|
15870
17110
|
* Calculates a formula expression directly.
|
|
15871
17111
|
* @param formula - Formula to be calculated.
|
|
@@ -15884,7 +17124,7 @@ export class Worksheet {
|
|
|
15884
17124
|
* and to get an array for the calculated result, please use
|
|
15885
17125
|
* <see cref="CalculateArrayFormula(string, FormulaParseOptions, CalculationOptions, int, int, int, int, CalculationData)"/> instead.
|
|
15886
17126
|
*/
|
|
15887
|
-
calculateFormula(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, calculationData: CalculationData) :
|
|
17127
|
+
calculateFormula(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, calculationData: CalculationData) : Object;
|
|
15888
17128
|
/**
|
|
15889
17129
|
* Calculates all formulas in this worksheet.
|
|
15890
17130
|
* @param options - Options for calculation
|
|
@@ -15897,7 +17137,7 @@ export class Worksheet {
|
|
|
15897
17137
|
* @returns
|
|
15898
17138
|
* Calculated formula result.
|
|
15899
17139
|
*/
|
|
15900
|
-
calculateFormulaAsync(formula: string) : Promise<
|
|
17140
|
+
calculateFormulaAsync(formula: string) : Promise<Object>;
|
|
15901
17141
|
/**
|
|
15902
17142
|
* Calculates a formula expression directly.
|
|
15903
17143
|
* @param formula - Formula to be calculated.
|
|
@@ -15912,7 +17152,7 @@ export class Worksheet {
|
|
|
15912
17152
|
* If you need the formula be calculated as an array formula and to get an array for the calculated result,
|
|
15913
17153
|
* please use <see cref="CalculateArrayFormula(string, CalculationOptions)"/> instead.
|
|
15914
17154
|
*/
|
|
15915
|
-
calculateFormulaAsync(formula: string, opts: CalculationOptions) : Promise<
|
|
17155
|
+
calculateFormulaAsync(formula: string, opts: CalculationOptions) : Promise<Object>;
|
|
15916
17156
|
/**
|
|
15917
17157
|
* Calculates a formula expression directly.
|
|
15918
17158
|
* @param formula - Formula to be calculated.
|
|
@@ -15931,7 +17171,7 @@ export class Worksheet {
|
|
|
15931
17171
|
* and to get an array for the calculated result, please use
|
|
15932
17172
|
* <see cref="CalculateArrayFormula(string, FormulaParseOptions, CalculationOptions, int, int, int, int, CalculationData)"/> instead.
|
|
15933
17173
|
*/
|
|
15934
|
-
calculateFormulaAsync(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, calculationData: CalculationData) : Promise<
|
|
17174
|
+
calculateFormulaAsync(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, calculationData: CalculationData) : Promise<Object>;
|
|
15935
17175
|
/**
|
|
15936
17176
|
* Calculates all formulas in this worksheet.
|
|
15937
17177
|
* @param options - Options for calculation
|
|
@@ -15943,7 +17183,7 @@ export class Worksheet {
|
|
|
15943
17183
|
* @param formula - Formula to be calculated.
|
|
15944
17184
|
* @param opts - Options for calculating formula
|
|
15945
17185
|
*/
|
|
15946
|
-
calculateArrayFormula(formula: string, opts: CalculationOptions) :
|
|
17186
|
+
calculateArrayFormula(formula: string, opts: CalculationOptions) : Object[][];
|
|
15947
17187
|
/**
|
|
15948
17188
|
* Calculates a formula as array formula.
|
|
15949
17189
|
* @param formula - Formula to be calculated.
|
|
@@ -15959,7 +17199,7 @@ export class Worksheet {
|
|
|
15959
17199
|
* (for example, the calculated result may correspond to a whole row or column data)
|
|
15960
17200
|
* but user does not need so large an array according to business requirement or for performance consideration.
|
|
15961
17201
|
*/
|
|
15962
|
-
calculateArrayFormula(formula: string, opts: CalculationOptions, maxRowCount: number, maxColumnCount: number) :
|
|
17202
|
+
calculateArrayFormula(formula: string, opts: CalculationOptions, maxRowCount: number, maxColumnCount: number) : Object[][];
|
|
15963
17203
|
/**
|
|
15964
17204
|
* Calculates a formula as array formula.
|
|
15965
17205
|
* @param formula - Formula to be calculated.
|
|
@@ -15979,13 +17219,13 @@ export class Worksheet {
|
|
|
15979
17219
|
* (for example, the calculated result may correspond to a whole row or column data)
|
|
15980
17220
|
* but user does not need so large an array according to business requirement or for performance consideration.
|
|
15981
17221
|
*/
|
|
15982
|
-
calculateArrayFormula(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, maxRowCount: number, maxColumnCount: number, calculationData: CalculationData) :
|
|
17222
|
+
calculateArrayFormula(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, maxRowCount: number, maxColumnCount: number, calculationData: CalculationData) : Object[][];
|
|
15983
17223
|
/**
|
|
15984
17224
|
* Calculates a formula as array formula.
|
|
15985
17225
|
* @param formula - Formula to be calculated.
|
|
15986
17226
|
* @param opts - Options for calculating formula
|
|
15987
17227
|
*/
|
|
15988
|
-
calculateArrayFormulaAsync(formula: string, opts: CalculationOptions) : Promise<
|
|
17228
|
+
calculateArrayFormulaAsync(formula: string, opts: CalculationOptions) : Promise<Object[][]>;
|
|
15989
17229
|
/**
|
|
15990
17230
|
* Calculates a formula as array formula.
|
|
15991
17231
|
* @param formula - Formula to be calculated.
|
|
@@ -16001,7 +17241,7 @@ export class Worksheet {
|
|
|
16001
17241
|
* (for example, the calculated result may correspond to a whole row or column data)
|
|
16002
17242
|
* but user does not need so large an array according to business requirement or for performance consideration.
|
|
16003
17243
|
*/
|
|
16004
|
-
calculateArrayFormulaAsync(formula: string, opts: CalculationOptions, maxRowCount: number, maxColumnCount: number) : Promise<
|
|
17244
|
+
calculateArrayFormulaAsync(formula: string, opts: CalculationOptions, maxRowCount: number, maxColumnCount: number) : Promise<Object[][]>;
|
|
16005
17245
|
/**
|
|
16006
17246
|
* Calculates a formula as array formula.
|
|
16007
17247
|
* @param formula - Formula to be calculated.
|
|
@@ -16021,7 +17261,7 @@ export class Worksheet {
|
|
|
16021
17261
|
* (for example, the calculated result may correspond to a whole row or column data)
|
|
16022
17262
|
* but user does not need so large an array according to business requirement or for performance consideration.
|
|
16023
17263
|
*/
|
|
16024
|
-
calculateArrayFormulaAsync(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, maxRowCount: number, maxColumnCount: number, calculationData: CalculationData) : Promise<
|
|
17264
|
+
calculateArrayFormulaAsync(formula: string, pOpts: FormulaParseOptions, cOpts: CalculationOptions, baseCellRow: number, baseCellColumn: number, maxRowCount: number, maxColumnCount: number, calculationData: CalculationData) : Promise<Object[][]>;
|
|
16025
17265
|
/**
|
|
16026
17266
|
* Refreshes all the PivotTables in this Worksheet.
|
|
16027
17267
|
*/
|
|
@@ -16197,12 +17437,12 @@ export class PageSetup {
|
|
|
16197
17437
|
/**
|
|
16198
17438
|
* Gets and sets the settings of the default printer.
|
|
16199
17439
|
*/
|
|
16200
|
-
getPrinterSettings() :
|
|
17440
|
+
getPrinterSettings() : Uint8Array;
|
|
16201
17441
|
/**
|
|
16202
17442
|
* Gets and sets the settings of the default printer.
|
|
16203
17443
|
* @param value - The value to set.
|
|
16204
17444
|
*/
|
|
16205
|
-
setPrinterSettings(value:
|
|
17445
|
+
setPrinterSettings(value: Uint8Array) : void;
|
|
16206
17446
|
/**
|
|
16207
17447
|
* Represents the size of the left margin, in unit of centimeters.
|
|
16208
17448
|
*/
|
|
@@ -16695,7 +17935,7 @@ export class PageSetup {
|
|
|
16695
17935
|
* @returns
|
|
16696
17936
|
* Returns <see cref="Picture"/> object.
|
|
16697
17937
|
*/
|
|
16698
|
-
setHeaderPicture(section: number, headerPicture:
|
|
17938
|
+
setHeaderPicture(section: number, headerPicture: Uint8Array) : Picture;
|
|
16699
17939
|
/**
|
|
16700
17940
|
* Sets an image in the footer of a worksheet.
|
|
16701
17941
|
* @param section - 0: Left Section, 1: Center Section, 2: Right Section.
|
|
@@ -16703,7 +17943,7 @@ export class PageSetup {
|
|
|
16703
17943
|
* @returns
|
|
16704
17944
|
* Returns <see cref="Picture"/> object.
|
|
16705
17945
|
*/
|
|
16706
|
-
setFooterPicture(section: number, footerPicture:
|
|
17946
|
+
setFooterPicture(section: number, footerPicture: Uint8Array) : Picture;
|
|
16707
17947
|
/**
|
|
16708
17948
|
* Sets an image in the header/footer of a worksheet.
|
|
16709
17949
|
* @param isFirst - Indicates whether setting the picture of first page header/footer.
|
|
@@ -16714,7 +17954,7 @@ export class PageSetup {
|
|
|
16714
17954
|
* @returns
|
|
16715
17955
|
* Returns <see cref="Picture"/> object.
|
|
16716
17956
|
*/
|
|
16717
|
-
setPicture(isFirst: boolean, isEven: boolean, isHeader: boolean, section: number, imageData:
|
|
17957
|
+
setPicture(isFirst: boolean, isEven: boolean, isHeader: boolean, section: number, imageData: Uint8Array) : Picture;
|
|
16718
17958
|
/**
|
|
16719
17959
|
* Gets the <see cref="Picture"/> object of the header / footer.
|
|
16720
17960
|
* @param isHeader - Indicates whether it is in the header or footer.
|
|
@@ -16748,7 +17988,7 @@ export class TextOptions extends Font {
|
|
|
16748
17988
|
* Constructs from a parent object convertible to this.
|
|
16749
17989
|
* @param obj - The parent object.
|
|
16750
17990
|
*/
|
|
16751
|
-
constructor(obj:
|
|
17991
|
+
constructor(obj: Font);
|
|
16752
17992
|
/**
|
|
16753
17993
|
* Gets and sets the name of the shape.
|
|
16754
17994
|
*/
|
|
@@ -17493,11 +18733,15 @@ export class PivotTable {
|
|
|
17493
18733
|
setShowColumnGrandTotals(value: boolean) : void;
|
|
17494
18734
|
/**
|
|
17495
18735
|
* Indicates whether to show grand totals for rows of the pivot table.
|
|
18736
|
+
*
|
|
18737
|
+
* @remarks
|
|
17496
18738
|
*/
|
|
17497
18739
|
getShowRowGrandTotals() : boolean;
|
|
17498
18740
|
/**
|
|
17499
18741
|
* Indicates whether to show grand totals for rows of the pivot table.
|
|
17500
18742
|
* @param value - The value to set.
|
|
18743
|
+
*
|
|
18744
|
+
* @remarks
|
|
17501
18745
|
*/
|
|
17502
18746
|
setShowRowGrandTotals(value: boolean) : void;
|
|
17503
18747
|
/**
|
|
@@ -18827,7 +20071,7 @@ export class ActiveXControl extends ActiveXControlBase {
|
|
|
18827
20071
|
/**
|
|
18828
20072
|
* Gets and sets the binary data of the control.
|
|
18829
20073
|
*/
|
|
18830
|
-
getData() :
|
|
20074
|
+
getData() : Uint8Array;
|
|
18831
20075
|
/**
|
|
18832
20076
|
* Checks whether the implementation object is null.
|
|
18833
20077
|
*/
|
|
@@ -18867,12 +20111,12 @@ export class ActiveXControlBase {
|
|
|
18867
20111
|
/**
|
|
18868
20112
|
* Gets and sets a custom icon to display as the mouse pointer for the control.
|
|
18869
20113
|
*/
|
|
18870
|
-
getMouseIcon() :
|
|
20114
|
+
getMouseIcon() : Uint8Array;
|
|
18871
20115
|
/**
|
|
18872
20116
|
* Gets and sets a custom icon to display as the mouse pointer for the control.
|
|
18873
20117
|
* @param value - The value to set.
|
|
18874
20118
|
*/
|
|
18875
|
-
setMouseIcon(value:
|
|
20119
|
+
setMouseIcon(value: Uint8Array) : void;
|
|
18876
20120
|
/**
|
|
18877
20121
|
* Gets and sets the type of icon displayed as the mouse pointer for the control.
|
|
18878
20122
|
*/
|
|
@@ -18945,7 +20189,7 @@ export class ActiveXControlBase {
|
|
|
18945
20189
|
/**
|
|
18946
20190
|
* Gets and sets the binary data of the control.
|
|
18947
20191
|
*/
|
|
18948
|
-
getData() :
|
|
20192
|
+
getData() : Uint8Array;
|
|
18949
20193
|
/**
|
|
18950
20194
|
* Checks whether the implementation object is null.
|
|
18951
20195
|
*/
|
|
@@ -19108,12 +20352,12 @@ export class CheckBoxActiveXControl extends ActiveXControl {
|
|
|
19108
20352
|
/**
|
|
19109
20353
|
* Gets and sets the data of the picture.
|
|
19110
20354
|
*/
|
|
19111
|
-
getPicture() :
|
|
20355
|
+
getPicture() : Uint8Array;
|
|
19112
20356
|
/**
|
|
19113
20357
|
* Gets and sets the data of the picture.
|
|
19114
20358
|
* @param value - The value to set.
|
|
19115
20359
|
*/
|
|
19116
|
-
setPicture(value:
|
|
20360
|
+
setPicture(value: Uint8Array) : void;
|
|
19117
20361
|
/**
|
|
19118
20362
|
* Gets and sets the accelerator key for the control.
|
|
19119
20363
|
*/
|
|
@@ -19501,12 +20745,12 @@ export class CommandButtonActiveXControl extends ActiveXControl {
|
|
|
19501
20745
|
/**
|
|
19502
20746
|
* Gets and sets the data of the picture.
|
|
19503
20747
|
*/
|
|
19504
|
-
getPicture() :
|
|
20748
|
+
getPicture() : Uint8Array;
|
|
19505
20749
|
/**
|
|
19506
20750
|
* Gets and sets the data of the picture.
|
|
19507
20751
|
* @param value - The value to set.
|
|
19508
20752
|
*/
|
|
19509
|
-
setPicture(value:
|
|
20753
|
+
setPicture(value: Uint8Array) : void;
|
|
19510
20754
|
/**
|
|
19511
20755
|
* Gets and sets the accelerator key for the control.
|
|
19512
20756
|
*/
|
|
@@ -19601,12 +20845,12 @@ export class ImageActiveXControl extends ActiveXControl {
|
|
|
19601
20845
|
/**
|
|
19602
20846
|
* Gets and sets the data of the picture.
|
|
19603
20847
|
*/
|
|
19604
|
-
getPicture() :
|
|
20848
|
+
getPicture() : Uint8Array;
|
|
19605
20849
|
/**
|
|
19606
20850
|
* Gets and sets the data of the picture.
|
|
19607
20851
|
* @param value - The value to set.
|
|
19608
20852
|
*/
|
|
19609
|
-
setPicture(value:
|
|
20853
|
+
setPicture(value: Uint8Array) : void;
|
|
19610
20854
|
/**
|
|
19611
20855
|
* Gets and sets the alignment of the picture inside the Form or Image.
|
|
19612
20856
|
*/
|
|
@@ -19692,12 +20936,12 @@ export class LabelActiveXControl extends ActiveXControl {
|
|
|
19692
20936
|
/**
|
|
19693
20937
|
* Gets and sets the data of the picture.
|
|
19694
20938
|
*/
|
|
19695
|
-
getPicture() :
|
|
20939
|
+
getPicture() : Uint8Array;
|
|
19696
20940
|
/**
|
|
19697
20941
|
* Gets and sets the data of the picture.
|
|
19698
20942
|
* @param value - The value to set.
|
|
19699
20943
|
*/
|
|
19700
|
-
setPicture(value:
|
|
20944
|
+
setPicture(value: Uint8Array) : void;
|
|
19701
20945
|
/**
|
|
19702
20946
|
* Gets and sets the accelerator key for the control.
|
|
19703
20947
|
*/
|
|
@@ -20558,12 +21802,12 @@ export class ToggleButtonActiveXControl extends ActiveXControl {
|
|
|
20558
21802
|
/**
|
|
20559
21803
|
* Gets and sets the data of the picture.
|
|
20560
21804
|
*/
|
|
20561
|
-
getPicture() :
|
|
21805
|
+
getPicture() : Uint8Array;
|
|
20562
21806
|
/**
|
|
20563
21807
|
* Gets and sets the data of the picture.
|
|
20564
21808
|
* @param value - The value to set.
|
|
20565
21809
|
*/
|
|
20566
|
-
setPicture(value:
|
|
21810
|
+
setPicture(value: Uint8Array) : void;
|
|
20567
21811
|
/**
|
|
20568
21812
|
* Gets and sets the accelerator key for the control.
|
|
20569
21813
|
*/
|
|
@@ -20641,7 +21885,7 @@ export class UnknownControl extends ActiveXControl {
|
|
|
20641
21885
|
/**
|
|
20642
21886
|
* Gets and sets the binary data of the control.
|
|
20643
21887
|
*/
|
|
20644
|
-
getData() :
|
|
21888
|
+
getData() : Uint8Array;
|
|
20645
21889
|
/**
|
|
20646
21890
|
* Gets the type of the ActiveX control.
|
|
20647
21891
|
*/
|
|
@@ -20652,7 +21896,7 @@ export class UnknownControl extends ActiveXControl {
|
|
|
20652
21896
|
* @returns
|
|
20653
21897
|
* Returns the related data.
|
|
20654
21898
|
*/
|
|
20655
|
-
getRelationshipData(relId: string) :
|
|
21899
|
+
getRelationshipData(relId: string) : Uint8Array;
|
|
20656
21900
|
/**
|
|
20657
21901
|
* Checks whether the implementation object is null.
|
|
20658
21902
|
*/
|
|
@@ -20842,21 +22086,21 @@ export class CustomXmlPart {
|
|
|
20842
22086
|
/**
|
|
20843
22087
|
* Gets or sets the XML content of this Custom XML Data Storage Part.
|
|
20844
22088
|
*/
|
|
20845
|
-
getData() :
|
|
22089
|
+
getData() : Uint8Array;
|
|
20846
22090
|
/**
|
|
20847
22091
|
* Gets or sets the XML content of this Custom XML Data Storage Part.
|
|
20848
22092
|
* @param value - The value to set.
|
|
20849
22093
|
*/
|
|
20850
|
-
setData(value:
|
|
22094
|
+
setData(value: Uint8Array) : void;
|
|
20851
22095
|
/**
|
|
20852
22096
|
* Gets or sets the XML content of this Custom XML Schema Data Storage Part.
|
|
20853
22097
|
*/
|
|
20854
|
-
getSchemaData() :
|
|
22098
|
+
getSchemaData() : Uint8Array;
|
|
20855
22099
|
/**
|
|
20856
22100
|
* Gets or sets the XML content of this Custom XML Schema Data Storage Part.
|
|
20857
22101
|
* @param value - The value to set.
|
|
20858
22102
|
*/
|
|
20859
|
-
setSchemaData(value:
|
|
22103
|
+
setSchemaData(value: Uint8Array) : void;
|
|
20860
22104
|
/**
|
|
20861
22105
|
* Gets and sets the id of the custom xml part.
|
|
20862
22106
|
*/
|
|
@@ -20886,7 +22130,7 @@ export class CustomXmlPartCollection {
|
|
|
20886
22130
|
* @param data - The XML content of this Custom XML Data Storage Part.
|
|
20887
22131
|
* @param shemaData - The set of XML schemas that are associated with this custom XML part.
|
|
20888
22132
|
*/
|
|
20889
|
-
add(data:
|
|
22133
|
+
add(data: Uint8Array, shemaData: Uint8Array) : number;
|
|
20890
22134
|
/**
|
|
20891
22135
|
* Gets an item by id.
|
|
20892
22136
|
* @param id - Contains the GUID for the custom XML part.
|
|
@@ -21588,7 +22832,7 @@ export class AccentEquationNode extends EquationNode {
|
|
|
21588
22832
|
* Determine whether the current equation node is equal to the specified node
|
|
21589
22833
|
* @param obj - The specified node
|
|
21590
22834
|
*/
|
|
21591
|
-
equals(obj:
|
|
22835
|
+
equals(obj: Object) : boolean;
|
|
21592
22836
|
/**
|
|
21593
22837
|
* Checks whether the implementation object is null.
|
|
21594
22838
|
*/
|
|
@@ -21617,7 +22861,7 @@ export class BarEquationNode extends EquationNode {
|
|
|
21617
22861
|
* Determine whether the current equation node is equal to the specified node
|
|
21618
22862
|
* @param obj - The specified node
|
|
21619
22863
|
*/
|
|
21620
|
-
equals(obj:
|
|
22864
|
+
equals(obj: Object) : boolean;
|
|
21621
22865
|
/**
|
|
21622
22866
|
* Checks whether the implementation object is null.
|
|
21623
22867
|
*/
|
|
@@ -21637,7 +22881,7 @@ export class BorderBoxEquationNode extends EquationNode {
|
|
|
21637
22881
|
* Determine whether the current equation node is equal to the specified node
|
|
21638
22882
|
* @param obj - The specified node
|
|
21639
22883
|
*/
|
|
21640
|
-
equals(obj:
|
|
22884
|
+
equals(obj: Object) : boolean;
|
|
21641
22885
|
/**
|
|
21642
22886
|
* Checks whether the implementation object is null.
|
|
21643
22887
|
*/
|
|
@@ -21657,7 +22901,7 @@ export class BoxEquationNode extends EquationNode {
|
|
|
21657
22901
|
* Determine whether the current equation node is equal to the specified node
|
|
21658
22902
|
* @param obj - The specified node
|
|
21659
22903
|
*/
|
|
21660
|
-
equals(obj:
|
|
22904
|
+
equals(obj: Object) : boolean;
|
|
21661
22905
|
/**
|
|
21662
22906
|
* Checks whether the implementation object is null.
|
|
21663
22907
|
*/
|
|
@@ -21739,7 +22983,7 @@ export class DelimiterEquationNode extends EquationNode {
|
|
|
21739
22983
|
* Determine whether the current equation node is equal to the specified node
|
|
21740
22984
|
* @param obj - The specified node
|
|
21741
22985
|
*/
|
|
21742
|
-
equals(obj:
|
|
22986
|
+
equals(obj: Object) : boolean;
|
|
21743
22987
|
/**
|
|
21744
22988
|
* Checks whether the implementation object is null.
|
|
21745
22989
|
*/
|
|
@@ -21843,7 +23087,7 @@ export class EquationNode extends FontSetting {
|
|
|
21843
23087
|
* Determine whether the current equation node is equal to the specified node
|
|
21844
23088
|
* @param obj - The specified node
|
|
21845
23089
|
*/
|
|
21846
|
-
equals(obj:
|
|
23090
|
+
equals(obj: Object) : boolean;
|
|
21847
23091
|
/**
|
|
21848
23092
|
* Create a node of the specified type.
|
|
21849
23093
|
* @param equationType - Types of Equation Nodes
|
|
@@ -21881,7 +23125,7 @@ export class EquationNodeParagraph extends EquationNode {
|
|
|
21881
23125
|
* Determine whether the current equation node is equal to the specified node
|
|
21882
23126
|
* @param obj - The specified node
|
|
21883
23127
|
*/
|
|
21884
|
-
equals(obj:
|
|
23128
|
+
equals(obj: Object) : boolean;
|
|
21885
23129
|
/**
|
|
21886
23130
|
* Checks whether the implementation object is null.
|
|
21887
23131
|
*/
|
|
@@ -21910,7 +23154,7 @@ export class FractionEquationNode extends EquationNode {
|
|
|
21910
23154
|
* Determine whether the current equation node is equal to the specified node
|
|
21911
23155
|
* @param obj - The specified node
|
|
21912
23156
|
*/
|
|
21913
|
-
equals(obj:
|
|
23157
|
+
equals(obj: Object) : boolean;
|
|
21914
23158
|
/**
|
|
21915
23159
|
* Checks whether the implementation object is null.
|
|
21916
23160
|
*/
|
|
@@ -21994,7 +23238,7 @@ export class NaryEquationNode extends EquationNode {
|
|
|
21994
23238
|
* Determine whether the current equation node is equal to the specified node
|
|
21995
23239
|
* @param obj - The specified node
|
|
21996
23240
|
*/
|
|
21997
|
-
equals(obj:
|
|
23241
|
+
equals(obj: Object) : boolean;
|
|
21998
23242
|
/**
|
|
21999
23243
|
* Checks whether the implementation object is null.
|
|
22000
23244
|
*/
|
|
@@ -22023,7 +23267,7 @@ export class RadicalEquationNode extends EquationNode {
|
|
|
22023
23267
|
* Determine whether the current equation node is equal to the specified node
|
|
22024
23268
|
* @param obj - The specified node
|
|
22025
23269
|
*/
|
|
22026
|
-
equals(obj:
|
|
23270
|
+
equals(obj: Object) : boolean;
|
|
22027
23271
|
/**
|
|
22028
23272
|
* Checks whether the implementation object is null.
|
|
22029
23273
|
*/
|
|
@@ -22046,7 +23290,7 @@ export class EquationComponentNode extends EquationNode {
|
|
|
22046
23290
|
* Determine whether the current equation node is equal to the specified node
|
|
22047
23291
|
* @param obj - The specified node
|
|
22048
23292
|
*/
|
|
22049
|
-
equals(obj:
|
|
23293
|
+
equals(obj: Object) : boolean;
|
|
22050
23294
|
/**
|
|
22051
23295
|
* Checks whether the implementation object is null.
|
|
22052
23296
|
*/
|
|
@@ -22067,7 +23311,7 @@ export class SubSupEquationNode extends EquationNode {
|
|
|
22067
23311
|
* Determine whether the current equation node is equal to the specified node
|
|
22068
23312
|
* @param obj - The specified node
|
|
22069
23313
|
*/
|
|
22070
|
-
equals(obj:
|
|
23314
|
+
equals(obj: Object) : boolean;
|
|
22071
23315
|
/**
|
|
22072
23316
|
* Checks whether the implementation object is null.
|
|
22073
23317
|
*/
|
|
@@ -22087,7 +23331,7 @@ export class UnknowEquationNode extends EquationNode {
|
|
|
22087
23331
|
* Determine whether the current equation node is equal to the specified node
|
|
22088
23332
|
* @param obj - The specified node
|
|
22089
23333
|
*/
|
|
22090
|
-
equals(obj:
|
|
23334
|
+
equals(obj: Object) : boolean;
|
|
22091
23335
|
/**
|
|
22092
23336
|
* Checks whether the implementation object is null.
|
|
22093
23337
|
*/
|
|
@@ -22151,12 +23395,12 @@ export class PictureBulletValue extends BulletValue {
|
|
|
22151
23395
|
/**
|
|
22152
23396
|
* Gets and sets image data of the bullet.
|
|
22153
23397
|
*/
|
|
22154
|
-
getImageData() :
|
|
23398
|
+
getImageData() : Uint8Array;
|
|
22155
23399
|
/**
|
|
22156
23400
|
* Gets and sets image data of the bullet.
|
|
22157
23401
|
* @param value - The value to set.
|
|
22158
23402
|
*/
|
|
22159
|
-
setImageData(value:
|
|
23403
|
+
setImageData(value: Uint8Array) : void;
|
|
22160
23404
|
/**
|
|
22161
23405
|
* Checks whether the implementation object is null.
|
|
22162
23406
|
*/
|
|
@@ -22528,7 +23772,7 @@ export class ShapeTextAlignment {
|
|
|
22528
23772
|
* @returns
|
|
22529
23773
|
* true if the value of the obj parameter is the same as the value of this instance; otherwise, false. If obj is null, this method returns false.
|
|
22530
23774
|
*/
|
|
22531
|
-
equals(obj:
|
|
23775
|
+
equals(obj: Object) : boolean;
|
|
22532
23776
|
/**
|
|
22533
23777
|
*/
|
|
22534
23778
|
getHashCode() : number;
|
|
@@ -23864,13 +25108,13 @@ export class ConnectionParameter {
|
|
|
23864
25108
|
* Non-integer numeric value,Integer value,String value or Boolean value
|
|
23865
25109
|
* to use as the query parameter. Used only when parameterType is value.
|
|
23866
25110
|
*/
|
|
23867
|
-
getValue() :
|
|
25111
|
+
getValue() : Object;
|
|
23868
25112
|
/**
|
|
23869
25113
|
* Non-integer numeric value,Integer value,String value or Boolean value
|
|
23870
25114
|
* to use as the query parameter. Used only when parameterType is value.
|
|
23871
25115
|
* @param value - The value to set.
|
|
23872
25116
|
*/
|
|
23873
|
-
setValue(value:
|
|
25117
|
+
setValue(value: Object) : void;
|
|
23874
25118
|
/**
|
|
23875
25119
|
* Checks whether the implementation object is null.
|
|
23876
25120
|
*/
|
|
@@ -24513,7 +25757,7 @@ export class SolidFill {
|
|
|
24513
25757
|
/**
|
|
24514
25758
|
* @param obj -
|
|
24515
25759
|
*/
|
|
24516
|
-
equals(obj:
|
|
25760
|
+
equals(obj: Object) : boolean;
|
|
24517
25761
|
/**
|
|
24518
25762
|
* Checks whether the implementation object is null.
|
|
24519
25763
|
*/
|
|
@@ -24527,7 +25771,7 @@ export class ConditionalFormattingIcon {
|
|
|
24527
25771
|
/**
|
|
24528
25772
|
* Gets the icon set data.
|
|
24529
25773
|
*/
|
|
24530
|
-
getImageData() :
|
|
25774
|
+
getImageData() : Uint8Array;
|
|
24531
25775
|
/**
|
|
24532
25776
|
* Gets and sets the icon set type.
|
|
24533
25777
|
*/
|
|
@@ -24551,14 +25795,14 @@ export class ConditionalFormattingIcon {
|
|
|
24551
25795
|
* @param type - icon's type
|
|
24552
25796
|
* @param index - icon's index
|
|
24553
25797
|
*/
|
|
24554
|
-
static getIconImageData(type: IconSetType, index: number) :
|
|
25798
|
+
static getIconImageData(type: IconSetType, index: number) : Uint8Array;
|
|
24555
25799
|
/**
|
|
24556
25800
|
* Gets the image data with the setting of cell.
|
|
24557
25801
|
* @param cell - The setting of cell.
|
|
24558
25802
|
* @returns
|
|
24559
25803
|
* Returns the image data of icon.
|
|
24560
25804
|
*/
|
|
24561
|
-
getImageData(cell: Cell) :
|
|
25805
|
+
getImageData(cell: Cell) : Uint8Array;
|
|
24562
25806
|
/**
|
|
24563
25807
|
* Checks whether the implementation object is null.
|
|
24564
25808
|
*/
|
|
@@ -25254,11 +26498,11 @@ export class RevisionCellChange extends Revision {
|
|
|
25254
26498
|
/**
|
|
25255
26499
|
* Gets old value of the cell.
|
|
25256
26500
|
*/
|
|
25257
|
-
getOldValue() :
|
|
26501
|
+
getOldValue() : Object;
|
|
25258
26502
|
/**
|
|
25259
26503
|
* Gets new value of the cell.
|
|
25260
26504
|
*/
|
|
25261
|
-
getNewValue() :
|
|
26505
|
+
getNewValue() : Object;
|
|
25262
26506
|
/**
|
|
25263
26507
|
* Gets the old formula.
|
|
25264
26508
|
*/
|
|
@@ -26670,7 +27914,7 @@ export class ListObject {
|
|
|
26670
27914
|
* @param columnOffset - The column offset in the table.
|
|
26671
27915
|
* @param value - The cell value.
|
|
26672
27916
|
*/
|
|
26673
|
-
putCellValue(rowOffset: number, columnOffset: number, value:
|
|
27917
|
+
putCellValue(rowOffset: number, columnOffset: number, value: Object) : void;
|
|
26674
27918
|
/**
|
|
26675
27919
|
* Put the value to the cell.
|
|
26676
27920
|
* @param rowOffset - The row offset in the table.
|
|
@@ -26678,7 +27922,7 @@ export class ListObject {
|
|
|
26678
27922
|
* @param value - The cell value.
|
|
26679
27923
|
* @param isTotalsRowLabel - Indicates whether it is a label for total row,only works for total row. /// If False and this row is total row, a new row will be inserted.
|
|
26680
27924
|
*/
|
|
26681
|
-
putCellValue(rowOffset: number, columnOffset: number, value:
|
|
27925
|
+
putCellValue(rowOffset: number, columnOffset: number, value: Object, isTotalsRowLabel: boolean) : void;
|
|
26682
27926
|
/**
|
|
26683
27927
|
* Put the formula to the cell in the table.
|
|
26684
27928
|
* @param rowOffset - The row offset in the table.
|
|
@@ -26858,21 +28102,21 @@ export class Validation {
|
|
|
26858
28102
|
/**
|
|
26859
28103
|
* Represents the first value associated with the data validation.
|
|
26860
28104
|
*/
|
|
26861
|
-
getValue1() :
|
|
28105
|
+
getValue1() : Object;
|
|
26862
28106
|
/**
|
|
26863
28107
|
* Represents the first value associated with the data validation.
|
|
26864
28108
|
* @param value - The value to set.
|
|
26865
28109
|
*/
|
|
26866
|
-
setValue1(value:
|
|
28110
|
+
setValue1(value: Object) : void;
|
|
26867
28111
|
/**
|
|
26868
28112
|
* Represents the second value associated with the data validation.
|
|
26869
28113
|
*/
|
|
26870
|
-
getValue2() :
|
|
28114
|
+
getValue2() : Object;
|
|
26871
28115
|
/**
|
|
26872
28116
|
* Represents the second value associated with the data validation.
|
|
26873
28117
|
* @param value - The value to set.
|
|
26874
28118
|
*/
|
|
26875
|
-
setValue2(value:
|
|
28119
|
+
setValue2(value: Object) : void;
|
|
26876
28120
|
/**
|
|
26877
28121
|
* Indicates whether data validation displays a drop-down list that contains acceptable values.
|
|
26878
28122
|
*/
|
|
@@ -26949,14 +28193,14 @@ export class Validation {
|
|
|
26949
28193
|
* Only for validation whose type is List and has been applied to given cell,
|
|
26950
28194
|
* otherwise null will be returned.
|
|
26951
28195
|
*/
|
|
26952
|
-
getListValue(row: number, column: number) :
|
|
28196
|
+
getListValue(row: number, column: number) : Object;
|
|
26953
28197
|
/**
|
|
26954
28198
|
* Get the value of validation on the specific cell.
|
|
26955
28199
|
* @param row - The row index.
|
|
26956
28200
|
* @param column - The column index.
|
|
26957
28201
|
* @param isValue1 - Indicates whether getting the first value.
|
|
26958
28202
|
*/
|
|
26959
|
-
getValue(row: number, column: number, isValue1: boolean) :
|
|
28203
|
+
getValue(row: number, column: number, isValue1: boolean) : Object;
|
|
26960
28204
|
/**
|
|
26961
28205
|
* Applies the validation to the area.
|
|
26962
28206
|
* @param cellArea - The area.
|
|
@@ -27038,7 +28282,7 @@ export class VbaModule {
|
|
|
27038
28282
|
/**
|
|
27039
28283
|
* Gets and sets the binary codes of module.
|
|
27040
28284
|
*/
|
|
27041
|
-
getBinaryCodes() :
|
|
28285
|
+
getBinaryCodes() : Uint8Array;
|
|
27042
28286
|
/**
|
|
27043
28287
|
* Gets and sets the codes of module.
|
|
27044
28288
|
*/
|
|
@@ -27072,14 +28316,14 @@ export class VbaModuleCollection {
|
|
|
27072
28316
|
* @param name -
|
|
27073
28317
|
* @param data -
|
|
27074
28318
|
*/
|
|
27075
|
-
addDesignerStorage(name: string, data:
|
|
28319
|
+
addDesignerStorage(name: string, data: Uint8Array) : void;
|
|
27076
28320
|
/**
|
|
27077
28321
|
* Represents the data of Designer.
|
|
27078
28322
|
*
|
|
27079
28323
|
* @remarks
|
|
27080
28324
|
* We do not support to parse them. Just only for copying.
|
|
27081
28325
|
*/
|
|
27082
|
-
getDesignerStorage(name: string) :
|
|
28326
|
+
getDesignerStorage(name: string) : Uint8Array;
|
|
27083
28327
|
/**
|
|
27084
28328
|
* Adds module for a worksheet.
|
|
27085
28329
|
* @param sheet - The worksheet
|
|
@@ -27097,7 +28341,7 @@ export class VbaModuleCollection {
|
|
|
27097
28341
|
* @param codes - The codes for the user form
|
|
27098
28342
|
* @param designerStorage - the designer setting about the user form
|
|
27099
28343
|
*/
|
|
27100
|
-
addUserForm(name: string, codes: string, designerStorage:
|
|
28344
|
+
addUserForm(name: string, codes: string, designerStorage: Uint8Array) : number;
|
|
27101
28345
|
/**
|
|
27102
28346
|
* Removes module for a worksheet.
|
|
27103
28347
|
* @param sheet - The worksheet
|
|
@@ -27151,7 +28395,7 @@ export class VbaProject {
|
|
|
27151
28395
|
/**
|
|
27152
28396
|
* Gets certificate raw data if this VBA project is signed.
|
|
27153
28397
|
*/
|
|
27154
|
-
getCertRawData() :
|
|
28398
|
+
getCertRawData() : Uint8Array;
|
|
27155
28399
|
/**
|
|
27156
28400
|
* Gets and sets the encoding of VBA project.
|
|
27157
28401
|
*/
|
|
@@ -27381,16 +28625,16 @@ export class WarningInfo {
|
|
|
27381
28625
|
/**
|
|
27382
28626
|
* The error object.
|
|
27383
28627
|
*/
|
|
27384
|
-
getErrorObject() :
|
|
28628
|
+
getErrorObject() : Object;
|
|
27385
28629
|
/**
|
|
27386
28630
|
* Gets and sets the corrected object.
|
|
27387
28631
|
*/
|
|
27388
|
-
getCorrectedObject() :
|
|
28632
|
+
getCorrectedObject() : Object;
|
|
27389
28633
|
/**
|
|
27390
28634
|
* Gets and sets the corrected object.
|
|
27391
28635
|
* @param value - The value to set.
|
|
27392
28636
|
*/
|
|
27393
|
-
setCorrectedObject(value:
|
|
28637
|
+
setCorrectedObject(value: Object) : void;
|
|
27394
28638
|
/**
|
|
27395
28639
|
* Checks whether the implementation object is null.
|
|
27396
28640
|
*/
|
|
@@ -27580,7 +28824,7 @@ export class DrawObject {
|
|
|
27580
28824
|
/**
|
|
27581
28825
|
* Indicates image bytes of rendered Chart, Shape when rendering.
|
|
27582
28826
|
*/
|
|
27583
|
-
getImageBytes() :
|
|
28827
|
+
getImageBytes() : Uint8Array;
|
|
27584
28828
|
/**
|
|
27585
28829
|
* Indicates the type of DrawObject.
|
|
27586
28830
|
*/
|
|
@@ -27653,7 +28897,7 @@ export enum GridlineType {
|
|
|
27653
28897
|
*/
|
|
27654
28898
|
export class ImageOrPrintOptions {
|
|
27655
28899
|
/**
|
|
27656
|
-
*
|
|
28900
|
+
* Ctor.
|
|
27657
28901
|
*/
|
|
27658
28902
|
constructor();
|
|
27659
28903
|
/**
|
|
@@ -27835,30 +29079,42 @@ export class ImageOrPrintOptions {
|
|
|
27835
29079
|
/**
|
|
27836
29080
|
* Indicate the filename of embedded image in svg.
|
|
27837
29081
|
* This should be full path with directory like "c:\\xpsEmbedded"
|
|
29082
|
+
* @deprecated
|
|
29083
|
+
* Images are always embedded in Svg with base64 format, please remove this property.
|
|
27838
29084
|
*/
|
|
27839
29085
|
getEmbededImageNameInSvg() : string;
|
|
27840
29086
|
/**
|
|
27841
29087
|
* Indicate the filename of embedded image in svg.
|
|
27842
29088
|
* This should be full path with directory like "c:\\xpsEmbedded"
|
|
27843
29089
|
* @param value - The value to set.
|
|
29090
|
+
* @deprecated
|
|
29091
|
+
* Images are always embedded in Svg with base64 format, please remove this property.
|
|
27844
29092
|
*/
|
|
27845
29093
|
setEmbededImageNameInSvg(value: string) : void;
|
|
27846
29094
|
/**
|
|
27847
29095
|
* if this property is true, the generated svg will fit to view port.
|
|
29096
|
+
* @deprecated
|
|
29097
|
+
* Use SvgImageOptions.FitToViewPort property instead.
|
|
27848
29098
|
*/
|
|
27849
29099
|
getSVGFitToViewPort() : boolean;
|
|
27850
29100
|
/**
|
|
27851
29101
|
* if this property is true, the generated svg will fit to view port.
|
|
27852
29102
|
* @param value - The value to set.
|
|
29103
|
+
* @deprecated
|
|
29104
|
+
* Use SvgImageOptions.FitToViewPort property instead.
|
|
27853
29105
|
*/
|
|
27854
29106
|
setSVGFitToViewPort(value: boolean) : void;
|
|
27855
29107
|
/**
|
|
27856
29108
|
* Gets and sets the prefix of the css name in svg,the default value is empty string.
|
|
29109
|
+
* @deprecated
|
|
29110
|
+
* Use SvgImageOptions.CssPrefix property instead.
|
|
27857
29111
|
*/
|
|
27858
29112
|
getSvgCssPrefix() : string;
|
|
27859
29113
|
/**
|
|
27860
29114
|
* Gets and sets the prefix of the css name in svg,the default value is empty string.
|
|
27861
29115
|
* @param value - The value to set.
|
|
29116
|
+
* @deprecated
|
|
29117
|
+
* Use SvgImageOptions.CssPrefix property instead.
|
|
27862
29118
|
*/
|
|
27863
29119
|
setSvgCssPrefix(value: string) : void;
|
|
27864
29120
|
/**
|
|
@@ -28075,7 +29331,7 @@ export class ImageOrPrintOptions {
|
|
|
28075
29331
|
*/
|
|
28076
29332
|
setSheetSet(value: SheetSet) : void;
|
|
28077
29333
|
/**
|
|
28078
|
-
* Setting for rendering Emf
|
|
29334
|
+
* Setting for rendering Emf metafiles in source file.
|
|
28079
29335
|
*
|
|
28080
29336
|
* @remarks
|
|
28081
29337
|
* EMF metafiles identified as "EMF+ Dual" can contain both EMF+ records and EMF records.
|
|
@@ -28086,7 +29342,7 @@ export class ImageOrPrintOptions {
|
|
|
28086
29342
|
*/
|
|
28087
29343
|
getEmfRenderSetting() : EmfRenderSetting;
|
|
28088
29344
|
/**
|
|
28089
|
-
* Setting for rendering Emf
|
|
29345
|
+
* Setting for rendering Emf metafiles in source file.
|
|
28090
29346
|
* @param value - The value to set.
|
|
28091
29347
|
*
|
|
28092
29348
|
* @remarks
|
|
@@ -28524,12 +29780,12 @@ export class MsoFillFormatHelper {
|
|
|
28524
29780
|
/**
|
|
28525
29781
|
* Gets and sets the Texture and Picture fill data.
|
|
28526
29782
|
*/
|
|
28527
|
-
getImageData() :
|
|
29783
|
+
getImageData() : Uint8Array;
|
|
28528
29784
|
/**
|
|
28529
29785
|
* Gets and sets the Texture and Picture fill data.
|
|
28530
29786
|
* @param value - The value to set.
|
|
28531
29787
|
*/
|
|
28532
|
-
setImageData(value:
|
|
29788
|
+
setImageData(value: Uint8Array) : void;
|
|
28533
29789
|
/**
|
|
28534
29790
|
* Gets the texture fill type.
|
|
28535
29791
|
*/
|
|
@@ -28697,12 +29953,12 @@ export class ImportTableOptions {
|
|
|
28697
29953
|
/**
|
|
28698
29954
|
* Default value for the value in the table is null.
|
|
28699
29955
|
*/
|
|
28700
|
-
getDefaultValues() :
|
|
29956
|
+
getDefaultValues() : Object[];
|
|
28701
29957
|
/**
|
|
28702
29958
|
* Default value for the value in the table is null.
|
|
28703
29959
|
* @param value - The value to set.
|
|
28704
29960
|
*/
|
|
28705
|
-
setDefaultValues(value:
|
|
29961
|
+
setDefaultValues(value: Object[]) : void;
|
|
28706
29962
|
/**
|
|
28707
29963
|
* Indicates whether the value contains html tags.
|
|
28708
29964
|
*/
|
|
@@ -29559,6 +30815,10 @@ export enum LoadFormat {
|
|
|
29559
30815
|
* Represents a CHM file.
|
|
29560
30816
|
*/
|
|
29561
30817
|
Chm = 54,
|
|
30818
|
+
/**
|
|
30819
|
+
* Represents a Markdown file.
|
|
30820
|
+
*/
|
|
30821
|
+
Markdown = 55,
|
|
29562
30822
|
/**
|
|
29563
30823
|
* Represents unrecognized format, cannot be loaded.
|
|
29564
30824
|
*/
|
|
@@ -31367,7 +32627,7 @@ export class DigitalSignature {
|
|
|
31367
32627
|
* @param comments - The purpose to signature.
|
|
31368
32628
|
* @param signTime - The utc time when the document was signed.
|
|
31369
32629
|
*/
|
|
31370
|
-
constructor(rawData:
|
|
32630
|
+
constructor(rawData: Uint8Array, password: string, comments: string, signTime: Date);
|
|
31371
32631
|
/**
|
|
31372
32632
|
* Constructor of DigitalSignature.
|
|
31373
32633
|
* @param fileName - The name of a certificate file.
|
|
@@ -31409,13 +32669,13 @@ export class DigitalSignature {
|
|
|
31409
32669
|
* Specifies an image for the digital signature.
|
|
31410
32670
|
* Default value is null.
|
|
31411
32671
|
*/
|
|
31412
|
-
getImage() :
|
|
32672
|
+
getImage() : Uint8Array;
|
|
31413
32673
|
/**
|
|
31414
32674
|
* Specifies an image for the digital signature.
|
|
31415
32675
|
* Default value is null.
|
|
31416
32676
|
* @param value - The value to set.
|
|
31417
32677
|
*/
|
|
31418
|
-
setImage(value:
|
|
32678
|
+
setImage(value: Uint8Array) : void;
|
|
31419
32679
|
/**
|
|
31420
32680
|
* If this digital signature is valid and the document has not been tampered with,
|
|
31421
32681
|
* this value will be true.
|
|
@@ -32236,7 +33496,7 @@ export class PivotItem {
|
|
|
32236
33496
|
/**
|
|
32237
33497
|
* Gets the value of the pivot item
|
|
32238
33498
|
*/
|
|
32239
|
-
getValue() :
|
|
33499
|
+
getValue() : Object;
|
|
32240
33500
|
/**
|
|
32241
33501
|
* Gets the name of the pivot item.
|
|
32242
33502
|
*/
|
|
@@ -33168,7 +34428,7 @@ export class ConditionalFormattingValue {
|
|
|
33168
34428
|
* If the value is string and start with "=", it will be processed as a formula,
|
|
33169
34429
|
* otherwise we will process it as a simple value.
|
|
33170
34430
|
*/
|
|
33171
|
-
getValue() :
|
|
34431
|
+
getValue() : Object;
|
|
33172
34432
|
/**
|
|
33173
34433
|
* Get or set the value of this conditional formatting value object.
|
|
33174
34434
|
* It should be used in conjunction with Type.
|
|
@@ -33178,7 +34438,7 @@ export class ConditionalFormattingValue {
|
|
|
33178
34438
|
* If the value is string and start with "=", it will be processed as a formula,
|
|
33179
34439
|
* otherwise we will process it as a simple value.
|
|
33180
34440
|
*/
|
|
33181
|
-
setValue(value:
|
|
34441
|
+
setValue(value: Object) : void;
|
|
33182
34442
|
/**
|
|
33183
34443
|
* Get or set the type of this conditional formatting value object.
|
|
33184
34444
|
* Setting the type to FormatConditionValueType.Min or FormatConditionValueType.Max
|
|
@@ -33318,7 +34578,7 @@ export class DataBar {
|
|
|
33318
34578
|
* @param cell - Indicate the data bar in which cell to be rendered
|
|
33319
34579
|
* @param imgOpts - ImageOrPrintOptions contains some property of output image
|
|
33320
34580
|
*/
|
|
33321
|
-
toImage(cell: Cell, imgOpts: ImageOrPrintOptions) :
|
|
34581
|
+
toImage(cell: Cell, imgOpts: ImageOrPrintOptions) : Uint8Array;
|
|
33322
34582
|
/**
|
|
33323
34583
|
* Checks whether the implementation object is null.
|
|
33324
34584
|
*/
|
|
@@ -33533,18 +34793,18 @@ export class CustomFilter {
|
|
|
33533
34793
|
/**
|
|
33534
34794
|
* Gets and sets the criteria.
|
|
33535
34795
|
*/
|
|
33536
|
-
getCriteria() :
|
|
34796
|
+
getCriteria() : Object;
|
|
33537
34797
|
/**
|
|
33538
34798
|
* Gets and sets the criteria.
|
|
33539
34799
|
* @param value - The value to set.
|
|
33540
34800
|
*/
|
|
33541
|
-
setCriteria(value:
|
|
34801
|
+
setCriteria(value: Object) : void;
|
|
33542
34802
|
/**
|
|
33543
34803
|
* Sets the filter criteria.
|
|
33544
34804
|
* @param filterOperator - filter operator type
|
|
33545
34805
|
* @param criteria - filter criteria value
|
|
33546
34806
|
*/
|
|
33547
|
-
setCriteria(filterOperator: FilterOperatorType, criteria:
|
|
34807
|
+
setCriteria(filterOperator: FilterOperatorType, criteria: Object) : void;
|
|
33548
34808
|
/**
|
|
33549
34809
|
* Checks whether the implementation object is null.
|
|
33550
34810
|
*/
|
|
@@ -33739,21 +34999,21 @@ export class DynamicFilter {
|
|
|
33739
34999
|
/**
|
|
33740
35000
|
* Gets and sets the dynamic filter value.
|
|
33741
35001
|
*/
|
|
33742
|
-
getValue() :
|
|
35002
|
+
getValue() : Object;
|
|
33743
35003
|
/**
|
|
33744
35004
|
* Gets and sets the dynamic filter value.
|
|
33745
35005
|
* @param value - The value to set.
|
|
33746
35006
|
*/
|
|
33747
|
-
setValue(value:
|
|
35007
|
+
setValue(value: Object) : void;
|
|
33748
35008
|
/**
|
|
33749
35009
|
* Gets and sets the dynamic filter max value.
|
|
33750
35010
|
*/
|
|
33751
|
-
getMaxValue() :
|
|
35011
|
+
getMaxValue() : Object;
|
|
33752
35012
|
/**
|
|
33753
35013
|
* Gets and sets the dynamic filter max value.
|
|
33754
35014
|
* @param value - The value to set.
|
|
33755
35015
|
*/
|
|
33756
|
-
setMaxValue(value:
|
|
35016
|
+
setMaxValue(value: Object) : void;
|
|
33757
35017
|
/**
|
|
33758
35018
|
* Checks whether the implementation object is null.
|
|
33759
35019
|
*/
|
|
@@ -33927,7 +35187,7 @@ export class MultipleFilterCollection {
|
|
|
33927
35187
|
* DateTimeGroupItem or a simple object.
|
|
33928
35188
|
* @param index -
|
|
33929
35189
|
*/
|
|
33930
|
-
get(index: number) :
|
|
35190
|
+
get(index: number) : Object;
|
|
33931
35191
|
/**
|
|
33932
35192
|
* Indicates whether to filter by blank.
|
|
33933
35193
|
*/
|
|
@@ -34066,11 +35326,11 @@ export class Top10Filter {
|
|
|
34066
35326
|
setItems(value: number) : void;
|
|
34067
35327
|
/**
|
|
34068
35328
|
*/
|
|
34069
|
-
getCriteria() :
|
|
35329
|
+
getCriteria() : Object;
|
|
34070
35330
|
/**
|
|
34071
35331
|
* @param value - The value to set.
|
|
34072
35332
|
*/
|
|
34073
|
-
setCriteria(value:
|
|
35333
|
+
setCriteria(value: Object) : void;
|
|
34074
35334
|
/**
|
|
34075
35335
|
* Checks whether the implementation object is null.
|
|
34076
35336
|
*/
|
|
@@ -35195,6 +36455,15 @@ export class HtmlSaveOptions extends SaveOptions {
|
|
|
35195
36455
|
* @param value - The value to set.
|
|
35196
36456
|
*/
|
|
35197
36457
|
setHtmlVersion(value: HtmlVersion) : void;
|
|
36458
|
+
/**
|
|
36459
|
+
* Gets or sets the sheets to render. Default is all visible sheets in the workbook: <see cref="Aspose.Cells.Rendering.SheetSet.Visible"/>.
|
|
36460
|
+
*/
|
|
36461
|
+
getSheetSet() : SheetSet;
|
|
36462
|
+
/**
|
|
36463
|
+
* Gets or sets the sheets to render. Default is all visible sheets in the workbook: <see cref="Aspose.Cells.Rendering.SheetSet.Visible"/>.
|
|
36464
|
+
* @param value - The value to set.
|
|
36465
|
+
*/
|
|
36466
|
+
setSheetSet(value: SheetSet) : void;
|
|
35198
36467
|
/**
|
|
35199
36468
|
* Checks whether the implementation object is null.
|
|
35200
36469
|
*/
|
|
@@ -37005,7 +38274,7 @@ export class SparklineCollection {
|
|
|
37005
38274
|
* Removes the sparkline
|
|
37006
38275
|
* @param o -
|
|
37007
38276
|
*/
|
|
37008
|
-
remove(o:
|
|
38277
|
+
remove(o: Object) : void;
|
|
37009
38278
|
/**
|
|
37010
38279
|
* Gets the number of elements contained in.
|
|
37011
38280
|
*/
|
|
@@ -38609,7 +39878,7 @@ export class ReferredArea {
|
|
|
38609
39878
|
* If this area is one single cell, then return the cell value object;
|
|
38610
39879
|
* Otherwise return one 2D array for all values in this area.
|
|
38611
39880
|
*/
|
|
38612
|
-
getValues() :
|
|
39881
|
+
getValues() : Object;
|
|
38613
39882
|
/**
|
|
38614
39883
|
* Gets cell values in this area.
|
|
38615
39884
|
* @param calculateFormulas - In this range, if there are some formulas that have not been calculated, /// this flag denotes whether those formulas should be calculated recursively
|
|
@@ -38618,7 +39887,7 @@ export class ReferredArea {
|
|
|
38618
39887
|
* If this area is one single cell, then return the cell value object;
|
|
38619
39888
|
* Otherwise return one 2D array for all values in this area.
|
|
38620
39889
|
*/
|
|
38621
|
-
getValues(calculateFormulas: boolean) :
|
|
39890
|
+
getValues(calculateFormulas: boolean) : Object;
|
|
38622
39891
|
/**
|
|
38623
39892
|
* Gets cell value with given offset from the top-left of this area.
|
|
38624
39893
|
* @param rowOffset - row offset from the start row of this area
|
|
@@ -38628,7 +39897,7 @@ export class ReferredArea {
|
|
|
38628
39897
|
* "#N/A" if given offset out of this area;
|
|
38629
39898
|
* Otherwise return the cell value at given position.
|
|
38630
39899
|
*/
|
|
38631
|
-
getValue(rowOffset: number, colOffset: number) :
|
|
39900
|
+
getValue(rowOffset: number, colOffset: number) : Object;
|
|
38632
39901
|
/**
|
|
38633
39902
|
* Gets cell value with given offset from the top-left of this area.
|
|
38634
39903
|
* @param rowOffset - row offset from the start row of this area
|
|
@@ -38639,7 +39908,7 @@ export class ReferredArea {
|
|
|
38639
39908
|
* "#N/A" if given offset out of this area;
|
|
38640
39909
|
* Otherwise return the cell value at given position.
|
|
38641
39910
|
*/
|
|
38642
|
-
getValue(rowOffset: number, colOffset: number, calculateFormulas: boolean) :
|
|
39911
|
+
getValue(rowOffset: number, colOffset: number, calculateFormulas: boolean) : Object;
|
|
38643
39912
|
/**
|
|
38644
39913
|
* Returns the reference address of this area.
|
|
38645
39914
|
* Generally it is the address of the reference which may be used in formula, such as "Sheet1!A1:C3".
|
|
@@ -40158,7 +41427,7 @@ export class Axis {
|
|
|
40158
41427
|
* @remarks
|
|
40159
41428
|
* The minValue type only can be double or DateTime
|
|
40160
41429
|
*/
|
|
40161
|
-
getMinValue() :
|
|
41430
|
+
getMinValue() : Object;
|
|
40162
41431
|
/**
|
|
40163
41432
|
* Represents the minimum value on the value axis.
|
|
40164
41433
|
* @param value - The value to set.
|
|
@@ -40166,7 +41435,7 @@ export class Axis {
|
|
|
40166
41435
|
* @remarks
|
|
40167
41436
|
* The minValue type only can be double or DateTime
|
|
40168
41437
|
*/
|
|
40169
|
-
setMinValue(value:
|
|
41438
|
+
setMinValue(value: Object) : void;
|
|
40170
41439
|
/**
|
|
40171
41440
|
* Indicates whether the max value is automatically assigned.
|
|
40172
41441
|
*/
|
|
@@ -40182,7 +41451,7 @@ export class Axis {
|
|
|
40182
41451
|
* @remarks
|
|
40183
41452
|
* The maxValue type only can be double or DateTime
|
|
40184
41453
|
*/
|
|
40185
|
-
getMaxValue() :
|
|
41454
|
+
getMaxValue() : Object;
|
|
40186
41455
|
/**
|
|
40187
41456
|
* Represents the maximum value on the value axis.
|
|
40188
41457
|
* @param value - The value to set.
|
|
@@ -40190,7 +41459,7 @@ export class Axis {
|
|
|
40190
41459
|
* @remarks
|
|
40191
41460
|
* The maxValue type only can be double or DateTime
|
|
40192
41461
|
*/
|
|
40193
|
-
setMaxValue(value:
|
|
41462
|
+
setMaxValue(value: Object) : void;
|
|
40194
41463
|
/**
|
|
40195
41464
|
* Indicates whether the major unit of the axis is automatically assigned.
|
|
40196
41465
|
*/
|
|
@@ -41454,7 +42723,7 @@ export class Chart {
|
|
|
41454
42723
|
* Change chart type with preset template.
|
|
41455
42724
|
* @param data - The data of chart template file(.crtx).
|
|
41456
42725
|
*/
|
|
41457
|
-
changeTemplate(data:
|
|
42726
|
+
changeTemplate(data: Uint8Array) : void;
|
|
41458
42727
|
/**
|
|
41459
42728
|
* Moves the chart to a specified location.
|
|
41460
42729
|
* @param upperLeftColumn - Upper left column index.
|
|
@@ -42518,12 +43787,12 @@ export class ChartPoint {
|
|
|
42518
43787
|
/**
|
|
42519
43788
|
* Gets or sets the Y value of the chart point.
|
|
42520
43789
|
*/
|
|
42521
|
-
get_YValue() :
|
|
43790
|
+
get_YValue() : Object;
|
|
42522
43791
|
/**
|
|
42523
43792
|
* Gets or sets the Y value of the chart point.
|
|
42524
43793
|
* @param value - The value to set.
|
|
42525
43794
|
*/
|
|
42526
|
-
setYValue(value:
|
|
43795
|
+
setYValue(value: Object) : void;
|
|
42527
43796
|
/**
|
|
42528
43797
|
* Gets Y value type of the chart point.
|
|
42529
43798
|
*/
|
|
@@ -42531,12 +43800,12 @@ export class ChartPoint {
|
|
|
42531
43800
|
/**
|
|
42532
43801
|
* Gets or sets the X value of the chart point.
|
|
42533
43802
|
*/
|
|
42534
|
-
getXValue() :
|
|
43803
|
+
getXValue() : Object;
|
|
42535
43804
|
/**
|
|
42536
43805
|
* Gets or sets the X value of the chart point.
|
|
42537
43806
|
* @param value - The value to set.
|
|
42538
43807
|
*/
|
|
42539
|
-
setXValue(value:
|
|
43808
|
+
setXValue(value: Object) : void;
|
|
42540
43809
|
/**
|
|
42541
43810
|
* Gets X value type of the chart point.
|
|
42542
43811
|
*/
|
|
@@ -42811,7 +44080,7 @@ export class ChartCollection {
|
|
|
42811
44080
|
* @returns
|
|
42812
44081
|
* <see cref="Chart"/> object index.
|
|
42813
44082
|
*/
|
|
42814
|
-
add(data:
|
|
44083
|
+
add(data: Uint8Array, dataRange: string, isVertical: boolean, topRow: number, leftColumn: number, rightRow: number, bottomColumn: number) : number;
|
|
42815
44084
|
/**
|
|
42816
44085
|
* Adds a chart to the collection.
|
|
42817
44086
|
* @param type - Chart type
|
|
@@ -44680,7 +45949,7 @@ export class DataSorter {
|
|
|
44680
45949
|
* @remarks
|
|
44681
45950
|
* If type is SortOnType.CellColor or SortOnType.FontColor, the customList is Color.
|
|
44682
45951
|
*/
|
|
44683
|
-
addKey(key: number, type: SortOnType, order: SortOrder, customList:
|
|
45952
|
+
addKey(key: number, type: SortOnType, order: SortOrder, customList: Object) : void;
|
|
44684
45953
|
/**
|
|
44685
45954
|
* Adds sorted column index and sort order with custom sort list.
|
|
44686
45955
|
* @param key - The sorted column index(absolute position, column A is 0, B is 1, ...)
|
|
@@ -45338,12 +46607,12 @@ export class DocumentProperty {
|
|
|
45338
46607
|
/**
|
|
45339
46608
|
* Gets or sets the value of the property.
|
|
45340
46609
|
*/
|
|
45341
|
-
getValue() :
|
|
46610
|
+
getValue() : Object;
|
|
45342
46611
|
/**
|
|
45343
46612
|
* Gets or sets the value of the property.
|
|
45344
46613
|
* @param value - The value to set.
|
|
45345
46614
|
*/
|
|
45346
|
-
setValue(value:
|
|
46615
|
+
setValue(value: Object) : void;
|
|
45347
46616
|
/**
|
|
45348
46617
|
* Indicates whether this property is linked to content
|
|
45349
46618
|
*/
|
|
@@ -46513,12 +47782,12 @@ export class FilterColumn {
|
|
|
46513
47782
|
/**
|
|
46514
47783
|
* Gets and sets the condition of filtering data.
|
|
46515
47784
|
*/
|
|
46516
|
-
getFilter() :
|
|
47785
|
+
getFilter() : Object;
|
|
46517
47786
|
/**
|
|
46518
47787
|
* Gets and sets the condition of filtering data.
|
|
46519
47788
|
* @param value - The value to set.
|
|
46520
47789
|
*/
|
|
46521
|
-
setFilter(value:
|
|
47790
|
+
setFilter(value: Object) : void;
|
|
46522
47791
|
/**
|
|
46523
47792
|
* Gets and sets the type fo filtering data.
|
|
46524
47793
|
*/
|
|
@@ -49137,12 +50406,12 @@ export class TextureFill {
|
|
|
49137
50406
|
/**
|
|
49138
50407
|
* Gets and sets the image data of the fill.
|
|
49139
50408
|
*/
|
|
49140
|
-
getImageData() :
|
|
50409
|
+
getImageData() : Uint8Array;
|
|
49141
50410
|
/**
|
|
49142
50411
|
* Gets and sets the image data of the fill.
|
|
49143
50412
|
* @param value - The value to set.
|
|
49144
50413
|
*/
|
|
49145
|
-
setImageData(value:
|
|
50414
|
+
setImageData(value: Uint8Array) : void;
|
|
49146
50415
|
/**
|
|
49147
50416
|
* Indicates whether tile picture as texture.
|
|
49148
50417
|
*/
|
|
@@ -49751,12 +51020,12 @@ export class MsoFillFormat {
|
|
|
49751
51020
|
/**
|
|
49752
51021
|
* Gets and sets the Texture and Picture fill data.
|
|
49753
51022
|
*/
|
|
49754
|
-
getImageData() :
|
|
51023
|
+
getImageData() : Uint8Array;
|
|
49755
51024
|
/**
|
|
49756
51025
|
* Gets and sets the Texture and Picture fill data.
|
|
49757
51026
|
* @param value - The value to set.
|
|
49758
51027
|
*/
|
|
49759
|
-
setImageData(value:
|
|
51028
|
+
setImageData(value: Uint8Array) : void;
|
|
49760
51029
|
/**
|
|
49761
51030
|
* Gets the texture fill type.
|
|
49762
51031
|
*/
|
|
@@ -49942,7 +51211,7 @@ export class MsoFormatPicture {
|
|
|
49942
51211
|
/**
|
|
49943
51212
|
* @param obj -
|
|
49944
51213
|
*/
|
|
49945
|
-
equals(obj:
|
|
51214
|
+
equals(obj: Object) : boolean;
|
|
49946
51215
|
/**
|
|
49947
51216
|
* Checks whether the implementation object is null.
|
|
49948
51217
|
*/
|
|
@@ -50572,25 +51841,25 @@ export class OleObject extends Shape {
|
|
|
50572
51841
|
/**
|
|
50573
51842
|
* Represents image of ole object as byte array.
|
|
50574
51843
|
*/
|
|
50575
|
-
getImageData() :
|
|
51844
|
+
getImageData() : Uint8Array;
|
|
50576
51845
|
/**
|
|
50577
51846
|
* Represents image of ole object as byte array.
|
|
50578
51847
|
* @param value - The value to set.
|
|
50579
51848
|
*/
|
|
50580
|
-
setImageData(value:
|
|
51849
|
+
setImageData(value: Uint8Array) : void;
|
|
50581
51850
|
/**
|
|
50582
51851
|
* Represents embedded ole object data as byte array.
|
|
50583
51852
|
*/
|
|
50584
|
-
getObjectData() :
|
|
51853
|
+
getObjectData() : Uint8Array;
|
|
50585
51854
|
/**
|
|
50586
51855
|
* Represents embedded ole object data as byte array.
|
|
50587
51856
|
* @param value - The value to set.
|
|
50588
51857
|
*/
|
|
50589
|
-
setObjectData(value:
|
|
51858
|
+
setObjectData(value: Uint8Array) : void;
|
|
50590
51859
|
/**
|
|
50591
51860
|
* Gets the full embedded ole object binary data in the template file.
|
|
50592
51861
|
*/
|
|
50593
|
-
getFullObjectBin() :
|
|
51862
|
+
getFullObjectBin() : Uint8Array;
|
|
50594
51863
|
/**
|
|
50595
51864
|
* Gets or sets the path and name of the source file for the linked image.
|
|
50596
51865
|
*
|
|
@@ -50678,13 +51947,13 @@ export class OleObject extends Shape {
|
|
|
50678
51947
|
* Gets and sets the class identifier of the embedded object.
|
|
50679
51948
|
* It means which application opens the embedded file.
|
|
50680
51949
|
*/
|
|
50681
|
-
getClassIdentifier() :
|
|
51950
|
+
getClassIdentifier() : Uint8Array;
|
|
50682
51951
|
/**
|
|
50683
51952
|
* Gets and sets the class identifier of the embedded object.
|
|
50684
51953
|
* It means which application opens the embedded file.
|
|
50685
51954
|
* @param value - The value to set.
|
|
50686
51955
|
*/
|
|
50687
|
-
setClassIdentifier(value:
|
|
51956
|
+
setClassIdentifier(value: Uint8Array) : void;
|
|
50688
51957
|
/**
|
|
50689
51958
|
* Gets the image format of the ole object.
|
|
50690
51959
|
*/
|
|
@@ -50697,7 +51966,7 @@ export class OleObject extends Shape {
|
|
|
50697
51966
|
* @param displayAsIcon - Indicates whether diplaying object as an icon. /// If true, the orginal image data will be covered by icon.
|
|
50698
51967
|
* @param label - The icon label. Only works when displayAsIcon as true.
|
|
50699
51968
|
*/
|
|
50700
|
-
setEmbeddedObject(linkToFile: boolean, objectData:
|
|
51969
|
+
setEmbeddedObject(linkToFile: boolean, objectData: Uint8Array, sourceFileName: string, displayAsIcon: boolean, label: string) : void;
|
|
50701
51970
|
/**
|
|
50702
51971
|
* Sets embedded object data.
|
|
50703
51972
|
* @param linkToFile - Indicates whether the object links to the file. If true, the parameter objectData is ignored.
|
|
@@ -50710,7 +51979,7 @@ export class OleObject extends Shape {
|
|
|
50710
51979
|
* @remarks
|
|
50711
51980
|
* As Aspose can update embedd all file icons, so it's better that you can add correct icon with <paramref name="updateIcon"/> as false.
|
|
50712
51981
|
*/
|
|
50713
|
-
setEmbeddedObject(linkToFile: boolean, objectData:
|
|
51982
|
+
setEmbeddedObject(linkToFile: boolean, objectData: Uint8Array, sourceFileName: string, displayAsIcon: boolean, label: string, updateIcon: boolean) : void;
|
|
50714
51983
|
/**
|
|
50715
51984
|
* Sets the ole native source full file name with path.
|
|
50716
51985
|
* @param sourceFullName - the ole native source full file name
|
|
@@ -50743,7 +52012,7 @@ export class OleObjectCollection {
|
|
|
50743
52012
|
* @returns
|
|
50744
52013
|
* <see cref="OleObject"/> object index.
|
|
50745
52014
|
*/
|
|
50746
|
-
add(upperLeftRow: number, upperLeftColumn: number, height: number, width: number, imageData:
|
|
52015
|
+
add(upperLeftRow: number, upperLeftColumn: number, height: number, width: number, imageData: Uint8Array) : number;
|
|
50747
52016
|
/**
|
|
50748
52017
|
* Adds a linked OleObject to the collection.
|
|
50749
52018
|
* @param upperLeftRow - Upper left row index.
|
|
@@ -50755,7 +52024,7 @@ export class OleObjectCollection {
|
|
|
50755
52024
|
* @returns
|
|
50756
52025
|
* <see cref="OleObject"/> object index.
|
|
50757
52026
|
*/
|
|
50758
|
-
add(upperLeftRow: number, upperLeftColumn: number, height: number, width: number, imageData:
|
|
52027
|
+
add(upperLeftRow: number, upperLeftColumn: number, height: number, width: number, imageData: Uint8Array, linkedFile: string) : number;
|
|
50759
52028
|
/**
|
|
50760
52029
|
* Remove all embedded OLE objects.
|
|
50761
52030
|
*/
|
|
@@ -51435,12 +52704,12 @@ export class Picture extends Shape {
|
|
|
51435
52704
|
/**
|
|
51436
52705
|
* Gets the data of the picture.
|
|
51437
52706
|
*/
|
|
51438
|
-
getData() :
|
|
52707
|
+
getData() : Uint8Array;
|
|
51439
52708
|
/**
|
|
51440
52709
|
* Gets the data of the picture.
|
|
51441
52710
|
* @param value - The value to set.
|
|
51442
52711
|
*/
|
|
51443
|
-
setData(value:
|
|
52712
|
+
setData(value: Uint8Array) : void;
|
|
51444
52713
|
/**
|
|
51445
52714
|
* Gets or sets the path and name of the source file for the linked image.
|
|
51446
52715
|
*
|
|
@@ -51558,7 +52827,7 @@ export class Picture extends Shape {
|
|
|
51558
52827
|
* Returns whether the shape is same.
|
|
51559
52828
|
* @param obj -
|
|
51560
52829
|
*/
|
|
51561
|
-
isSameSetting(obj:
|
|
52830
|
+
isSameSetting(obj: Object) : boolean;
|
|
51562
52831
|
/**
|
|
51563
52832
|
* Checks whether the implementation object is null.
|
|
51564
52833
|
*/
|
|
@@ -53157,7 +54426,7 @@ export class Shape {
|
|
|
53157
54426
|
/**
|
|
53158
54427
|
* Gets the data of control.
|
|
53159
54428
|
*/
|
|
53160
|
-
getControlData() :
|
|
54429
|
+
getControlData() : Uint8Array;
|
|
53161
54430
|
/**
|
|
53162
54431
|
* Gets the ActiveX control.
|
|
53163
54432
|
*/
|
|
@@ -53348,7 +54617,7 @@ export class Shape {
|
|
|
53348
54617
|
* Returns whether the shape is same.
|
|
53349
54618
|
* @param obj -
|
|
53350
54619
|
*/
|
|
53351
|
-
isSameSetting(obj:
|
|
54620
|
+
isSameSetting(obj: Object) : boolean;
|
|
53352
54621
|
/**
|
|
53353
54622
|
* Get the actual position and size of the shape (after applying rotation, flip, etc.)
|
|
53354
54623
|
* @returns
|
|
@@ -53635,7 +54904,7 @@ export class ShapeCollection {
|
|
|
53635
54904
|
* @param imageData - The image data,only applies for the picture.
|
|
53636
54905
|
* @param isOriginalSize - Whether the shape use original size if the shape is image.
|
|
53637
54906
|
*/
|
|
53638
|
-
addFreeFloatingShape(type: MsoDrawingType, top: number, left: number, height: number, width: number, imageData:
|
|
54907
|
+
addFreeFloatingShape(type: MsoDrawingType, top: number, left: number, height: number, width: number, imageData: Uint8Array, isOriginalSize: boolean) : Shape;
|
|
53639
54908
|
/**
|
|
53640
54909
|
* Add a shape to chart .All unit is 1/4000 of chart area.
|
|
53641
54910
|
* @param type - The drawing type.
|
|
@@ -53646,7 +54915,7 @@ export class ShapeCollection {
|
|
|
53646
54915
|
* @param bottom - In unit of 1/4000 chart area height.
|
|
53647
54916
|
* @param imageData - If the shape is not a picture or ole object,imageData should be null.
|
|
53648
54917
|
*/
|
|
53649
|
-
addShapeInChart(type: MsoDrawingType, placement: PlacementType, left: number, top: number, right: number, bottom: number, imageData:
|
|
54918
|
+
addShapeInChart(type: MsoDrawingType, placement: PlacementType, left: number, top: number, right: number, bottom: number, imageData: Uint8Array) : Shape;
|
|
53650
54919
|
/**
|
|
53651
54920
|
* Add a shape to chart .All unit is 1/4000 of chart area.
|
|
53652
54921
|
* @param type - The drawing type.
|
|
@@ -53677,7 +54946,7 @@ export class ShapeCollection {
|
|
|
53677
54946
|
* @param bottom - Unit is percent scale of chart area height.
|
|
53678
54947
|
* @param imageData - If the shape is not a picture or ole object,imageData should be null.
|
|
53679
54948
|
*/
|
|
53680
|
-
addShapeInChartByScale(type: MsoDrawingType, placement: PlacementType, left: number, top: number, right: number, bottom: number, imageData:
|
|
54949
|
+
addShapeInChartByScale(type: MsoDrawingType, placement: PlacementType, left: number, top: number, right: number, bottom: number, imageData: Uint8Array) : Shape;
|
|
53681
54950
|
/**
|
|
53682
54951
|
* Adds a ArcShape to the worksheet.
|
|
53683
54952
|
* @param upperLeftRow - Upper left row index.
|
|
@@ -53780,7 +55049,7 @@ export class ShapeCollection {
|
|
|
53780
55049
|
* @param svgData - The svg image data.
|
|
53781
55050
|
* @param compatibleImageData - Converted image data from svg in order to be compatible with Excel 2016 or lower versions.
|
|
53782
55051
|
*/
|
|
53783
|
-
addSvg(upperLeftRow: number, top: number, upperLeftColumn: number, left: number, height: number, width: number, svgData:
|
|
55052
|
+
addSvg(upperLeftRow: number, top: number, upperLeftColumn: number, left: number, height: number, width: number, svgData: Uint8Array, compatibleImageData: Uint8Array) : Picture;
|
|
53784
55053
|
/**
|
|
53785
55054
|
* Adds svg image.
|
|
53786
55055
|
* @param upperLeftRow - Upper left row index.
|
|
@@ -53792,7 +55061,7 @@ export class ShapeCollection {
|
|
|
53792
55061
|
* @param imageByteData - The image byte data.
|
|
53793
55062
|
* @param compatibleImageData - Converted image data from svg in order to be compatible with Excel 2016 or lower versions.
|
|
53794
55063
|
*/
|
|
53795
|
-
addIcons(upperLeftRow: number, top: number, upperLeftColumn: number, left: number, height: number, width: number, imageByteData:
|
|
55064
|
+
addIcons(upperLeftRow: number, top: number, upperLeftColumn: number, left: number, height: number, width: number, imageByteData: Uint8Array, compatibleImageData: Uint8Array) : Picture;
|
|
53796
55065
|
/**
|
|
53797
55066
|
* Add a linked picture.
|
|
53798
55067
|
* @param upperLeftRow - Upper left row index.
|
|
@@ -53836,7 +55105,7 @@ export class ShapeCollection {
|
|
|
53836
55105
|
* @param width -
|
|
53837
55106
|
* @param imageData -
|
|
53838
55107
|
*/
|
|
53839
|
-
addOleObject(upperLeftRow: number, top: number, upperLeftColumn: number, left: number, height: number, width: number, imageData:
|
|
55108
|
+
addOleObject(upperLeftRow: number, top: number, upperLeftColumn: number, left: number, height: number, width: number, imageData: Uint8Array) : OleObject;
|
|
53840
55109
|
/**
|
|
53841
55110
|
* Copy all comments in the range.
|
|
53842
55111
|
* @param shapes - The source shapes.
|
|
@@ -54923,7 +56192,7 @@ export class Style {
|
|
|
54923
56192
|
* @returns
|
|
54924
56193
|
* true if the specified Object is equal to the current Object; otherwise, false.
|
|
54925
56194
|
*/
|
|
54926
|
-
equals(obj:
|
|
56195
|
+
equals(obj: Object) : boolean;
|
|
54927
56196
|
/**
|
|
54928
56197
|
* Serves as a hash function for a Style object.
|
|
54929
56198
|
* @returns
|
|
@@ -56994,7 +58263,7 @@ export class FontSettingCollection {
|
|
|
56994
58263
|
/**
|
|
56995
58264
|
* @param obj -
|
|
56996
58265
|
*/
|
|
56997
|
-
equals(obj:
|
|
58266
|
+
equals(obj: Object) : boolean;
|
|
56998
58267
|
/**
|
|
56999
58268
|
*/
|
|
57000
58269
|
getHashCode() : number;
|
|
@@ -57777,146 +59046,704 @@ export class Color {
|
|
|
57777
59046
|
*/
|
|
57778
59047
|
equals(color: Color): boolean;
|
|
57779
59048
|
|
|
57780
|
-
|
|
57781
|
-
|
|
57782
|
-
|
|
57783
|
-
static
|
|
57784
|
-
|
|
57785
|
-
|
|
57786
|
-
|
|
57787
|
-
static
|
|
57788
|
-
|
|
57789
|
-
|
|
57790
|
-
|
|
57791
|
-
|
|
57792
|
-
static
|
|
57793
|
-
|
|
57794
|
-
|
|
57795
|
-
|
|
57796
|
-
|
|
57797
|
-
static
|
|
57798
|
-
|
|
57799
|
-
|
|
57800
|
-
|
|
57801
|
-
|
|
57802
|
-
static
|
|
57803
|
-
|
|
57804
|
-
|
|
57805
|
-
|
|
57806
|
-
|
|
57807
|
-
static
|
|
57808
|
-
|
|
57809
|
-
|
|
57810
|
-
|
|
57811
|
-
|
|
57812
|
-
static
|
|
57813
|
-
|
|
57814
|
-
|
|
57815
|
-
|
|
57816
|
-
|
|
57817
|
-
static
|
|
57818
|
-
|
|
57819
|
-
|
|
57820
|
-
|
|
57821
|
-
|
|
57822
|
-
static
|
|
57823
|
-
|
|
57824
|
-
|
|
57825
|
-
|
|
57826
|
-
|
|
57827
|
-
static
|
|
57828
|
-
|
|
57829
|
-
|
|
57830
|
-
|
|
57831
|
-
|
|
57832
|
-
static
|
|
57833
|
-
|
|
57834
|
-
|
|
57835
|
-
|
|
57836
|
-
|
|
57837
|
-
static
|
|
57838
|
-
|
|
57839
|
-
|
|
57840
|
-
|
|
57841
|
-
|
|
57842
|
-
static
|
|
57843
|
-
|
|
57844
|
-
|
|
57845
|
-
|
|
57846
|
-
|
|
57847
|
-
static
|
|
57848
|
-
|
|
57849
|
-
|
|
57850
|
-
|
|
57851
|
-
|
|
57852
|
-
static
|
|
57853
|
-
|
|
57854
|
-
|
|
57855
|
-
|
|
57856
|
-
|
|
57857
|
-
static
|
|
57858
|
-
|
|
57859
|
-
|
|
57860
|
-
|
|
57861
|
-
|
|
57862
|
-
static
|
|
57863
|
-
|
|
57864
|
-
|
|
57865
|
-
|
|
57866
|
-
|
|
57867
|
-
static
|
|
57868
|
-
|
|
57869
|
-
|
|
57870
|
-
|
|
57871
|
-
|
|
57872
|
-
static
|
|
57873
|
-
|
|
57874
|
-
|
|
57875
|
-
|
|
57876
|
-
|
|
57877
|
-
static
|
|
57878
|
-
|
|
57879
|
-
|
|
57880
|
-
|
|
57881
|
-
|
|
57882
|
-
static
|
|
57883
|
-
|
|
57884
|
-
|
|
57885
|
-
|
|
57886
|
-
|
|
57887
|
-
static
|
|
57888
|
-
|
|
57889
|
-
|
|
57890
|
-
|
|
57891
|
-
|
|
57892
|
-
static
|
|
57893
|
-
|
|
57894
|
-
|
|
57895
|
-
|
|
57896
|
-
|
|
57897
|
-
static
|
|
57898
|
-
|
|
57899
|
-
|
|
57900
|
-
|
|
57901
|
-
|
|
57902
|
-
static
|
|
57903
|
-
|
|
57904
|
-
|
|
57905
|
-
|
|
57906
|
-
|
|
57907
|
-
static
|
|
57908
|
-
|
|
57909
|
-
|
|
57910
|
-
|
|
57911
|
-
|
|
57912
|
-
static
|
|
57913
|
-
|
|
57914
|
-
|
|
57915
|
-
|
|
57916
|
-
|
|
57917
|
-
static
|
|
57918
|
-
|
|
57919
|
-
|
|
59049
|
+
/**
|
|
59050
|
+
* r: 0x00, g: 0x00, b: 0x00
|
|
59051
|
+
*/
|
|
59052
|
+
static Black: Color;
|
|
59053
|
+
/**
|
|
59054
|
+
* r: 0x00, g: 0x00, b: 0x80
|
|
59055
|
+
*/
|
|
59056
|
+
static Navy: Color;
|
|
59057
|
+
|
|
59058
|
+
/**
|
|
59059
|
+
* r: 0x00, g: 0x00, b: 0x8b
|
|
59060
|
+
*/
|
|
59061
|
+
static DarkBlue: Color;
|
|
59062
|
+
|
|
59063
|
+
/**
|
|
59064
|
+
* r: 0x00, g: 0x00, b: 0xcd
|
|
59065
|
+
*/
|
|
59066
|
+
static MediumBlue: Color;
|
|
59067
|
+
|
|
59068
|
+
/**
|
|
59069
|
+
* r: 0x00, g: 0x00, b: 0xff
|
|
59070
|
+
*/
|
|
59071
|
+
static Blue: Color;
|
|
59072
|
+
|
|
59073
|
+
/**
|
|
59074
|
+
* r: 0x00, g: 0x64, b: 0x00
|
|
59075
|
+
*/
|
|
59076
|
+
static DarkGreen: Color;
|
|
59077
|
+
|
|
59078
|
+
/**
|
|
59079
|
+
* r: 0x00, g: 0x80, b: 0x00
|
|
59080
|
+
*/
|
|
59081
|
+
static Green: Color;
|
|
59082
|
+
|
|
59083
|
+
/**
|
|
59084
|
+
* r: 0x00, g: 0x80, b: 0x80
|
|
59085
|
+
*/
|
|
59086
|
+
static Teal: Color;
|
|
59087
|
+
|
|
59088
|
+
/**
|
|
59089
|
+
* r: 0x00, g: 0x8b, b: 0x8b
|
|
59090
|
+
*/
|
|
59091
|
+
static DarkCyan: Color;
|
|
59092
|
+
|
|
59093
|
+
/**
|
|
59094
|
+
* r: 0x00, g: 0xbf, b: 0xff
|
|
59095
|
+
*/
|
|
59096
|
+
static DeepSkyBlue: Color;
|
|
59097
|
+
|
|
59098
|
+
/**
|
|
59099
|
+
* r: 0x00, g: 0xce, b: 0xd1
|
|
59100
|
+
*/
|
|
59101
|
+
static DarkTurquoise: Color;
|
|
59102
|
+
|
|
59103
|
+
/**
|
|
59104
|
+
* r: 0x00, g: 0xfa, b: 0x9a
|
|
59105
|
+
*/
|
|
59106
|
+
static MediumSpringGreen: Color;
|
|
59107
|
+
|
|
59108
|
+
/**
|
|
59109
|
+
* r: 0x00, g: 0xff, b: 0x00
|
|
59110
|
+
*/
|
|
59111
|
+
static Lime: Color;
|
|
59112
|
+
|
|
59113
|
+
/**
|
|
59114
|
+
* r: 0x00, g: 0xff, b: 0x7f
|
|
59115
|
+
*/
|
|
59116
|
+
static SpringGreen: Color;
|
|
59117
|
+
|
|
59118
|
+
/**
|
|
59119
|
+
* r: 0x00, g: 0xff, b: 0xff
|
|
59120
|
+
*/
|
|
59121
|
+
static Aqua: Color;
|
|
59122
|
+
|
|
59123
|
+
/**
|
|
59124
|
+
* r: 0x00, g: 0xff, b: 0xff
|
|
59125
|
+
*/
|
|
59126
|
+
static Cyan: Color;
|
|
59127
|
+
|
|
59128
|
+
/**
|
|
59129
|
+
* r: 0x19, g: 0x19, b: 0x70
|
|
59130
|
+
*/
|
|
59131
|
+
static MidnightBlue: Color;
|
|
59132
|
+
|
|
59133
|
+
/**
|
|
59134
|
+
* r: 0x1e, g: 0x90, b: 0xff
|
|
59135
|
+
*/
|
|
59136
|
+
static DodgerBlue: Color;
|
|
59137
|
+
|
|
59138
|
+
/**
|
|
59139
|
+
* r: 0x20, g: 0xb2, b: 0xaa
|
|
59140
|
+
*/
|
|
59141
|
+
static LightSeaGreen: Color;
|
|
59142
|
+
|
|
59143
|
+
/**
|
|
59144
|
+
* r: 0x22, g: 0x8b, b: 0x22
|
|
59145
|
+
*/
|
|
59146
|
+
static ForestGreen: Color;
|
|
59147
|
+
|
|
59148
|
+
/**
|
|
59149
|
+
* r: 0x2e, g: 0x8b, b: 0x57
|
|
59150
|
+
*/
|
|
59151
|
+
static SeaGreen: Color;
|
|
59152
|
+
|
|
59153
|
+
/**
|
|
59154
|
+
* r: 0x2f, g: 0x4f, b: 0x4f
|
|
59155
|
+
*/
|
|
59156
|
+
static DarkSlateGray: Color;
|
|
59157
|
+
|
|
59158
|
+
/**
|
|
59159
|
+
* r: 0x32, g: 0xcd, b: 0x32
|
|
59160
|
+
*/
|
|
59161
|
+
static LimeGreen: Color;
|
|
59162
|
+
|
|
59163
|
+
/**
|
|
59164
|
+
* r: 0x3c, g: 0xb3, b: 0x71
|
|
59165
|
+
*/
|
|
59166
|
+
static MediumSeaGreen: Color;
|
|
59167
|
+
|
|
59168
|
+
/**
|
|
59169
|
+
* r: 0x40, g: 0xe0, b: 0xd0
|
|
59170
|
+
*/
|
|
59171
|
+
static Turquoise: Color;
|
|
59172
|
+
|
|
59173
|
+
/**
|
|
59174
|
+
* r: 0x41, g: 0x69, b: 0xe1
|
|
59175
|
+
*/
|
|
59176
|
+
static RoyalBlue: Color;
|
|
59177
|
+
|
|
59178
|
+
/**
|
|
59179
|
+
* r: 0x46, g: 0x82, b: 0xb4
|
|
59180
|
+
*/
|
|
59181
|
+
static SteelBlue: Color;
|
|
59182
|
+
|
|
59183
|
+
/**
|
|
59184
|
+
* r: 0x48, g: 0x3d, b: 0x8b
|
|
59185
|
+
*/
|
|
59186
|
+
static DarkSlateBlue: Color;
|
|
59187
|
+
|
|
59188
|
+
/**
|
|
59189
|
+
* r: 0x48, g: 0xd1, b: 0xcc
|
|
59190
|
+
*/
|
|
59191
|
+
static MediumTurquoise: Color;
|
|
59192
|
+
|
|
59193
|
+
/**
|
|
59194
|
+
* r: 0x4b, g: 0x00, b: 0x82
|
|
59195
|
+
*/
|
|
59196
|
+
static Indigo: Color;
|
|
59197
|
+
|
|
59198
|
+
/**
|
|
59199
|
+
* r: 0x55, g: 0x6b, b: 0x2f
|
|
59200
|
+
*/
|
|
59201
|
+
static DarkOliveGreen: Color;
|
|
59202
|
+
|
|
59203
|
+
/**
|
|
59204
|
+
* r: 0x5f, g: 0x9e, b: 0xa0
|
|
59205
|
+
*/
|
|
59206
|
+
static CadetBlue: Color;
|
|
59207
|
+
|
|
59208
|
+
/**
|
|
59209
|
+
* r: 0x64, g: 0x95, b: 0xed
|
|
59210
|
+
*/
|
|
59211
|
+
static CornflowerBlue: Color;
|
|
59212
|
+
|
|
59213
|
+
/**
|
|
59214
|
+
* r: 0x66, g: 0xcd, b: 0xaa
|
|
59215
|
+
*/
|
|
59216
|
+
static MediumAquaMarine: Color;
|
|
59217
|
+
|
|
59218
|
+
/**
|
|
59219
|
+
* r: 0x69, g: 0x69, b: 0x69
|
|
59220
|
+
*/
|
|
59221
|
+
static DimGray: Color;
|
|
59222
|
+
|
|
59223
|
+
/**
|
|
59224
|
+
* r: 0x6a, g: 0x5a, b: 0xcd
|
|
59225
|
+
*/
|
|
59226
|
+
static SlateBlue: Color;
|
|
59227
|
+
|
|
59228
|
+
/**
|
|
59229
|
+
* r: 0x6b, g: 0x8e, b: 0x23
|
|
59230
|
+
*/
|
|
59231
|
+
static OliveDrab: Color;
|
|
59232
|
+
|
|
59233
|
+
/**
|
|
59234
|
+
* r: 0x70, g: 0x80, b: 0x90
|
|
59235
|
+
*/
|
|
59236
|
+
static SlateGray: Color;
|
|
59237
|
+
|
|
59238
|
+
/**
|
|
59239
|
+
* r: 0x77, g: 0x88, b: 0x99
|
|
59240
|
+
*/
|
|
59241
|
+
static LightSlateGray: Color;
|
|
59242
|
+
|
|
59243
|
+
/**
|
|
59244
|
+
* r: 0x7b, g: 0x68, b: 0xee
|
|
59245
|
+
*/
|
|
59246
|
+
static MediumSlateBlue: Color;
|
|
59247
|
+
|
|
59248
|
+
/**
|
|
59249
|
+
* r: 0x7c, g: 0xfc, b: 0x00
|
|
59250
|
+
*/
|
|
59251
|
+
static LawnGreen: Color;
|
|
59252
|
+
|
|
59253
|
+
/**
|
|
59254
|
+
* r: 0x7f, g: 0xff, b: 0x00
|
|
59255
|
+
*/
|
|
59256
|
+
static Chartreuse: Color;
|
|
59257
|
+
|
|
59258
|
+
/**
|
|
59259
|
+
* r: 0x7f, g: 0xff, b: 0xd4
|
|
59260
|
+
*/
|
|
59261
|
+
static Aquamarine: Color;
|
|
59262
|
+
|
|
59263
|
+
/**
|
|
59264
|
+
* r: 0x80, g: 0x00, b: 0x00
|
|
59265
|
+
*/
|
|
59266
|
+
static Maroon: Color;
|
|
59267
|
+
|
|
59268
|
+
/**
|
|
59269
|
+
* r: 0x80, g: 0x00, b: 0x80
|
|
59270
|
+
*/
|
|
59271
|
+
static Purple: Color;
|
|
59272
|
+
|
|
59273
|
+
/**
|
|
59274
|
+
* r: 0x80, g: 0x80, b: 0x00
|
|
59275
|
+
*/
|
|
59276
|
+
static Olive: Color;
|
|
59277
|
+
|
|
59278
|
+
/**
|
|
59279
|
+
* r: 0x80, g: 0x80, b: 0x80
|
|
59280
|
+
*/
|
|
59281
|
+
static Gray: Color;
|
|
59282
|
+
|
|
59283
|
+
/**
|
|
59284
|
+
* r: 0x87, g: 0xce, b: 0xeb
|
|
59285
|
+
*/
|
|
59286
|
+
static SkyBlue: Color;
|
|
59287
|
+
|
|
59288
|
+
/**
|
|
59289
|
+
* r: 0x87, g: 0xce, b: 0xfa
|
|
59290
|
+
*/
|
|
59291
|
+
static LightSkyBlue: Color;
|
|
59292
|
+
|
|
59293
|
+
/**
|
|
59294
|
+
* r: 0x8a, g: 0x2b, b: 0xe2
|
|
59295
|
+
*/
|
|
59296
|
+
static BlueViolet: Color;
|
|
59297
|
+
|
|
59298
|
+
/**
|
|
59299
|
+
* r: 0x8b, g: 0x00, b: 0x00
|
|
59300
|
+
*/
|
|
59301
|
+
static DarkRed: Color;
|
|
59302
|
+
|
|
59303
|
+
/**
|
|
59304
|
+
* r: 0x8b, g: 0x00, b: 0x8b
|
|
59305
|
+
*/
|
|
59306
|
+
static DarkMagenta: Color;
|
|
59307
|
+
|
|
59308
|
+
/**
|
|
59309
|
+
* r: 0x8b, g: 0x45, b: 0x13
|
|
59310
|
+
*/
|
|
59311
|
+
static SaddleBrown: Color;
|
|
59312
|
+
|
|
59313
|
+
/**
|
|
59314
|
+
* r: 0x8f, g: 0xbc, b: 0x8f
|
|
59315
|
+
*/
|
|
59316
|
+
static DarkSeaGreen: Color;
|
|
59317
|
+
|
|
59318
|
+
/**
|
|
59319
|
+
* r: 0x90, g: 0xee, b: 0x90
|
|
59320
|
+
*/
|
|
59321
|
+
static LightGreen: Color;
|
|
59322
|
+
|
|
59323
|
+
/**
|
|
59324
|
+
* r: 0x93, g: 0x70, b: 0xdb
|
|
59325
|
+
*/
|
|
59326
|
+
static MediumPurple: Color;
|
|
59327
|
+
|
|
59328
|
+
/**
|
|
59329
|
+
* r: 0x94, g: 0x00, b: 0xd3
|
|
59330
|
+
*/
|
|
59331
|
+
static DarkViolet: Color;
|
|
59332
|
+
|
|
59333
|
+
/**
|
|
59334
|
+
* r: 0x98, g: 0xfb, b: 0x98
|
|
59335
|
+
*/
|
|
59336
|
+
static PaleGreen: Color;
|
|
59337
|
+
|
|
59338
|
+
/**
|
|
59339
|
+
* r: 0x99, g: 0x32, b: 0xcc
|
|
59340
|
+
*/
|
|
59341
|
+
static DarkOrchid: Color;
|
|
59342
|
+
|
|
59343
|
+
/**
|
|
59344
|
+
* r: 0x9a, g: 0xcd, b: 0x32
|
|
59345
|
+
*/
|
|
59346
|
+
static YellowGreen: Color;
|
|
59347
|
+
|
|
59348
|
+
/**
|
|
59349
|
+
* r: 0xa0, g: 0x52, b: 0x2d
|
|
59350
|
+
*/
|
|
59351
|
+
static Sienna: Color;
|
|
59352
|
+
|
|
59353
|
+
/**
|
|
59354
|
+
* r: 0xa5, g: 0x2a, b: 0x2a
|
|
59355
|
+
*/
|
|
59356
|
+
static Brown: Color;
|
|
59357
|
+
|
|
59358
|
+
/**
|
|
59359
|
+
* r: 0xa9, g: 0xa9, b: 0xa9
|
|
59360
|
+
*/
|
|
59361
|
+
static DarkGray: Color;
|
|
59362
|
+
|
|
59363
|
+
/**
|
|
59364
|
+
* r: 0xad, g: 0xd8, b: 0xe6
|
|
59365
|
+
*/
|
|
59366
|
+
static LightBlue: Color;
|
|
59367
|
+
|
|
59368
|
+
/**
|
|
59369
|
+
* r: 0xad, g: 0xff, b: 0x2f
|
|
59370
|
+
*/
|
|
59371
|
+
static GreenYellow: Color;
|
|
59372
|
+
|
|
59373
|
+
/**
|
|
59374
|
+
* r: 0xaf, g: 0xee, b: 0xee
|
|
59375
|
+
*/
|
|
59376
|
+
static PaleTurquoise: Color;
|
|
59377
|
+
|
|
59378
|
+
/**
|
|
59379
|
+
* r: 0xb0, g: 0xc4, b: 0xde
|
|
59380
|
+
*/
|
|
59381
|
+
static LightSteelBlue: Color;
|
|
59382
|
+
|
|
59383
|
+
/**
|
|
59384
|
+
* r: 0xb0, g: 0xe0, b: 0xe6
|
|
59385
|
+
*/
|
|
59386
|
+
static PowderBlue: Color;
|
|
59387
|
+
|
|
59388
|
+
/**
|
|
59389
|
+
* r: 0xb2, g: 0x22, b: 0x22
|
|
59390
|
+
*/
|
|
59391
|
+
static FireBrick: Color;
|
|
59392
|
+
|
|
59393
|
+
/**
|
|
59394
|
+
* r: 0xb8, g: 0x86, b: 0x0b
|
|
59395
|
+
*/
|
|
59396
|
+
static DarkGoldenRod: Color;
|
|
59397
|
+
|
|
59398
|
+
/**
|
|
59399
|
+
* r: 0xba, g: 0x55, b: 0xd3
|
|
59400
|
+
*/
|
|
59401
|
+
static MediumOrchid: Color;
|
|
59402
|
+
|
|
59403
|
+
/**
|
|
59404
|
+
* r: 0xbc, g: 0x8f, b: 0x8f
|
|
59405
|
+
*/
|
|
59406
|
+
static RosyBrown: Color;
|
|
59407
|
+
|
|
59408
|
+
/**
|
|
59409
|
+
* r: 0xbd, g: 0xb7, b: 0x6b
|
|
59410
|
+
*/
|
|
59411
|
+
static DarkKhaki: Color;
|
|
59412
|
+
|
|
59413
|
+
/**
|
|
59414
|
+
* r: 0xc0, g: 0xc0, b: 0xc0
|
|
59415
|
+
*/
|
|
59416
|
+
static Silver: Color;
|
|
59417
|
+
|
|
59418
|
+
/**
|
|
59419
|
+
* r: 0xc7, g: 0x15, b: 0x85
|
|
59420
|
+
*/
|
|
59421
|
+
static MediumVioletRed: Color;
|
|
59422
|
+
|
|
59423
|
+
/**
|
|
59424
|
+
* r: 0xcd, g: 0x5c, b: 0x5c
|
|
59425
|
+
*/
|
|
59426
|
+
static IndianRed: Color;
|
|
59427
|
+
|
|
59428
|
+
/**
|
|
59429
|
+
* r: 0xcd, g: 0x85, b: 0x3f
|
|
59430
|
+
*/
|
|
59431
|
+
static Peru: Color;
|
|
59432
|
+
|
|
59433
|
+
/**
|
|
59434
|
+
* r: 0xd2, g: 0x69, b: 0x1e
|
|
59435
|
+
*/
|
|
59436
|
+
static Chocolate: Color;
|
|
59437
|
+
|
|
59438
|
+
/**
|
|
59439
|
+
* r: 0xd2, g: 0xb4, b: 0x8c
|
|
59440
|
+
*/
|
|
59441
|
+
static Tan: Color;
|
|
59442
|
+
|
|
59443
|
+
/**
|
|
59444
|
+
* r: 0xd3, g: 0xd3, b: 0xd3
|
|
59445
|
+
*/
|
|
59446
|
+
static LightGray: Color;
|
|
59447
|
+
|
|
59448
|
+
/**
|
|
59449
|
+
* r: 0xd8, g: 0xbf, b: 0xd8
|
|
59450
|
+
*/
|
|
59451
|
+
static Thistle: Color;
|
|
59452
|
+
|
|
59453
|
+
/**
|
|
59454
|
+
* r: 0xda, g: 0x70, b: 0xd6
|
|
59455
|
+
*/
|
|
59456
|
+
static Orchid: Color;
|
|
59457
|
+
|
|
59458
|
+
/**
|
|
59459
|
+
* r: 0xda, g: 0xa5, b: 0x20
|
|
59460
|
+
*/
|
|
59461
|
+
static GoldenRod: Color;
|
|
59462
|
+
|
|
59463
|
+
/**
|
|
59464
|
+
* r: 0xdb, g: 0x70, b: 0x93
|
|
59465
|
+
*/
|
|
59466
|
+
static PaleVioletRed: Color;
|
|
59467
|
+
|
|
59468
|
+
/**
|
|
59469
|
+
* r: 0xdc, g: 0x14, b: 0x3c
|
|
59470
|
+
*/
|
|
59471
|
+
static Crimson: Color;
|
|
59472
|
+
|
|
59473
|
+
/**
|
|
59474
|
+
* r: 0xdc, g: 0xdc, b: 0xdc
|
|
59475
|
+
*/
|
|
59476
|
+
static Gainsboro: Color;
|
|
59477
|
+
|
|
59478
|
+
/**
|
|
59479
|
+
* r: 0xdd, g: 0xa0, b: 0xdd
|
|
59480
|
+
*/
|
|
59481
|
+
static Plum: Color;
|
|
59482
|
+
|
|
59483
|
+
/**
|
|
59484
|
+
* r: 0xde, g: 0xb8, b: 0x87
|
|
59485
|
+
*/
|
|
59486
|
+
static BurlyWood: Color;
|
|
59487
|
+
|
|
59488
|
+
/**
|
|
59489
|
+
* r: 0xe0, g: 0xff, b: 0xff
|
|
59490
|
+
*/
|
|
59491
|
+
static LightCyan: Color;
|
|
59492
|
+
|
|
59493
|
+
/**
|
|
59494
|
+
* r: 0xe6, g: 0xe6, b: 0xfa
|
|
59495
|
+
*/
|
|
59496
|
+
static Lavender: Color;
|
|
59497
|
+
|
|
59498
|
+
/**
|
|
59499
|
+
* r: 0xe9, g: 0x96, b: 0x7a
|
|
59500
|
+
*/
|
|
59501
|
+
static DarkSalmon: Color;
|
|
59502
|
+
|
|
59503
|
+
/**
|
|
59504
|
+
* r: 0xee, g: 0x82, b: 0xee
|
|
59505
|
+
*/
|
|
59506
|
+
static Violet: Color;
|
|
59507
|
+
|
|
59508
|
+
/**
|
|
59509
|
+
* r: 0xee, g: 0xe8, b: 0xaa
|
|
59510
|
+
*/
|
|
59511
|
+
static PaleGoldenRod: Color;
|
|
59512
|
+
|
|
59513
|
+
/**
|
|
59514
|
+
* r: 0xf0, g: 0x80, b: 0x80
|
|
59515
|
+
*/
|
|
59516
|
+
static LightCoral: Color;
|
|
59517
|
+
|
|
59518
|
+
/**
|
|
59519
|
+
* r: 0xf0, g: 0xe6, b: 0x8c
|
|
59520
|
+
*/
|
|
59521
|
+
static Khaki: Color;
|
|
59522
|
+
|
|
59523
|
+
/**
|
|
59524
|
+
* r: 0xf0, g: 0xf8, b: 0xff
|
|
59525
|
+
*/
|
|
59526
|
+
static AliceBlue: Color;
|
|
59527
|
+
|
|
59528
|
+
/**
|
|
59529
|
+
* r: 0xf0, g: 0xff, b: 0xf0
|
|
59530
|
+
*/
|
|
59531
|
+
static HoneyDew: Color;
|
|
59532
|
+
|
|
59533
|
+
/**
|
|
59534
|
+
* r: 0xf0, g: 0xff, b: 0xff
|
|
59535
|
+
*/
|
|
59536
|
+
static Azure: Color;
|
|
59537
|
+
|
|
59538
|
+
/**
|
|
59539
|
+
* r: 0xf4, g: 0xa4, b: 0x60
|
|
59540
|
+
*/
|
|
59541
|
+
static SandyBrown: Color;
|
|
59542
|
+
|
|
59543
|
+
/**
|
|
59544
|
+
* r: 0xf5, g: 0xde, b: 0xb3
|
|
59545
|
+
*/
|
|
59546
|
+
static Wheat: Color;
|
|
59547
|
+
|
|
59548
|
+
/**
|
|
59549
|
+
* r: 0xf5, g: 0xf5, b: 0xdc
|
|
59550
|
+
*/
|
|
59551
|
+
static Beige: Color;
|
|
59552
|
+
|
|
59553
|
+
/**
|
|
59554
|
+
* r: 0xf5, g: 0xf5, b: 0xf5
|
|
59555
|
+
*/
|
|
59556
|
+
static WhiteSmoke: Color;
|
|
59557
|
+
|
|
59558
|
+
/**
|
|
59559
|
+
* r: 0xf5, g: 0xff, b: 0xfa
|
|
59560
|
+
*/
|
|
59561
|
+
static MintCream: Color;
|
|
59562
|
+
|
|
59563
|
+
/**
|
|
59564
|
+
* r: 0xf8, g: 0xf8, b: 0xff
|
|
59565
|
+
*/
|
|
59566
|
+
static GhostWhite: Color;
|
|
59567
|
+
|
|
59568
|
+
/**
|
|
59569
|
+
* r: 0xfa, g: 0x80, b: 0x72
|
|
59570
|
+
*/
|
|
59571
|
+
static Salmon: Color;
|
|
59572
|
+
|
|
59573
|
+
/**
|
|
59574
|
+
* r: 0xfa, g: 0xeb, b: 0xd7
|
|
59575
|
+
*/
|
|
59576
|
+
static AntiqueWhite: Color;
|
|
59577
|
+
|
|
59578
|
+
/**
|
|
59579
|
+
* r: 0xfa, g: 0xf0, b: 0xe6
|
|
59580
|
+
*/
|
|
59581
|
+
static Linen: Color;
|
|
59582
|
+
|
|
59583
|
+
/**
|
|
59584
|
+
* r: 0xfa, g: 0xfa, b: 0xd2
|
|
59585
|
+
*/
|
|
59586
|
+
static LightGoldenRodYellow: Color;
|
|
59587
|
+
|
|
59588
|
+
/**
|
|
59589
|
+
* r: 0xfd, g: 0xf5, b: 0xe6
|
|
59590
|
+
*/
|
|
59591
|
+
static OldLace: Color;
|
|
59592
|
+
|
|
59593
|
+
/**
|
|
59594
|
+
* r: 0xff, g: 0x00, b: 0x00
|
|
59595
|
+
*/
|
|
59596
|
+
static Red: Color;
|
|
59597
|
+
|
|
59598
|
+
/**
|
|
59599
|
+
* r: 0xff, g: 0x00, b: 0xff
|
|
59600
|
+
*/
|
|
59601
|
+
static Fuchsia: Color;
|
|
59602
|
+
|
|
59603
|
+
/**
|
|
59604
|
+
* r: 0xff, g: 0x00, b: 0xff
|
|
59605
|
+
*/
|
|
59606
|
+
static Magenta: Color;
|
|
59607
|
+
|
|
59608
|
+
/**
|
|
59609
|
+
* r: 0xff, g: 0x14, b: 0x93
|
|
59610
|
+
*/
|
|
59611
|
+
static DeepPink: Color;
|
|
59612
|
+
|
|
59613
|
+
/**
|
|
59614
|
+
* r: 0xff, g: 0x45, b: 0x00
|
|
59615
|
+
*/
|
|
59616
|
+
static OrangeRed: Color;
|
|
59617
|
+
|
|
59618
|
+
/**
|
|
59619
|
+
* r: 0xff, g: 0x63, b: 0x47
|
|
59620
|
+
*/
|
|
59621
|
+
static Tomato: Color;
|
|
59622
|
+
|
|
59623
|
+
/**
|
|
59624
|
+
* r: 0xff, g: 0x69, b: 0xb4
|
|
59625
|
+
*/
|
|
59626
|
+
static HotPink: Color;
|
|
59627
|
+
|
|
59628
|
+
/**
|
|
59629
|
+
* r: 0xff, g: 0x7f, b: 0x50
|
|
59630
|
+
*/
|
|
59631
|
+
static Coral: Color;
|
|
59632
|
+
|
|
59633
|
+
/**
|
|
59634
|
+
* r: 0xff, g: 0x8c, b: 0x00
|
|
59635
|
+
*/
|
|
59636
|
+
static DarkOrange: Color;
|
|
59637
|
+
|
|
59638
|
+
/**
|
|
59639
|
+
* r: 0xff, g: 0xa0, b: 0x7a
|
|
59640
|
+
*/
|
|
59641
|
+
static LightSalmon: Color;
|
|
59642
|
+
|
|
59643
|
+
/**
|
|
59644
|
+
* r: 0xff, g: 0xa5, b: 0x00
|
|
59645
|
+
*/
|
|
59646
|
+
static Orange: Color;
|
|
59647
|
+
|
|
59648
|
+
/**
|
|
59649
|
+
* r: 0xff, g: 0xb6, b: 0xc1
|
|
59650
|
+
*/
|
|
59651
|
+
static LightPink: Color;
|
|
59652
|
+
|
|
59653
|
+
/**
|
|
59654
|
+
* r: 0xff, g: 0xc0, b: 0xcb
|
|
59655
|
+
*/
|
|
59656
|
+
static Pink: Color;
|
|
59657
|
+
|
|
59658
|
+
/**
|
|
59659
|
+
* r: 0xff, g: 0xd7, b: 0x00
|
|
59660
|
+
*/
|
|
59661
|
+
static Gold: Color;
|
|
59662
|
+
|
|
59663
|
+
/**
|
|
59664
|
+
* r: 0xff, g: 0xda, b: 0xb9
|
|
59665
|
+
*/
|
|
59666
|
+
static PeachPuff: Color;
|
|
59667
|
+
|
|
59668
|
+
/**
|
|
59669
|
+
* r: 0xff, g: 0xde, b: 0xad
|
|
59670
|
+
*/
|
|
59671
|
+
static NavajoWhite: Color;
|
|
59672
|
+
|
|
59673
|
+
/**
|
|
59674
|
+
* r: 0xff, g: 0xe4, b: 0xb5
|
|
59675
|
+
*/
|
|
59676
|
+
static Moccasin: Color;
|
|
59677
|
+
|
|
59678
|
+
/**
|
|
59679
|
+
* r: 0xff, g: 0xe4, b: 0xc4
|
|
59680
|
+
*/
|
|
59681
|
+
static Bisque: Color;
|
|
59682
|
+
|
|
59683
|
+
/**
|
|
59684
|
+
* r: 0xff, g: 0xe4, b: 0xe1
|
|
59685
|
+
*/
|
|
59686
|
+
static MistyRose: Color;
|
|
59687
|
+
|
|
59688
|
+
/**
|
|
59689
|
+
* r: 0xff, g: 0xeb, b: 0xcd
|
|
59690
|
+
*/
|
|
59691
|
+
static BlanchedAlmond: Color;
|
|
59692
|
+
|
|
59693
|
+
/**
|
|
59694
|
+
* r: 0xff, g: 0xef, b: 0xd5
|
|
59695
|
+
*/
|
|
59696
|
+
static PapayaWhip: Color;
|
|
59697
|
+
|
|
59698
|
+
/**
|
|
59699
|
+
* r: 0xff, g: 0xf0, b: 0xf5
|
|
59700
|
+
*/
|
|
59701
|
+
static LavenderBlush: Color;
|
|
59702
|
+
|
|
59703
|
+
/**
|
|
59704
|
+
* r: 0xff, g: 0xf5, b: 0xee
|
|
59705
|
+
*/
|
|
59706
|
+
static SeaShell: Color;
|
|
59707
|
+
|
|
59708
|
+
/**
|
|
59709
|
+
* r: 0xff, g: 0xf8, b: 0xdc
|
|
59710
|
+
*/
|
|
59711
|
+
static Cornsilk: Color;
|
|
59712
|
+
|
|
59713
|
+
/**
|
|
59714
|
+
* r: 0xff, g: 0xfa, b: 0xcd
|
|
59715
|
+
*/
|
|
59716
|
+
static LemonChiffon: Color;
|
|
59717
|
+
|
|
59718
|
+
/**
|
|
59719
|
+
* r: 0xff, g: 0xfa, b: 0xf0
|
|
59720
|
+
*/
|
|
59721
|
+
static FloralWhite: Color;
|
|
59722
|
+
|
|
59723
|
+
/**
|
|
59724
|
+
* r: 0xff, g: 0xfa, b: 0xfa
|
|
59725
|
+
*/
|
|
59726
|
+
static Snow: Color;
|
|
59727
|
+
|
|
59728
|
+
/**
|
|
59729
|
+
* r: 0xff, g: 0xff, b: 0x00
|
|
59730
|
+
*/
|
|
59731
|
+
static Yellow: Color;
|
|
59732
|
+
|
|
59733
|
+
/**
|
|
59734
|
+
* r: 0xff, g: 0xff, b: 0xe0
|
|
59735
|
+
*/
|
|
59736
|
+
static LightYellow: Color;
|
|
59737
|
+
|
|
59738
|
+
/**
|
|
59739
|
+
* r: 0xff, g: 0xff, b: 0xf0
|
|
59740
|
+
*/
|
|
59741
|
+
static Ivory: Color;
|
|
59742
|
+
|
|
59743
|
+
/**
|
|
59744
|
+
* r: 0xff, g: 0xff, b: 0xff
|
|
59745
|
+
*/
|
|
59746
|
+
static White: Color;
|
|
57920
59747
|
}
|
|
57921
59748
|
|
|
57922
59749
|
/**
|