aspose.cells.node 24.10.0 → 24.12.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.
@@ -0,0 +1,3931 @@
1
+ // Copyright (c) 2001-2024 Aspose Pty Ltd. All Rights Reserved.
2
+ // Powered by Aspose.Cells.
3
+ 'use strict'
4
+
5
+ switch (process.platform) {
6
+ case "linux":
7
+ if (process.arch === "x64") {
8
+ module.exports = require("aspose.cells.node.linux.x64");
9
+ }
10
+ break;
11
+ case "win32":
12
+ if (process.arch === "x64") {
13
+ module.exports = require("aspose.cells.node.win32.x64");
14
+ }
15
+ break;
16
+ case "darwin":
17
+ if (process.arch === "arm64") {
18
+ module.exports = require("aspose.cells.node.darwin.arm64");
19
+ }
20
+ else if (process.arch === "x64") {
21
+ module.exports = require("aspose.cells.node.darwin.x64");
22
+ }
23
+ break;
24
+ default:
25
+ throw new Error("Unsupported platform or architecture");
26
+ }
27
+
28
+ exports = module.exports;
29
+
30
+
31
+ exports.ObjectType = {
32
+ Null : 0,
33
+ Bool : 1,
34
+ Number : 2,
35
+ Date : 3,
36
+ String : 4,
37
+ ReferredArea : 5,
38
+ Range : 6,
39
+ Array1D : 7,
40
+ Array2D : 8,
41
+ Object : 9,
42
+ };
43
+
44
+ exports.AutoFillType = {
45
+ Copy : 1,
46
+ Default : 0,
47
+ Formats : 3,
48
+ Series : 2,
49
+ Values : 4,
50
+ };
51
+
52
+ exports.FilterCategory = {
53
+ None : 0,
54
+ Label : 1,
55
+ NumberValue : 2,
56
+ Date : 3,
57
+ Top10 : 4,
58
+ };
59
+
60
+ exports.AutoFitMergedCellsType = {
61
+ None : 0,
62
+ FirstLine : 1,
63
+ LastLine : 2,
64
+ EachLine : 3,
65
+ };
66
+
67
+ exports.AutoFitWrappedTextType = {
68
+ Default : 0,
69
+ Paragraph : 1,
70
+ };
71
+
72
+ exports.ChartTextDirectionType = {
73
+ Horizontal : 0,
74
+ Vertical : 1,
75
+ Rotate90 : 2,
76
+ Rotate270 : 3,
77
+ Stacked : 4,
78
+ };
79
+
80
+ exports.PlotDataByType = {
81
+ Row : 0,
82
+ Column : 1,
83
+ };
84
+
85
+ exports.TickLabelAlignmentType = {
86
+ Center : 0,
87
+ Left : 1,
88
+ Right : 2,
89
+ };
90
+
91
+ exports.HtmlOfficeMathOutputType = {
92
+ Image : 0,
93
+ MathML : 1,
94
+ };
95
+
96
+ exports.ImageBinarizationMethod = {
97
+ Threshold : 0,
98
+ FloydSteinbergDithering : 1,
99
+ };
100
+
101
+ exports.CommentTitleType = {
102
+ Cell : 0,
103
+ Comment : 1,
104
+ Note : 2,
105
+ Reply : 3,
106
+ };
107
+
108
+ exports.AdjustFontSizeForRowType = {
109
+ None : 0,
110
+ EmptyRows : 1,
111
+ };
112
+
113
+ exports.SlideViewType = {
114
+ View : 0,
115
+ Print : 1,
116
+ };
117
+
118
+ exports.MergedCellsShrinkType = {
119
+ None : 0,
120
+ ShrinkToFit : 1,
121
+ KeepHeaderOnly : 2,
122
+ };
123
+
124
+ exports.PresetThemeGradientType = {
125
+ LightGradient : 0,
126
+ TopSpotlight : 1,
127
+ MediumGradient : 2,
128
+ BottomSpotlight : 3,
129
+ RadialGradient : 4,
130
+ };
131
+
132
+ exports.SignatureType = {
133
+ Default : 0,
134
+ Stamp : 1,
135
+ Custom : 3,
136
+ };
137
+
138
+ exports.EquationCombiningCharacterType = {
139
+ Unknown : -1,
140
+ DotAbove : 0,
141
+ Diaeresis : 1,
142
+ ThreeDotsAbove : 2,
143
+ CircumflexAccent : 3,
144
+ Caron : 4,
145
+ AcuteAccent : 5,
146
+ GraveAccent : 6,
147
+ Breve : 7,
148
+ Tilde : 8,
149
+ Overline : 9,
150
+ DoubleOverline : 10,
151
+ TopCurlyBracket : 11,
152
+ BottomCurlyBracket : 12,
153
+ LeftArrowAbove : 13,
154
+ RightArrowAbove : 14,
155
+ LeftRightArrowAbove : 15,
156
+ LeftHarpoonAbove : 16,
157
+ RightHarpoonAbove : 17,
158
+ LeftwardsArrow : 18,
159
+ RightwardsArrow : 19,
160
+ LeftRightArrow : 20,
161
+ LeftwardsDoubleArrow : 21,
162
+ RightwardsDoubleArrow : 22,
163
+ LeftRightDoubleArrow : 23,
164
+ };
165
+
166
+ exports.EquationMathematicalOperatorType = {
167
+ Unknown : -1,
168
+ ForAll : 0,
169
+ Complement : 1,
170
+ PartialDifferential : 2,
171
+ Exists : 3,
172
+ NotExists : 4,
173
+ EmptySet : 5,
174
+ Increment : 6,
175
+ Nabla : 7,
176
+ ElementOf : 8,
177
+ NotAnElementOf : 9,
178
+ SmallElementOf : 10,
179
+ Contain : 11,
180
+ NotContain : 12,
181
+ SmallContain : 13,
182
+ EndOfProof : 14,
183
+ NaryProduct : 15,
184
+ NaryCoproduct : 16,
185
+ NarySummation : 17,
186
+ LogicalAnd : 18,
187
+ LogicalOr : 19,
188
+ Intersection : 20,
189
+ Union : 21,
190
+ Integral : 22,
191
+ DoubleIntegral : 23,
192
+ TripleIntegral : 24,
193
+ ContourIntegral : 25,
194
+ SurfaceIntegral : 26,
195
+ VolumeIntegral : 27,
196
+ Clockwise : 28,
197
+ ClockwiseContourIntegral : 29,
198
+ AnticlockwiseContourIntegral : 30,
199
+ NaryLogicalAnd : 31,
200
+ NaryLogicalOr : 32,
201
+ NaryIntersection : 33,
202
+ NaryUnion : 34,
203
+ };
204
+
205
+ exports.EquationVerticalJustificationType = {
206
+ Top : 0,
207
+ Center : 1,
208
+ Bottom : 2,
209
+ };
210
+
211
+ exports.ShapeTextVerticalAlignmentType = {
212
+ Top : 0,
213
+ Middle : 1,
214
+ Bottom : 2,
215
+ TopCentered : 3,
216
+ MiddleCentered : 4,
217
+ BottomCentered : 5,
218
+ Left : 6,
219
+ Center : 7,
220
+ Right : 8,
221
+ LeftMiddle : 9,
222
+ CenterMiddle : 10,
223
+ RightMiddle : 11,
224
+ };
225
+
226
+ exports.ExternalConnectionClassType = {
227
+ Database : 0,
228
+ WebQuery : 1,
229
+ TextBased : 2,
230
+ DataModel : 3,
231
+ Unkown : 4,
232
+ };
233
+
234
+ exports.PowerQueryFormulaType = {
235
+ Formula : 0,
236
+ Function : 1,
237
+ Parameter : 2,
238
+ };
239
+
240
+ exports.ErrorCellValueType = {
241
+ Blocked : 10,
242
+ Busy : 14,
243
+ Calc : 13,
244
+ Connect : 9,
245
+ Name : 4,
246
+ Field : 12,
247
+ Spill : 8,
248
+ Unknown : 11,
249
+ TimeOut : 19,
250
+ External : 18,
251
+ };
252
+
253
+ exports.PivotLineType = {
254
+ Regular : 0,
255
+ Subtotal : 1,
256
+ GrandTotal : 2,
257
+ Blank : 3,
258
+ };
259
+
260
+ exports.PivotRefreshState = {
261
+ Success : 0,
262
+ UnsupportedExternalDataSource : 1,
263
+ };
264
+
265
+ exports.LoadNumbersTableType = {
266
+ OneTablePerSheet : 1,
267
+ OverrideOtherTables : 2,
268
+ TileTables : 4,
269
+ };
270
+
271
+ exports.OpenDocumentFormatVersionType = {
272
+ None : 0,
273
+ Odf11 : 1,
274
+ Odf12 : 2,
275
+ Odf13 : 3,
276
+ };
277
+
278
+ exports.PivotAreaType = {
279
+ None : 0,
280
+ Normal : 1,
281
+ Data : 2,
282
+ All : 3,
283
+ Origin : 4,
284
+ Button : 5,
285
+ TopRight : 6,
286
+ };
287
+
288
+ exports.PivotTableSelectionType = {
289
+ DataAndLabel : 0,
290
+ DataOnly : 2,
291
+ LabelOnly : 1,
292
+ };
293
+
294
+ exports.PivotFieldGroupType = {
295
+ None : 0,
296
+ DateTimeRange : 1,
297
+ NumbericRange : 2,
298
+ Discrete : 3,
299
+ };
300
+
301
+ exports.PivotItemPositionType = {
302
+ Previous : 0,
303
+ Next : 1,
304
+ Custom : 2,
305
+ };
306
+
307
+ exports.ReserveMissingPivotItemType = {
308
+ Default : 0,
309
+ All : 1,
310
+ None : 2,
311
+ };
312
+
313
+ exports.MergeEmptyTdType = {
314
+ Default : 0,
315
+ None : 1,
316
+ MergeForcely : 2,
317
+ };
318
+
319
+ exports.PdfFontEncoding = {
320
+ Identity : 0,
321
+ AnsiPrefer : 1,
322
+ };
323
+
324
+ exports.DefaultEditLanguage = {
325
+ Auto : 0,
326
+ English : 1,
327
+ CJK : 2,
328
+ };
329
+
330
+ exports.EmfRenderSetting = {
331
+ EmfOnly : 0,
332
+ EmfPlusPrefer : 1,
333
+ };
334
+
335
+ exports.XAdESType = {
336
+ None : 0,
337
+ XAdES : 1,
338
+ };
339
+
340
+ exports.ShapeAnchorType = {
341
+ TwoCellAnchor : 0,
342
+ OneCellAnchor : 1,
343
+ };
344
+
345
+ exports.EquationCharacterPositionType = {
346
+ Top : 0,
347
+ Bottom : 1,
348
+ };
349
+
350
+ exports.PdfCustomPropertiesExport = {
351
+ None : 0,
352
+ Standard : 1,
353
+ };
354
+
355
+ exports.CopyFormatType = {
356
+ SameAsAbove : 0,
357
+ SameAsBelow : 1,
358
+ Clear : 2,
359
+ };
360
+
361
+ exports.AccessCacheOptions = {
362
+ None : 0,
363
+ All : -1,
364
+ PositionAndSize : 3,
365
+ CellsData : 9,
366
+ CellDisplay : 1048710,
367
+ GetFormula : 2097152,
368
+ SetFormula : 4194304,
369
+ CalculateFormula : 8388617,
370
+ ConditionalFormatting : 16777225,
371
+ Validation : 33554441,
372
+ };
373
+
374
+ exports.MemorySetting = {
375
+ Normal : 0,
376
+ MemoryPreference : 1,
377
+ };
378
+
379
+ exports.DataLabelShapeType = {
380
+ Rect : 0,
381
+ RoundRect : 1,
382
+ Ellipse : 2,
383
+ RightArrowCallout : 3,
384
+ DownArrowCallout : 4,
385
+ LeftArrowCallout : 5,
386
+ UpArrowCallout : 6,
387
+ WedgeRectCallout : 7,
388
+ WedgeRoundRectCallout : 8,
389
+ WedgeEllipseCallout : 9,
390
+ LineCallout : 10,
391
+ BentLineCallout : 11,
392
+ LineWithAccentBarCallout : 12,
393
+ BentLineWithAccentBarCallout : 13,
394
+ Line : 14,
395
+ };
396
+
397
+ exports.MapChartRegionType = {
398
+ Automatic : 0,
399
+ DataOnly : 1,
400
+ CountryRegionList : 2,
401
+ World : 3,
402
+ };
403
+
404
+ exports.MapChartProjectionType = {
405
+ Automatic : 0,
406
+ Mercator : 1,
407
+ Miller : 2,
408
+ Albers : 3,
409
+ };
410
+
411
+ exports.MapChartLabelLayout = {
412
+ BestFitOnly : 0,
413
+ ShowAll : 1,
414
+ None : 2,
415
+ };
416
+
417
+ exports.QuartileCalculationType = {
418
+ Exclusive : 0,
419
+ Inclusive : 1,
420
+ };
421
+
422
+ exports.ReflectionEffectType = {
423
+ None : 0,
424
+ Custom : 1,
425
+ TightReflectionTouching : 2,
426
+ HalfReflectionTouching : 3,
427
+ FullReflectionTouching : 4,
428
+ TightReflection4PtOffset : 5,
429
+ HalfReflection4PtOffset : 6,
430
+ FullReflection4PtOffset : 7,
431
+ TightReflection8PtOffset : 8,
432
+ HalfReflection8PtOffset : 9,
433
+ FullReflection8PtOffset : 10,
434
+ };
435
+
436
+ exports.BevelPresetType = {
437
+ None : 0,
438
+ Angle : 1,
439
+ ArtDeco : 2,
440
+ Circle : 3,
441
+ Convex : 4,
442
+ CoolSlant : 5,
443
+ Cross : 6,
444
+ Divot : 7,
445
+ HardEdge : 8,
446
+ RelaxedInset : 9,
447
+ Riblet : 10,
448
+ Slope : 11,
449
+ SoftRound : 12,
450
+ };
451
+
452
+ exports.PresetWordArtStyle = {
453
+ WordArtStyle1 : 1,
454
+ WordArtStyle2 : 2,
455
+ WordArtStyle3 : 3,
456
+ WordArtStyle4 : 4,
457
+ WordArtStyle5 : 5,
458
+ WordArtStyle6 : 6,
459
+ WordArtStyle7 : 7,
460
+ WordArtStyle8 : 8,
461
+ WordArtStyle9 : 9,
462
+ WordArtStyle10 : 10,
463
+ WordArtStyle11 : 11,
464
+ WordArtStyle12 : 12,
465
+ WordArtStyle13 : 13,
466
+ WordArtStyle14 : 14,
467
+ WordArtStyle15 : 15,
468
+ WordArtStyle16 : 16,
469
+ WordArtStyle17 : 17,
470
+ WordArtStyle18 : 18,
471
+ WordArtStyle19 : 19,
472
+ WordArtStyle20 : 20,
473
+ };
474
+
475
+ exports.ExternalLinkType = {
476
+ DDELink : 0,
477
+ External : 1,
478
+ };
479
+
480
+ exports.FontSourceType = {
481
+ FontFile : 0,
482
+ FontsFolder : 1,
483
+ MemoryFont : 2,
484
+ };
485
+
486
+ exports.NameScopeType = {
487
+ All : 0,
488
+ Workbook : 1,
489
+ Worksheet : 2,
490
+ };
491
+
492
+ exports.PasteOperationType = {
493
+ None : 0,
494
+ Add : 1,
495
+ Subtract : 2,
496
+ Multiply : 3,
497
+ Divide : 4,
498
+ };
499
+
500
+ exports.SqlScriptOperatorType = {
501
+ Insert : 0,
502
+ Update : 1,
503
+ Delete : 2,
504
+ };
505
+
506
+ exports.OdsCellFieldType = {
507
+ Date : 0,
508
+ SheetName : 1,
509
+ Title : 2,
510
+ };
511
+
512
+ exports.OdsGeneratorType = {
513
+ LibreOffice : 0,
514
+ OpenOffice : 1,
515
+ };
516
+
517
+ exports.OdsPageBackgroundGraphicPositionType = {
518
+ TopLeft : 0,
519
+ TopCenter : 1,
520
+ TopRight : 2,
521
+ CenterLeft : 3,
522
+ CenterCenter : 4,
523
+ CenterRight : 5,
524
+ BottomLeft : 6,
525
+ BottomCenter : 7,
526
+ BottomRight : 8,
527
+ };
528
+
529
+ exports.OdsPageBackgroundGraphicType = {
530
+ Position : 0,
531
+ Area : 1,
532
+ Tile : 2,
533
+ };
534
+
535
+ exports.OdsPageBackgroundType = {
536
+ None : 0,
537
+ Color : 1,
538
+ Graphic : 2,
539
+ };
540
+
541
+ exports.PageLayoutAlignmentType = {
542
+ Bottom : 0,
543
+ Center : 1,
544
+ Left : 2,
545
+ Right : 3,
546
+ Top : 4,
547
+ };
548
+
549
+ exports.JsonExportHyperlinkType = {
550
+ DisplayString : 0,
551
+ Address : 1,
552
+ HtmlString : 2,
553
+ };
554
+
555
+ exports.PaneStateType = {
556
+ Frozen : 0,
557
+ FrozenSplit : 1,
558
+ Split : 2,
559
+ Normal : 3,
560
+ };
561
+
562
+ exports.ResourceLoadingType = {
563
+ Default : 0,
564
+ Skip : 1,
565
+ UserProvided : 2,
566
+ };
567
+
568
+ exports.OoxmlCompliance = {
569
+ Ecma376_2006 : 0,
570
+ Iso29500_2008_Strict : 1,
571
+ };
572
+
573
+ exports.OoxmlCompressionType = {
574
+ Level1 : 1,
575
+ Level2 : 2,
576
+ Level3 : 3,
577
+ Level4 : 4,
578
+ Level5 : 5,
579
+ Level6 : 6,
580
+ Level7 : 7,
581
+ Level8 : 8,
582
+ Level9 : 9,
583
+ };
584
+
585
+ exports.TargetModeType = {
586
+ External : 0,
587
+ FilePath : 1,
588
+ Email : 2,
589
+ CellReference : 3,
590
+ };
591
+
592
+ exports.WebExtensionStoreType = {
593
+ OMEX : 0,
594
+ SPCatalog : 1,
595
+ SPApp : 2,
596
+ Exchange : 3,
597
+ FileSystem : 4,
598
+ Registry : 5,
599
+ ExCatalog : 6,
600
+ };
601
+
602
+ exports.RenameStrategy = {
603
+ Exception : 0,
604
+ Digit : 1,
605
+ Letter : 2,
606
+ };
607
+
608
+ exports.HtmlFormatHandlingType = {
609
+ All : 0,
610
+ None : 1,
611
+ Rtf : 2,
612
+ };
613
+
614
+ exports.PdfOptimizationType = {
615
+ Standard : 0,
616
+ MinimumSize : 1,
617
+ };
618
+
619
+ exports.CellsUnitType = {
620
+ Pixel : 1,
621
+ Point : 2,
622
+ Inch : 4,
623
+ Cm : 6,
624
+ Character : 7,
625
+ };
626
+
627
+ exports.MetadataType = {
628
+ Encryption : 1,
629
+ Decryption : 2,
630
+ Document_Properties : 4,
631
+ };
632
+
633
+ exports.CellValueFormatStrategy = {
634
+ None : 0,
635
+ CellStyle : 1,
636
+ DisplayStyle : 2,
637
+ DisplayString : 3,
638
+ };
639
+
640
+ exports.ActiveXPersistenceType = {
641
+ PropertyBag : 0,
642
+ Storage : 1,
643
+ Stream : 2,
644
+ StreamInit : 3,
645
+ };
646
+
647
+ exports.DropButtonStyle = {
648
+ Plain : 0,
649
+ Arrow : 1,
650
+ Ellipsis : 2,
651
+ Reduce : 3,
652
+ };
653
+
654
+ exports.ShowDropButtonType = {
655
+ Never : 0,
656
+ Focus : 1,
657
+ Always : 2,
658
+ };
659
+
660
+ exports.ControlBorderType = {
661
+ None : 0,
662
+ Single : 1,
663
+ };
664
+
665
+ exports.InputMethodEditorMode = {
666
+ NoControl : 0,
667
+ On : 1,
668
+ Off : 2,
669
+ Disable : 3,
670
+ Hiragana : 4,
671
+ Katakana : 5,
672
+ KatakanaHalf : 6,
673
+ AlphaFull : 7,
674
+ Alpha : 8,
675
+ HangulFull : 9,
676
+ Hangul : 10,
677
+ HanziFull : 11,
678
+ Hanzi : 12,
679
+ };
680
+
681
+ exports.ControlCaptionAlignmentType = {
682
+ Left : 0,
683
+ Right : 1,
684
+ };
685
+
686
+ exports.ControlType = {
687
+ CommandButton : 0,
688
+ ComboBox : 1,
689
+ CheckBox : 2,
690
+ ListBox : 3,
691
+ TextBox : 4,
692
+ SpinButton : 5,
693
+ RadioButton : 6,
694
+ Label : 7,
695
+ Image : 8,
696
+ ToggleButton : 9,
697
+ ScrollBar : 10,
698
+ BarCode : 11,
699
+ Unknown : 12,
700
+ };
701
+
702
+ exports.ControlListStyle = {
703
+ Plain : 0,
704
+ Option : 1,
705
+ };
706
+
707
+ exports.ControlMatchEntryType = {
708
+ FirstLetter : 0,
709
+ Complete : 1,
710
+ None : 2,
711
+ };
712
+
713
+ exports.ControlMousePointerType = {
714
+ Default : 0,
715
+ Arrow : 1,
716
+ Cross : 2,
717
+ IBeam : 3,
718
+ SizeNESW : 6,
719
+ SizeNS : 7,
720
+ SizeNWSE : 8,
721
+ SizeWE : 9,
722
+ UpArrow : 10,
723
+ HourGlass : 11,
724
+ NoDrop : 12,
725
+ AppStarting : 13,
726
+ Help : 14,
727
+ SizeAll : 15,
728
+ Custom : 99,
729
+ };
730
+
731
+ exports.ControlPictureAlignmentType = {
732
+ TopLeft : 0,
733
+ TopRight : 1,
734
+ Center : 2,
735
+ BottomLeft : 3,
736
+ BottomRight : 4,
737
+ };
738
+
739
+ exports.ControlPicturePositionType = {
740
+ LeftTop : 131072,
741
+ LeftCenter : 327683,
742
+ LeftBottom : 524294,
743
+ RightTop : 2,
744
+ RightCenter : 196613,
745
+ RightBottom : 393224,
746
+ AboveLeft : 393216,
747
+ AboveCenter : 458753,
748
+ AboveRight : 524290,
749
+ BelowLeft : 6,
750
+ BelowCenter : 65543,
751
+ BelowRight : 131080,
752
+ Center : 262148,
753
+ };
754
+
755
+ exports.ControlPictureSizeMode = {
756
+ Clip : 0,
757
+ Stretch : 1,
758
+ Zoom : 3,
759
+ };
760
+
761
+ exports.ControlScrollBarType = {
762
+ None : 0,
763
+ Horizontal : 1,
764
+ BarsVertical : 2,
765
+ BarsBoth : 3,
766
+ };
767
+
768
+ exports.ControlScrollOrientation = {
769
+ Auto : 3,
770
+ Vertical : 0,
771
+ Horizontal : 1,
772
+ };
773
+
774
+ exports.ControlSpecialEffectType = {
775
+ Flat : 0,
776
+ Raised : 1,
777
+ Sunken : 2,
778
+ Etched : 3,
779
+ Bump : 6,
780
+ };
781
+
782
+ exports.CalculationPrecisionStrategy = {
783
+ None : 0,
784
+ Round : 1,
785
+ Decimal : 2,
786
+ };
787
+
788
+ exports.BulletType = {
789
+ None : 0,
790
+ Character : 1,
791
+ Picture : 2,
792
+ AutoNumbered : 3,
793
+ };
794
+
795
+ exports.EquationDelimiterShapeType = {
796
+ Centered : 0,
797
+ Match : 1,
798
+ };
799
+
800
+ exports.EquationNodeType = {
801
+ UnKnow : 0,
802
+ Text : 1,
803
+ Base : 100,
804
+ Denominator : 101,
805
+ Numerator : 102,
806
+ FunctionName : 103,
807
+ Subscript : 104,
808
+ Superscript : 105,
809
+ Degree : 106,
810
+ MatrixRow : 107,
811
+ Limit : 108,
812
+ EquationParagraph : 200,
813
+ MathematicalEquation : 201,
814
+ FractionEquation : 202,
815
+ FunctionEquation : 203,
816
+ DelimiterEquation : 204,
817
+ NaryEquation : 205,
818
+ RadicalEquation : 206,
819
+ SuperscriptEquation : 207,
820
+ SubscriptEquation : 208,
821
+ SubSupEquation : 209,
822
+ PreSubSupEquation : 210,
823
+ AccentEquation : 211,
824
+ BarEquation : 212,
825
+ BorderBoxEquation : 213,
826
+ BoxEquation : 214,
827
+ GroupCharacterEquation : 215,
828
+ MatrixEquation : 216,
829
+ LowerLimit : 217,
830
+ UpperLimit : 218,
831
+ Mathematical : 201,
832
+ Fraction : 202,
833
+ Function : 203,
834
+ Delimiter : 204,
835
+ Nary : 205,
836
+ Radical : 206,
837
+ Sup : 207,
838
+ Sub : 208,
839
+ SubSup : 209,
840
+ PreSubSup : 210,
841
+ Accent : 211,
842
+ Bar : 212,
843
+ BorderBox : 213,
844
+ Box : 214,
845
+ GroupChr : 215,
846
+ Matrix : 216,
847
+ ArrayEquation : 317,
848
+ };
849
+
850
+ exports.EquationFractionType = {
851
+ Bar : 0,
852
+ NoBar : 1,
853
+ Linear : 2,
854
+ Skewed : 3,
855
+ };
856
+
857
+ exports.EquationHorizontalJustificationType = {
858
+ Center : 0,
859
+ CenterGroup : 1,
860
+ Left : 2,
861
+ Right : 3,
862
+ };
863
+
864
+ exports.EquationLimitLocationType = {
865
+ UndOvr : 0,
866
+ SubSup : 1,
867
+ };
868
+
869
+ exports.LineSpaceSizeType = {
870
+ Percentage : 0,
871
+ Points : 1,
872
+ };
873
+
874
+ exports.TextAutonumberScheme = {
875
+ None : 0,
876
+ AlphaLcParenBoth : 1,
877
+ AlphaLcParenR : 2,
878
+ AlphaLcPeriod : 3,
879
+ AlphaUcParenBoth : 4,
880
+ AlphaUcParenR : 5,
881
+ AlphaUcPeriod : 6,
882
+ Arabic1Minus : 7,
883
+ Arabic2Minus : 8,
884
+ ArabicDbPeriod : 9,
885
+ ArabicDbPlain : 10,
886
+ ArabicParenBoth : 11,
887
+ ArabicParenR : 12,
888
+ ArabicPeriod : 13,
889
+ ArabicPlain : 14,
890
+ CircleNumDbPlain : 15,
891
+ CircleNumWdBlackPlain : 16,
892
+ CircleNumWdWhitePlain : 17,
893
+ Ea1ChsPeriod : 18,
894
+ Ea1ChsPlain : 19,
895
+ Ea1ChtPeriod : 20,
896
+ Ea1ChtPlain : 21,
897
+ Ea1JpnChsDbPeriod : 22,
898
+ Ea1JpnKorPeriod : 23,
899
+ Ea1JpnKorPlain : 24,
900
+ Hebrew2Minus : 25,
901
+ HindiAlpha1Period : 26,
902
+ HindiAlphaPeriod : 27,
903
+ HindiNumParenR : 28,
904
+ HindiNumPeriod : 29,
905
+ RomanLcParenBoth : 30,
906
+ RomanLcParenR : 31,
907
+ RomanLcPeriod : 32,
908
+ RomanUcParenBoth : 33,
909
+ RomanUcParenR : 34,
910
+ RomanUcPeriod : 35,
911
+ ThaiAlphaParenBoth : 36,
912
+ ThaiAlphaParenR : 37,
913
+ ThaiAlphaPeriod : 38,
914
+ ThaiNumParenBoth : 39,
915
+ ThaiNumParenR : 40,
916
+ ThaiNumPeriod : 41,
917
+ };
918
+
919
+ exports.TextFontAlignType = {
920
+ Automatic : 0,
921
+ Bottom : 1,
922
+ Baseline : 2,
923
+ Center : 3,
924
+ Top : 4,
925
+ };
926
+
927
+ exports.TextNodeType = {
928
+ TextRun : 0,
929
+ TextParagraph : 1,
930
+ Equation : 2,
931
+ };
932
+
933
+ exports.TextTabAlignmentType = {
934
+ Center : 0,
935
+ Decimal : 1,
936
+ Left : 2,
937
+ Right : 3,
938
+ };
939
+
940
+ exports.TextVerticalType = {
941
+ Vertical : 0,
942
+ Horizontal : 1,
943
+ VerticalLeftToRight : 2,
944
+ Vertical90 : 3,
945
+ Vertical270 : 4,
946
+ Stacked : 5,
947
+ StackedRightToLeft : 6,
948
+ };
949
+
950
+ exports.TxtLoadStyleStrategy = {
951
+ None : 0,
952
+ BuiltIn : 1,
953
+ ExactFormat : 2,
954
+ };
955
+
956
+ exports.ShapeLockType = {
957
+ Group : 0,
958
+ AdjustHandles : 1,
959
+ Text : 2,
960
+ Points : 3,
961
+ Crop : 4,
962
+ Selection : 5,
963
+ Move : 6,
964
+ AspectRatio : 7,
965
+ Rotation : 8,
966
+ Ungroup : 9,
967
+ Resize : 10,
968
+ ShapeType : 11,
969
+ Arrowhead : 12,
970
+ };
971
+
972
+ exports.ConnectionDataSourceType = {
973
+ ODBCBasedSource : 1,
974
+ DAOBasedSource : 2,
975
+ FileBasedDataBaseSource : 3,
976
+ WebQuery : 4,
977
+ OLEDBBasedSource : 5,
978
+ TextBasedSource : 6,
979
+ ADORecordSet : 7,
980
+ DSP : 8,
981
+ OLEDBDataModel : 100,
982
+ DataFeedDataModel : 101,
983
+ WorksheetDataModel : 102,
984
+ Table : 102,
985
+ TextDataModel : 103,
986
+ Unknown : 255,
987
+ };
988
+
989
+ exports.ConnectionParameterType = {
990
+ Cell : 0,
991
+ Prompt : 1,
992
+ Value : 2,
993
+ };
994
+
995
+ exports.CredentialsMethodType = {
996
+ Integrated : 0,
997
+ None : 1,
998
+ Prompt : 2,
999
+ Stored : 3,
1000
+ };
1001
+
1002
+ exports.OLEDBCommandType = {
1003
+ None : 0,
1004
+ CubeName : 1,
1005
+ SqlStatement : 2,
1006
+ TableName : 3,
1007
+ DefaultInformation : 4,
1008
+ WebBasedList : 5,
1009
+ TableCollection : 6,
1010
+ };
1011
+
1012
+ exports.ReConnectionMethodType = {
1013
+ Required : 1,
1014
+ Always : 2,
1015
+ Never : 3,
1016
+ };
1017
+
1018
+ exports.SqlDataType = {
1019
+ SqlUnsignedOffset : -22,
1020
+ SqlSignedOffset : -20,
1021
+ SqlGUID : -11,
1022
+ SqlWLongVarchar : -10,
1023
+ SqlWVarchar : -9,
1024
+ SqlWChar : -8,
1025
+ SqlBit : -7,
1026
+ SqlTinyInt : -6,
1027
+ SqlBigInt : -5,
1028
+ SqlLongVarBinary : -4,
1029
+ SqlVarBinary : -3,
1030
+ SqlBinary : -2,
1031
+ SqlLongVarChar : -1,
1032
+ SqlUnknownType : 0,
1033
+ SqlChar : 1,
1034
+ SqlNumeric : 2,
1035
+ SqlDecimal : 3,
1036
+ SqlInteger : 4,
1037
+ SqlSmallInt : 5,
1038
+ SqlFloat : 6,
1039
+ SqlReal : 7,
1040
+ SqlDouble : 8,
1041
+ SqlTypeDate : 9,
1042
+ SqlTypeTime : 10,
1043
+ SqlTypeTimestamp : 11,
1044
+ SqlVarChar : 12,
1045
+ SqlIntervalYear : 101,
1046
+ SqlIntervalMonth : 102,
1047
+ SqlIntervalDay : 103,
1048
+ SqlIntervalHour : 104,
1049
+ SqlIntervalMinute : 105,
1050
+ SqlIntervalSecond : 106,
1051
+ SqlIntervalYearToMonth : 107,
1052
+ SqlIntervalDayToHour : 108,
1053
+ SqlIntervalDayToMinute : 109,
1054
+ SqlIntervalDayToSecond : 110,
1055
+ SqlIntervalHourToMinute : 111,
1056
+ SqlIntervalHourToSecond : 112,
1057
+ SqlIntervalMinuteToSecond : 113,
1058
+ };
1059
+
1060
+ exports.LoadDataFilterOptions = {
1061
+ None : 0,
1062
+ All : 2147483647,
1063
+ CellBlank : 1,
1064
+ CellString : 2,
1065
+ CellNumeric : 4,
1066
+ CellError : 8,
1067
+ CellBool : 16,
1068
+ CellValue : 31,
1069
+ Formula : 32,
1070
+ CellData : 67108927,
1071
+ Chart : 256,
1072
+ Shape : 402653696,
1073
+ Drawing : 402653952,
1074
+ MergedArea : 1024,
1075
+ ConditionalFormatting : 2048,
1076
+ DataValidation : 4096,
1077
+ PivotTable : 8192,
1078
+ Table : 16384,
1079
+ Hyperlinks : 32768,
1080
+ SheetSettings : 65536,
1081
+ SheetData : 403701759,
1082
+ BookSettings : 1048576,
1083
+ Settings : 1114112,
1084
+ XmlMap : 2097152,
1085
+ Structure : 4194304,
1086
+ Document_Properties : 8388608,
1087
+ DefinedNames : 16777216,
1088
+ VBA : 33554432,
1089
+ Style : 67108864,
1090
+ Picture : 134217728,
1091
+ OleObject : 268435456,
1092
+ Revision : 536870912,
1093
+ };
1094
+
1095
+ exports.FillType = {
1096
+ Automatic : 0,
1097
+ None : 1,
1098
+ Solid : 2,
1099
+ Gradient : 3,
1100
+ Texture : 4,
1101
+ Pattern : 5,
1102
+ Group : 6,
1103
+ };
1104
+
1105
+ exports.DataBarAxisPosition = {
1106
+ Automatic : 0,
1107
+ Midpoint : 1,
1108
+ None : 2,
1109
+ };
1110
+
1111
+ exports.DataBarBorderType = {
1112
+ None : 0,
1113
+ Solid : 1,
1114
+ };
1115
+
1116
+ exports.DataBarFillType = {
1117
+ Solid : 0,
1118
+ Gradient : 1,
1119
+ };
1120
+
1121
+ exports.DataBarNegativeColorType = {
1122
+ Color : 0,
1123
+ SameAsPositive : 1,
1124
+ };
1125
+
1126
+ exports.PivotConditionFormatRuleType = {
1127
+ None : 0,
1128
+ All : 1,
1129
+ Row : 2,
1130
+ Column : 3,
1131
+ };
1132
+
1133
+ exports.RevisionActionType = {
1134
+ Add : 0,
1135
+ Delete : 1,
1136
+ DeleteColumn : 2,
1137
+ DeleteRow : 3,
1138
+ InsertColumn : 4,
1139
+ InsertRow : 5,
1140
+ };
1141
+
1142
+ exports.RevisionType = {
1143
+ CustomView : 0,
1144
+ DefinedName : 1,
1145
+ ChangeCells : 2,
1146
+ AutoFormat : 3,
1147
+ MergeConflict : 4,
1148
+ Comment : 5,
1149
+ Format : 6,
1150
+ InsertSheet : 7,
1151
+ MoveCells : 8,
1152
+ Undo : 9,
1153
+ QueryTable : 10,
1154
+ InsertDelete : 11,
1155
+ RenameSheet : 12,
1156
+ Unknown : 13,
1157
+ };
1158
+
1159
+ exports.HtmlExportDataOptions = {
1160
+ Table : 1,
1161
+ All : 255,
1162
+ };
1163
+
1164
+ exports.HtmlLinkTargetType = {
1165
+ Blank : 0,
1166
+ Parent : 1,
1167
+ Self : 2,
1168
+ Top : 3,
1169
+ };
1170
+
1171
+ exports.TxtValueQuoteType = {
1172
+ Normal : 0,
1173
+ Always : 1,
1174
+ Minimum : 2,
1175
+ Never : 3,
1176
+ };
1177
+
1178
+ exports.HtmlHiddenRowDisplayType = {
1179
+ Hidden : 0,
1180
+ Remove : 1,
1181
+ };
1182
+
1183
+ exports.HtmlHiddenColDisplayType = {
1184
+ Hidden : 0,
1185
+ Remove : 1,
1186
+ };
1187
+
1188
+ exports.SlicerCacheCrossFilterType = {
1189
+ None : 0,
1190
+ ShowItemsWithDataAtTop : 1,
1191
+ ShowItemsWithNoData : 2,
1192
+ };
1193
+
1194
+ exports.SlicerCacheItemSortType = {
1195
+ Natural : 0,
1196
+ Ascending : 1,
1197
+ Descending : 2,
1198
+ };
1199
+
1200
+ exports.SlicerStyleType = {
1201
+ SlicerStyleLight1 : 0,
1202
+ SlicerStyleLight2 : 1,
1203
+ SlicerStyleLight3 : 2,
1204
+ SlicerStyleLight4 : 3,
1205
+ SlicerStyleLight5 : 4,
1206
+ SlicerStyleLight6 : 5,
1207
+ SlicerStyleOther1 : 6,
1208
+ SlicerStyleOther2 : 7,
1209
+ SlicerStyleDark1 : 8,
1210
+ SlicerStyleDark2 : 9,
1211
+ SlicerStyleDark3 : 10,
1212
+ SlicerStyleDark4 : 11,
1213
+ SlicerStyleDark5 : 12,
1214
+ SlicerStyleDark6 : 13,
1215
+ Custom : 14,
1216
+ };
1217
+
1218
+ exports.NumberCategoryType = {
1219
+ General : 0,
1220
+ Text : 1,
1221
+ Number : 2,
1222
+ Date : 3,
1223
+ Time : 4,
1224
+ Fraction : 5,
1225
+ Scientific : 6,
1226
+ };
1227
+
1228
+ exports.TextCapsType = {
1229
+ None : 0,
1230
+ All : 1,
1231
+ Small : 2,
1232
+ };
1233
+
1234
+ exports.TextStrikeType = {
1235
+ Single : 0,
1236
+ Double : 1,
1237
+ None : 2,
1238
+ };
1239
+
1240
+ exports.UpdateLinksType = {
1241
+ UserSet : 0,
1242
+ Never : 1,
1243
+ Always : 2,
1244
+ };
1245
+
1246
+ exports.VbaModuleType = {
1247
+ Procedural : 0,
1248
+ Document : 1,
1249
+ Class : 2,
1250
+ Designer : 3,
1251
+ };
1252
+
1253
+ exports.VbaProjectReferenceType = {
1254
+ Registered : 0,
1255
+ Control : 1,
1256
+ Project : 2,
1257
+ };
1258
+
1259
+ exports.WarningType = {
1260
+ FontSubstitution : 0,
1261
+ DuplicateDefinedName : 1,
1262
+ UnsupportedFileFormat : 2,
1263
+ InvalidTextOfDefinedName : 3,
1264
+ InvalidFontName : 4,
1265
+ InvalidAutoFilterRange : 5,
1266
+ IO : 6,
1267
+ Limitation : 7,
1268
+ InvalidData : 8,
1269
+ Formula : 9,
1270
+ InvalidOperator : 10,
1271
+ };
1272
+
1273
+ exports.HtmlCrossType = {
1274
+ Default : 0,
1275
+ MSExport : 1,
1276
+ Cross : 2,
1277
+ CrossHideRight : 3,
1278
+ FitToCell : 4,
1279
+ };
1280
+
1281
+ exports.ColorDepth = {
1282
+ Default : 0,
1283
+ Format1bpp : 1,
1284
+ Format4bpp : 4,
1285
+ Format8bpp : 8,
1286
+ Format24bpp : 24,
1287
+ Format32bpp : 32,
1288
+ };
1289
+
1290
+ exports.DrawObjectEnum = {
1291
+ Image : 0,
1292
+ Cell : 1,
1293
+ };
1294
+
1295
+ exports.GridlineType = {
1296
+ Dotted : 0,
1297
+ Hair : 1,
1298
+ };
1299
+
1300
+ exports.PrintingPageType = {
1301
+ Default : 0,
1302
+ IgnoreBlank : 1,
1303
+ IgnoreStyle : 2,
1304
+ };
1305
+
1306
+ exports.TextCrossType = {
1307
+ Default : 1,
1308
+ CrossKeep : 2,
1309
+ CrossOverride : 3,
1310
+ StrictInCell : 4,
1311
+ };
1312
+
1313
+ exports.TiffCompression = {
1314
+ CompressionNone : 0,
1315
+ CompressionRle : 1,
1316
+ CompressionLZW : 2,
1317
+ CompressionCCITT3 : 3,
1318
+ CompressionCCITT4 : 4,
1319
+ };
1320
+
1321
+ exports.ParameterType = {
1322
+ Reference : 0,
1323
+ Value : 1,
1324
+ Array : 2,
1325
+ };
1326
+
1327
+ exports.ErrorBarDisplayType = {
1328
+ Both : 0,
1329
+ Minus : 1,
1330
+ None : 2,
1331
+ Plus : 3,
1332
+ };
1333
+
1334
+ exports.FormatSetType = {
1335
+ None : 0,
1336
+ IsGradientSet : 1,
1337
+ IsTextureSet : 2,
1338
+ IsPatternSet : 3,
1339
+ };
1340
+
1341
+ exports.LabelPositionType = {
1342
+ Center : 0,
1343
+ InsideBase : 1,
1344
+ InsideEnd : 2,
1345
+ OutsideEnd : 3,
1346
+ Above : 4,
1347
+ Below : 5,
1348
+ Left : 6,
1349
+ Right : 7,
1350
+ BestFit : 8,
1351
+ Moved : 9,
1352
+ };
1353
+
1354
+ exports.MirrorType = {
1355
+ None : 0,
1356
+ Horizonal : 1,
1357
+ Vertical : 2,
1358
+ Both : 3,
1359
+ };
1360
+
1361
+ exports.ShapePathType = {
1362
+ LineTo : 0,
1363
+ CubicBezierCurveTo : 1,
1364
+ MoveTo : 2,
1365
+ Close : 3,
1366
+ End : 4,
1367
+ Escape : 5,
1368
+ ArcTo : 6,
1369
+ Unknown : 7,
1370
+ };
1371
+
1372
+ exports.ErrorCheckType = {
1373
+ EvaluationError : 1,
1374
+ Calc : 1,
1375
+ EmptyCellRef : 2,
1376
+ NumberStoredAsText : 4,
1377
+ TextNumber : 4,
1378
+ InconsistRange : 8,
1379
+ InconsistFormula : 16,
1380
+ TwoDigitTextYear : 32,
1381
+ TextDate : 32,
1382
+ UnlockedFormula : 64,
1383
+ UnproctedFormula : 64,
1384
+ TableDataValidation : 128,
1385
+ Validation : 128,
1386
+ CalculatedColumn : 129,
1387
+ };
1388
+
1389
+ exports.LoadFormat = {
1390
+ Auto : 0,
1391
+ Csv : 1,
1392
+ CSV : 1,
1393
+ Xlsx : 6,
1394
+ Tsv : 11,
1395
+ TSV : 11,
1396
+ TabDelimited : 11,
1397
+ Html : 12,
1398
+ MHtml : 13,
1399
+ Ods : 14,
1400
+ ODS : 14,
1401
+ Excel97To2003 : 5,
1402
+ SpreadsheetML : 15,
1403
+ Xlsb : 16,
1404
+ Ots : 31,
1405
+ Numbers : 56,
1406
+ Fods : 59,
1407
+ FODS : 59,
1408
+ Sxc : 60,
1409
+ SXC : 60,
1410
+ Xml : 51,
1411
+ Epub : 52,
1412
+ Azw3 : 53,
1413
+ Chm : 54,
1414
+ Unknown : 255,
1415
+ Image : 254,
1416
+ Json : 513,
1417
+ };
1418
+
1419
+ exports.PivotConditionFormatScopeType = {
1420
+ Data : 0,
1421
+ Field : 1,
1422
+ Selection : 2,
1423
+ };
1424
+
1425
+ exports.PivotFilterType = {
1426
+ CaptionBeginsWith : 0,
1427
+ CaptionBetween : 1,
1428
+ CaptionContains : 2,
1429
+ CaptionEndsWith : 3,
1430
+ CaptionEqual : 4,
1431
+ CaptionGreaterThan : 5,
1432
+ CaptionGreaterThanOrEqual : 6,
1433
+ CaptionLessThan : 7,
1434
+ CaptionLessThanOrEqual : 8,
1435
+ CaptionNotBeginsWith : 9,
1436
+ CaptionNotBetween : 10,
1437
+ CaptionNotContains : 11,
1438
+ CaptionNotEndsWith : 12,
1439
+ CaptionNotEqual : 13,
1440
+ Count : 14,
1441
+ DateBetween : 15,
1442
+ DateEqual : 16,
1443
+ DateNewerThan : 17,
1444
+ DateAfter : 17,
1445
+ DateNewerThanOrEqual : 18,
1446
+ DateAfterOrEqual : 18,
1447
+ DateNotBetween : 19,
1448
+ DateNotEqual : 20,
1449
+ DateOlderThan : 21,
1450
+ DateBefore : 21,
1451
+ DateOlderThanOrEqual : 22,
1452
+ DateBeforeOrEqual : 22,
1453
+ LastMonth : 23,
1454
+ LastQuarter : 24,
1455
+ LastWeek : 25,
1456
+ LastYear : 26,
1457
+ M1 : 27,
1458
+ January : 27,
1459
+ M2 : 28,
1460
+ February : 28,
1461
+ M3 : 29,
1462
+ March : 29,
1463
+ M4 : 30,
1464
+ April : 30,
1465
+ M5 : 31,
1466
+ May : 31,
1467
+ M6 : 32,
1468
+ June : 32,
1469
+ M7 : 33,
1470
+ July : 33,
1471
+ M8 : 34,
1472
+ August : 34,
1473
+ M9 : 35,
1474
+ September : 35,
1475
+ M10 : 36,
1476
+ October : 36,
1477
+ M11 : 37,
1478
+ November : 37,
1479
+ M12 : 38,
1480
+ December : 38,
1481
+ NextMonth : 39,
1482
+ NextQuarter : 40,
1483
+ NextWeek : 41,
1484
+ NextYear : 42,
1485
+ Percent : 43,
1486
+ Q1 : 44,
1487
+ Quarter1 : 44,
1488
+ Q2 : 45,
1489
+ Quarter2 : 45,
1490
+ Q3 : 46,
1491
+ Quarter3 : 46,
1492
+ Q4 : 47,
1493
+ Quarter4 : 47,
1494
+ Sum : 48,
1495
+ ThisMonth : 49,
1496
+ ThisQuarter : 50,
1497
+ ThisWeek : 51,
1498
+ ThisYear : 52,
1499
+ Today : 53,
1500
+ Tomorrow : 54,
1501
+ Unknown : 55,
1502
+ ValueBetween : 56,
1503
+ ValueEqual : 57,
1504
+ ValueGreaterThan : 58,
1505
+ ValueGreaterThanOrEqual : 59,
1506
+ ValueLessThan : 60,
1507
+ ValueLessThanOrEqual : 61,
1508
+ ValueNotBetween : 62,
1509
+ ValueNotEqual : 63,
1510
+ YearToDate : 64,
1511
+ Yesterday : 65,
1512
+ None : 255,
1513
+ };
1514
+
1515
+ exports.PivotMissingItemLimitType = {
1516
+ Automatic : 0,
1517
+ Max : 1,
1518
+ None : 2,
1519
+ };
1520
+
1521
+ exports.SortOnType = {
1522
+ Value : 0,
1523
+ CellColor : 1,
1524
+ FontColor : 2,
1525
+ Icon : 3,
1526
+ };
1527
+
1528
+ exports.FormatConditionValueType = {
1529
+ Formula : 0,
1530
+ Max : 1,
1531
+ Min : 2,
1532
+ Number : 3,
1533
+ Percent : 4,
1534
+ Percentile : 5,
1535
+ AutomaticMax : 6,
1536
+ AutomaticMin : 7,
1537
+ };
1538
+
1539
+ exports.IconSetType = {
1540
+ Arrows3 : 0,
1541
+ ArrowsGray3 : 1,
1542
+ Flags3 : 2,
1543
+ Signs3 : 3,
1544
+ Symbols3 : 4,
1545
+ Symbols32 : 5,
1546
+ TrafficLights31 : 6,
1547
+ TrafficLights32 : 7,
1548
+ Arrows4 : 8,
1549
+ ArrowsGray4 : 9,
1550
+ Rating4 : 10,
1551
+ RedToBlack4 : 11,
1552
+ TrafficLights4 : 12,
1553
+ Arrows5 : 13,
1554
+ ArrowsGray5 : 14,
1555
+ Quarters5 : 15,
1556
+ Rating5 : 16,
1557
+ Stars3 : 17,
1558
+ Boxes5 : 18,
1559
+ Triangles3 : 19,
1560
+ None : 20,
1561
+ CustomSet : 21,
1562
+ Smilies3 : 22,
1563
+ ColorSmilies3 : 23,
1564
+ };
1565
+
1566
+ exports.TimePeriodType = {
1567
+ Today : 0,
1568
+ Yesterday : 1,
1569
+ Tomorrow : 2,
1570
+ Last7Days : 3,
1571
+ ThisMonth : 4,
1572
+ LastMonth : 5,
1573
+ NextMonth : 6,
1574
+ ThisWeek : 7,
1575
+ LastWeek : 8,
1576
+ NextWeek : 9,
1577
+ ThisYear : 10,
1578
+ LastYear : 11,
1579
+ NextYear : 12,
1580
+ };
1581
+
1582
+ exports.ContentDisposition = {
1583
+ Inline : 0,
1584
+ Attachment : 1,
1585
+ };
1586
+
1587
+ exports.HeaderFooterCommandType = {
1588
+ Text : 0,
1589
+ CurrentPage : 1,
1590
+ Pagecount : 2,
1591
+ CurrentDate : 3,
1592
+ CurrentTime : 4,
1593
+ SheetName : 5,
1594
+ FileName : 6,
1595
+ FilePath : 7,
1596
+ Picture : 8,
1597
+ };
1598
+
1599
+ exports.LightRigDirectionType = {
1600
+ Bottom : 0,
1601
+ BottomLeft : 1,
1602
+ BottomRight : 2,
1603
+ Left : 3,
1604
+ Right : 4,
1605
+ Top : 5,
1606
+ TopLeft : 6,
1607
+ TopRight : 7,
1608
+ };
1609
+
1610
+ exports.MsoArrowheadLength = {
1611
+ Short : 0,
1612
+ Medium : 1,
1613
+ Long : 2,
1614
+ };
1615
+
1616
+ exports.MsoArrowheadWidth = {
1617
+ Narrow : 0,
1618
+ Medium : 1,
1619
+ Wide : 2,
1620
+ };
1621
+
1622
+ exports.TextOverflowType = {
1623
+ Clip : 0,
1624
+ Ellipsis : 1,
1625
+ Overflow : 2,
1626
+ };
1627
+
1628
+ exports.PasteType = {
1629
+ All : 0,
1630
+ Default : 1,
1631
+ AllExceptBorders : 2,
1632
+ DefaultExceptBorders : 3,
1633
+ ColumnWidths : 4,
1634
+ RowHeights : 5,
1635
+ Comments : 6,
1636
+ Formats : 7,
1637
+ Formulas : 8,
1638
+ FormulasAndNumberFormats : 9,
1639
+ Validation : 10,
1640
+ Values : 11,
1641
+ ValuesAndFormats : 12,
1642
+ ValuesAndNumberFormats : 13,
1643
+ };
1644
+
1645
+ exports.PivotFieldDataDisplayFormat = {
1646
+ Normal : 0,
1647
+ DifferenceFrom : 1,
1648
+ PercentageOf : 2,
1649
+ PercentageDifferenceFrom : 3,
1650
+ RunningTotalIn : 4,
1651
+ PercentageOfRow : 5,
1652
+ PercentageOfColumn : 6,
1653
+ PercentageOfTotal : 7,
1654
+ Index : 8,
1655
+ PercentageOfParentRowTotal : 9,
1656
+ PercentageOfParentColumnTotal : 10,
1657
+ PercentageOfParentTotal : 11,
1658
+ PercentageOfRunningTotalIn : 12,
1659
+ RankSmallestToLargest : 13,
1660
+ RankLargestToSmallest : 14,
1661
+ };
1662
+
1663
+ exports.PivotFieldSubtotalType = {
1664
+ None : 0,
1665
+ Automatic : 1,
1666
+ Sum : 2,
1667
+ Count : 4,
1668
+ Average : 8,
1669
+ Max : 16,
1670
+ Min : 32,
1671
+ Product : 64,
1672
+ CountNums : 128,
1673
+ Stdev : 256,
1674
+ Stdevp : 512,
1675
+ Var : 1024,
1676
+ Varp : 2048,
1677
+ };
1678
+
1679
+ exports.PivotFieldType = {
1680
+ Undefined : 0,
1681
+ Row : 1,
1682
+ Column : 2,
1683
+ Page : 4,
1684
+ Data : 8,
1685
+ };
1686
+
1687
+ exports.PivotGroupByType = {
1688
+ RangeOfValues : 0,
1689
+ Numbers : 0,
1690
+ Seconds : 1,
1691
+ Minutes : 2,
1692
+ Hours : 3,
1693
+ Days : 4,
1694
+ Months : 5,
1695
+ Quarters : 6,
1696
+ Years : 7,
1697
+ };
1698
+
1699
+ exports.PivotItemPosition = {
1700
+ Previous : 0,
1701
+ Next : 1,
1702
+ Custom : 2,
1703
+ };
1704
+
1705
+ exports.PivotTableAutoFormatType = {
1706
+ None : 0,
1707
+ Classic : 1,
1708
+ Report1 : 2,
1709
+ Report2 : 3,
1710
+ Report3 : 4,
1711
+ Report4 : 5,
1712
+ Report5 : 6,
1713
+ Report6 : 7,
1714
+ Report7 : 8,
1715
+ Report8 : 9,
1716
+ Report9 : 10,
1717
+ Report10 : 11,
1718
+ Table1 : 12,
1719
+ Table2 : 13,
1720
+ Table3 : 14,
1721
+ Table4 : 15,
1722
+ Table5 : 16,
1723
+ Table6 : 17,
1724
+ Table7 : 18,
1725
+ Table8 : 19,
1726
+ Table9 : 20,
1727
+ Table10 : 21,
1728
+ };
1729
+
1730
+ exports.PivotTableSourceType = {
1731
+ Sheet : 1,
1732
+ External : 2,
1733
+ Consolidation : 4,
1734
+ Scenario : 8,
1735
+ Unknown : 9,
1736
+ };
1737
+
1738
+ exports.PivotTableStyleType = {
1739
+ None : 0,
1740
+ PivotTableStyleLight1 : 1,
1741
+ PivotTableStyleLight2 : 2,
1742
+ PivotTableStyleLight3 : 3,
1743
+ PivotTableStyleLight4 : 4,
1744
+ PivotTableStyleLight5 : 5,
1745
+ PivotTableStyleLight6 : 6,
1746
+ PivotTableStyleLight7 : 7,
1747
+ PivotTableStyleLight8 : 8,
1748
+ PivotTableStyleLight9 : 9,
1749
+ PivotTableStyleLight10 : 10,
1750
+ PivotTableStyleLight11 : 11,
1751
+ PivotTableStyleLight12 : 12,
1752
+ PivotTableStyleLight13 : 13,
1753
+ PivotTableStyleLight14 : 14,
1754
+ PivotTableStyleLight15 : 15,
1755
+ PivotTableStyleLight16 : 16,
1756
+ PivotTableStyleLight17 : 17,
1757
+ PivotTableStyleLight18 : 18,
1758
+ PivotTableStyleLight19 : 19,
1759
+ PivotTableStyleLight20 : 20,
1760
+ PivotTableStyleLight21 : 21,
1761
+ PivotTableStyleLight22 : 22,
1762
+ PivotTableStyleLight23 : 23,
1763
+ PivotTableStyleLight24 : 24,
1764
+ PivotTableStyleLight25 : 25,
1765
+ PivotTableStyleLight26 : 26,
1766
+ PivotTableStyleLight27 : 27,
1767
+ PivotTableStyleLight28 : 28,
1768
+ PivotTableStyleMedium1 : 29,
1769
+ PivotTableStyleMedium2 : 30,
1770
+ PivotTableStyleMedium3 : 31,
1771
+ PivotTableStyleMedium4 : 32,
1772
+ PivotTableStyleMedium5 : 33,
1773
+ PivotTableStyleMedium6 : 34,
1774
+ PivotTableStyleMedium7 : 35,
1775
+ PivotTableStyleMedium8 : 36,
1776
+ PivotTableStyleMedium9 : 37,
1777
+ PivotTableStyleMedium10 : 38,
1778
+ PivotTableStyleMedium11 : 39,
1779
+ PivotTableStyleMedium12 : 40,
1780
+ PivotTableStyleMedium13 : 41,
1781
+ PivotTableStyleMedium14 : 42,
1782
+ PivotTableStyleMedium15 : 43,
1783
+ PivotTableStyleMedium16 : 44,
1784
+ PivotTableStyleMedium17 : 45,
1785
+ PivotTableStyleMedium18 : 46,
1786
+ PivotTableStyleMedium19 : 47,
1787
+ PivotTableStyleMedium20 : 48,
1788
+ PivotTableStyleMedium21 : 49,
1789
+ PivotTableStyleMedium22 : 50,
1790
+ PivotTableStyleMedium23 : 51,
1791
+ PivotTableStyleMedium24 : 52,
1792
+ PivotTableStyleMedium25 : 53,
1793
+ PivotTableStyleMedium26 : 54,
1794
+ PivotTableStyleMedium27 : 55,
1795
+ PivotTableStyleMedium28 : 56,
1796
+ PivotTableStyleDark1 : 57,
1797
+ PivotTableStyleDark2 : 58,
1798
+ PivotTableStyleDark3 : 59,
1799
+ PivotTableStyleDark4 : 60,
1800
+ PivotTableStyleDark5 : 61,
1801
+ PivotTableStyleDark6 : 62,
1802
+ PivotTableStyleDark7 : 63,
1803
+ PivotTableStyleDark8 : 64,
1804
+ PivotTableStyleDark9 : 65,
1805
+ PivotTableStyleDark10 : 66,
1806
+ PivotTableStyleDark11 : 67,
1807
+ PivotTableStyleDark12 : 68,
1808
+ PivotTableStyleDark13 : 69,
1809
+ PivotTableStyleDark14 : 70,
1810
+ PivotTableStyleDark15 : 71,
1811
+ PivotTableStyleDark16 : 72,
1812
+ PivotTableStyleDark17 : 73,
1813
+ PivotTableStyleDark18 : 74,
1814
+ PivotTableStyleDark19 : 75,
1815
+ PivotTableStyleDark20 : 76,
1816
+ PivotTableStyleDark21 : 77,
1817
+ PivotTableStyleDark22 : 78,
1818
+ PivotTableStyleDark23 : 79,
1819
+ PivotTableStyleDark24 : 80,
1820
+ PivotTableStyleDark25 : 81,
1821
+ PivotTableStyleDark26 : 82,
1822
+ PivotTableStyleDark27 : 83,
1823
+ PivotTableStyleDark28 : 84,
1824
+ Custom : 85,
1825
+ };
1826
+
1827
+ exports.DateTimeGroupingType = {
1828
+ Day : 0,
1829
+ Hour : 1,
1830
+ Minute : 2,
1831
+ Month : 3,
1832
+ Second : 4,
1833
+ Year : 5,
1834
+ };
1835
+
1836
+ exports.DynamicFilterType = {
1837
+ AboveAverage : 0,
1838
+ BelowAverage : 1,
1839
+ LastMonth : 2,
1840
+ LastQuarter : 3,
1841
+ LastWeek : 4,
1842
+ LastYear : 5,
1843
+ January : 6,
1844
+ October : 7,
1845
+ November : 8,
1846
+ December : 9,
1847
+ February : 10,
1848
+ March : 11,
1849
+ April : 12,
1850
+ May : 13,
1851
+ June : 14,
1852
+ July : 15,
1853
+ August : 16,
1854
+ September : 17,
1855
+ NextMonth : 18,
1856
+ NextQuarter : 19,
1857
+ NextWeek : 20,
1858
+ NextYear : 21,
1859
+ None : 22,
1860
+ Quarter1 : 23,
1861
+ Quarter2 : 24,
1862
+ Quarter3 : 25,
1863
+ Quarter4 : 26,
1864
+ ThisMonth : 27,
1865
+ ThisQuarter : 28,
1866
+ ThisWeek : 29,
1867
+ ThisYear : 30,
1868
+ Today : 31,
1869
+ Tomorrow : 32,
1870
+ YearToDate : 33,
1871
+ Yesterday : 34,
1872
+ };
1873
+
1874
+ exports.FilterType = {
1875
+ ColorFilter : 0,
1876
+ CustomFilters : 1,
1877
+ DynamicFilter : 2,
1878
+ MultipleFilters : 3,
1879
+ IconFilter : 4,
1880
+ Top10 : 5,
1881
+ None : 6,
1882
+ };
1883
+
1884
+ exports.PdfCompliance = {
1885
+ None : 0,
1886
+ Pdf14 : 0,
1887
+ Pdf15 : 3,
1888
+ Pdf16 : 4,
1889
+ Pdf17 : 5,
1890
+ PdfA1b : 1,
1891
+ PdfA1a : 2,
1892
+ PdfA2b : 6,
1893
+ PdfA2u : 7,
1894
+ PdfA2a : 8,
1895
+ PdfA3b : 9,
1896
+ PdfA3u : 10,
1897
+ PdfA3a : 11,
1898
+ };
1899
+
1900
+ exports.DirectoryType = {
1901
+ Volume : 0,
1902
+ SameVolume : 1,
1903
+ DownDirectory : 2,
1904
+ UpDirectory : 3,
1905
+ };
1906
+
1907
+ exports.LightRigType = {
1908
+ Balanced : 0,
1909
+ BrightRoom : 1,
1910
+ Chilly : 2,
1911
+ Contrasting : 3,
1912
+ Flat : 4,
1913
+ Flood : 5,
1914
+ Freezing : 6,
1915
+ Glow : 7,
1916
+ Harsh : 8,
1917
+ LegacyFlat1 : 9,
1918
+ LegacyFlat2 : 10,
1919
+ LegacyFlat3 : 11,
1920
+ LegacyFlat4 : 12,
1921
+ LegacyHarsh1 : 13,
1922
+ LegacyHarsh2 : 14,
1923
+ LegacyHarsh3 : 15,
1924
+ LegacyHarsh4 : 16,
1925
+ LegacyNormal1 : 17,
1926
+ LegacyNormal2 : 18,
1927
+ LegacyNormal3 : 19,
1928
+ LegacyNormal4 : 20,
1929
+ Morning : 21,
1930
+ Soft : 22,
1931
+ Sunrise : 23,
1932
+ Sunset : 24,
1933
+ ThreePoint : 25,
1934
+ TwoPoint : 26,
1935
+ None : 27,
1936
+ };
1937
+
1938
+ exports.SmartTagShowType = {
1939
+ All : 0,
1940
+ NoSmartTagIndicator : 1,
1941
+ None : 2,
1942
+ };
1943
+
1944
+ exports.BevelType = {
1945
+ None : 0,
1946
+ Angle : 1,
1947
+ ArtDeco : 2,
1948
+ Circle : 3,
1949
+ Convex : 4,
1950
+ CoolSlant : 5,
1951
+ Cross : 6,
1952
+ Divot : 7,
1953
+ HardEdge : 8,
1954
+ RelaxedInset : 9,
1955
+ Riblet : 10,
1956
+ Slope : 11,
1957
+ SoftRound : 12,
1958
+ };
1959
+
1960
+ exports.PresetCameraType = {
1961
+ IsometricBottomDown : 0,
1962
+ IsometricBottomUp : 1,
1963
+ IsometricLeftDown : 2,
1964
+ IsometricLeftUp : 3,
1965
+ IsometricOffAxis1Left : 4,
1966
+ IsometricOffAxis1Right : 5,
1967
+ IsometricOffAxis1Top : 6,
1968
+ IsometricOffAxis2Left : 7,
1969
+ IsometricOffAxis2Right : 8,
1970
+ IsometricOffAxis2Top : 9,
1971
+ IsometricOffAxis3Bottom : 10,
1972
+ IsometricOffAxis3Left : 11,
1973
+ IsometricOffAxis3Right : 12,
1974
+ IsometricOffAxis4Bottom : 13,
1975
+ IsometricOffAxis4Left : 14,
1976
+ IsometricOffAxis4Right : 15,
1977
+ IsometricRightDown : 16,
1978
+ IsometricRightUp : 17,
1979
+ IsometricTopDown : 18,
1980
+ IsometricTopUp : 19,
1981
+ LegacyObliqueBottom : 20,
1982
+ LegacyObliqueBottomLeft : 21,
1983
+ LegacyObliqueBottomRight : 22,
1984
+ LegacyObliqueFront : 23,
1985
+ LegacyObliqueLeft : 24,
1986
+ LegacyObliqueRight : 25,
1987
+ LegacyObliqueTop : 26,
1988
+ LegacyObliqueTopLeft : 27,
1989
+ LegacyObliqueTopRight : 28,
1990
+ LegacyPerspectiveBottom : 29,
1991
+ LegacyPerspectiveBottomLeft : 30,
1992
+ LegacyPerspectiveBottomRight : 31,
1993
+ LegacyPerspectiveFront : 32,
1994
+ LegacyPerspectiveLeft : 33,
1995
+ LegacyPerspectiveRight : 34,
1996
+ LegacyPerspectiveTop : 35,
1997
+ LegacyPerspectiveTopLeft : 36,
1998
+ LegacyPerspectiveTopRight : 37,
1999
+ ObliqueBottom : 38,
2000
+ ObliqueBottomLeft : 39,
2001
+ ObliqueBottomRight : 40,
2002
+ ObliqueLeft : 41,
2003
+ ObliqueRight : 42,
2004
+ ObliqueTop : 43,
2005
+ ObliqueTopLeft : 44,
2006
+ ObliqueTopRight : 45,
2007
+ OrthographicFront : 46,
2008
+ PerspectiveAbove : 47,
2009
+ PerspectiveAboveLeftFacing : 48,
2010
+ PerspectiveAboveRightFacing : 49,
2011
+ PerspectiveBelow : 50,
2012
+ PerspectiveContrastingLeftFacing : 51,
2013
+ PerspectiveContrastingRightFacing : 52,
2014
+ PerspectiveFront : 53,
2015
+ PerspectiveHeroicExtremeLeftFacing : 54,
2016
+ PerspectiveHeroicExtremeRightFacing : 55,
2017
+ PerspectiveHeroicLeftFacing : 56,
2018
+ PerspectiveHeroicRightFacing : 57,
2019
+ PerspectiveLeft : 58,
2020
+ PerspectiveRelaxed : 59,
2021
+ PerspectiveRelaxedModerately : 60,
2022
+ PerspectiveRight : 61,
2023
+ };
2024
+
2025
+ exports.PresetShadowType = {
2026
+ NoShadow : 0,
2027
+ Custom : 1,
2028
+ OffsetDiagonalBottomRight : 2,
2029
+ OffsetBottom : 3,
2030
+ OffsetDiagonalBottomLeft : 4,
2031
+ OffsetRight : 5,
2032
+ OffsetCenter : 6,
2033
+ OffsetLeft : 7,
2034
+ OffsetDiagonalTopRight : 8,
2035
+ OffsetTop : 9,
2036
+ OffsetDiagonalTopLeft : 10,
2037
+ InsideDiagonalTopLeft : 11,
2038
+ InsideTop : 12,
2039
+ InsideDiagonalTopRight : 13,
2040
+ InsideLeft : 14,
2041
+ InsideCenter : 15,
2042
+ InsideRight : 16,
2043
+ InsideDiagonalBottomLeft : 17,
2044
+ InsideBottom : 18,
2045
+ InsideDiagonalBottomRight : 19,
2046
+ PerspectiveDiagonalUpperLeft : 20,
2047
+ PerspectiveDiagonalUpperRight : 21,
2048
+ Below : 22,
2049
+ PerspectiveDiagonalLowerLeft : 23,
2050
+ PerspectiveDiagonalLowerRight : 24,
2051
+ };
2052
+
2053
+ exports.PresetMaterialType = {
2054
+ Clear : 0,
2055
+ DarkEdge : 1,
2056
+ Flat : 2,
2057
+ LegacyMatte : 3,
2058
+ LegacyMetal : 4,
2059
+ LegacyPlastic : 5,
2060
+ LegacyWireframe : 6,
2061
+ Matte : 7,
2062
+ Metal : 8,
2063
+ Plastic : 9,
2064
+ Powder : 10,
2065
+ SoftEdge : 11,
2066
+ SoftMetal : 12,
2067
+ TranslucentPowder : 13,
2068
+ WarmMatte : 14,
2069
+ };
2070
+
2071
+ exports.RectangleAlignmentType = {
2072
+ Bottom : 0,
2073
+ BottomLeft : 1,
2074
+ BottomRight : 2,
2075
+ Center : 3,
2076
+ Left : 4,
2077
+ Right : 5,
2078
+ Top : 6,
2079
+ TopLeft : 7,
2080
+ TopRight : 8,
2081
+ };
2082
+
2083
+ exports.FontSchemeType = {
2084
+ None : 0,
2085
+ Major : 1,
2086
+ Minor : 2,
2087
+ };
2088
+
2089
+ exports.SaveFormat = {
2090
+ Csv : 1,
2091
+ CSV : 1,
2092
+ Xlsx : 6,
2093
+ Xlsm : 7,
2094
+ Xltx : 8,
2095
+ Xltm : 9,
2096
+ Xlam : 10,
2097
+ Tsv : 11,
2098
+ TSV : 11,
2099
+ TabDelimited : 11,
2100
+ Html : 12,
2101
+ MHtml : 17,
2102
+ Ods : 14,
2103
+ ODS : 14,
2104
+ Excel97To2003 : 5,
2105
+ SpreadsheetML : 15,
2106
+ Xlsb : 16,
2107
+ Auto : 0,
2108
+ Unknown : 255,
2109
+ Pdf : 13,
2110
+ Xps : 20,
2111
+ XPS : 20,
2112
+ Tiff : 21,
2113
+ TIFF : 21,
2114
+ Svg : 28,
2115
+ SVG : 28,
2116
+ Dif : 30,
2117
+ Ots : 31,
2118
+ Xlt : 32,
2119
+ Xml : 51,
2120
+ Numbers : 56,
2121
+ Markdown : 57,
2122
+ Fods : 59,
2123
+ FODS : 59,
2124
+ Sxc : 60,
2125
+ SXC : 60,
2126
+ Pptx : 61,
2127
+ Docx : 62,
2128
+ Emf : 258,
2129
+ Jpg : 261,
2130
+ Png : 262,
2131
+ Bmp : 263,
2132
+ Gif : 322,
2133
+ Json : 513,
2134
+ SqlScript : 514,
2135
+ XHtml : 771,
2136
+ Epub : 772,
2137
+ Azw3 : 773,
2138
+ Pcl : 1025,
2139
+ };
2140
+
2141
+ exports.SparklineAxisMinMaxType = {
2142
+ AutoIndividual : 0,
2143
+ Group : 1,
2144
+ Custom : 2,
2145
+ };
2146
+
2147
+ exports.SparklinePresetStyleType = {
2148
+ Style1 : 0,
2149
+ Style2 : 1,
2150
+ Style3 : 2,
2151
+ Style4 : 3,
2152
+ Style5 : 4,
2153
+ Style6 : 5,
2154
+ Style7 : 6,
2155
+ Style8 : 7,
2156
+ Style9 : 8,
2157
+ Style10 : 9,
2158
+ Style11 : 10,
2159
+ Style12 : 11,
2160
+ Style13 : 12,
2161
+ Style14 : 13,
2162
+ Style15 : 14,
2163
+ Style16 : 15,
2164
+ Style17 : 16,
2165
+ Style18 : 17,
2166
+ Style19 : 18,
2167
+ Style20 : 19,
2168
+ Style21 : 20,
2169
+ Style22 : 21,
2170
+ Style23 : 22,
2171
+ Style24 : 23,
2172
+ Style25 : 24,
2173
+ Style26 : 25,
2174
+ Style27 : 26,
2175
+ Style28 : 27,
2176
+ Style29 : 28,
2177
+ Style30 : 29,
2178
+ Style31 : 30,
2179
+ Style32 : 31,
2180
+ Style33 : 32,
2181
+ Style34 : 33,
2182
+ Style35 : 34,
2183
+ Style36 : 35,
2184
+ Custom : 36,
2185
+ };
2186
+
2187
+ exports.SparklineType = {
2188
+ Line : 0,
2189
+ Column : 1,
2190
+ Stacked : 2,
2191
+ };
2192
+
2193
+ exports.BuiltinStyleType = {
2194
+ TwentyPercentAccent1 : 30,
2195
+ TwentyPercentAccent2 : 34,
2196
+ TwentyPercentAccent3 : 38,
2197
+ TwentyPercentAccent4 : 42,
2198
+ TwentyPercentAccent5 : 46,
2199
+ TwentyPercentAccent6 : 50,
2200
+ FortyPercentAccent1 : 31,
2201
+ FortyPercentAccent2 : 35,
2202
+ FortyPercentAccent3 : 39,
2203
+ FortyPercentAccent4 : 43,
2204
+ FortyPercentAccent5 : 47,
2205
+ FortyPercentAccent6 : 51,
2206
+ SixtyPercentAccent1 : 32,
2207
+ SixtyPercentAccent2 : 36,
2208
+ SixtyPercentAccent3 : 40,
2209
+ SixtyPercentAccent4 : 44,
2210
+ SixtyPercentAccent5 : 48,
2211
+ SixtyPercentAccent6 : 52,
2212
+ Accent1 : 29,
2213
+ Accent2 : 33,
2214
+ Accent3 : 37,
2215
+ Accent4 : 41,
2216
+ Accent5 : 45,
2217
+ Accent6 : 49,
2218
+ Bad : 27,
2219
+ Calculation : 22,
2220
+ CheckCell : 23,
2221
+ Comma : 3,
2222
+ Comma1 : 6,
2223
+ Currency : 4,
2224
+ Currency1 : 7,
2225
+ ExplanatoryText : 53,
2226
+ Good : 26,
2227
+ Header1 : 16,
2228
+ Header2 : 17,
2229
+ Header3 : 18,
2230
+ Header4 : 19,
2231
+ Hyperlink : 8,
2232
+ FollowedHyperlink : 9,
2233
+ Input : 20,
2234
+ LinkedCell : 24,
2235
+ Neutral : 28,
2236
+ Normal : 0,
2237
+ Note : 10,
2238
+ Output : 21,
2239
+ Percent : 5,
2240
+ Title : 15,
2241
+ Total : 25,
2242
+ WarningText : 11,
2243
+ RowLevel : 1,
2244
+ ColumnLevel : 2,
2245
+ };
2246
+
2247
+ exports.AxisType = {
2248
+ Category : 0,
2249
+ Value : 1,
2250
+ Series : 2,
2251
+ };
2252
+
2253
+ exports.CategoryType = {
2254
+ AutomaticScale : 0,
2255
+ CategoryScale : 1,
2256
+ TimeScale : 2,
2257
+ };
2258
+
2259
+ exports.CrossType = {
2260
+ Automatic : 0,
2261
+ Maximum : 1,
2262
+ Minimum : 2,
2263
+ Custom : 3,
2264
+ };
2265
+
2266
+ exports.TimeUnit = {
2267
+ Days : 0,
2268
+ Months : 1,
2269
+ Years : 2,
2270
+ };
2271
+
2272
+ exports.ColorType = {
2273
+ Automatic : 0,
2274
+ AutomaticIndex : 1,
2275
+ RGB : 2,
2276
+ IndexedColor : 3,
2277
+ Theme : 4,
2278
+ };
2279
+
2280
+ exports.LookAtType = {
2281
+ Contains : 0,
2282
+ StartWith : 1,
2283
+ EndWith : 2,
2284
+ EntireContent : 3,
2285
+ };
2286
+
2287
+ exports.LookInType = {
2288
+ Formulas : 0,
2289
+ Values : 1,
2290
+ ValuesExcludeFormulaCell : 2,
2291
+ Comments : 3,
2292
+ OnlyFormulas : 4,
2293
+ OriginalValues : 5,
2294
+ };
2295
+
2296
+ exports.AutoShapeType = {
2297
+ NotPrimitive : 0,
2298
+ Rectangle : 1,
2299
+ RoundedRectangle : 2,
2300
+ Oval : 3,
2301
+ Diamond : 4,
2302
+ IsoscelesTriangle : 5,
2303
+ RightTriangle : 6,
2304
+ Parallelogram : 7,
2305
+ Trapezoid : 8,
2306
+ Hexagon : 9,
2307
+ Octagon : 10,
2308
+ Cross : 11,
2309
+ Star5 : 12,
2310
+ RightArrow : 13,
2311
+ HomePlate : 15,
2312
+ Cube : 16,
2313
+ Balloon : 17,
2314
+ Seal : 18,
2315
+ Arc : 19,
2316
+ Line : 20,
2317
+ Plaque : 21,
2318
+ Can : 22,
2319
+ Donut : 23,
2320
+ TextSimple : 24,
2321
+ TextOctagon : 25,
2322
+ TextHexagon : 26,
2323
+ TextCurve : 27,
2324
+ TextWave : 28,
2325
+ TextRing : 29,
2326
+ TextOnCurve : 30,
2327
+ msosptTextOnRing : 31,
2328
+ StraightConnector : 32,
2329
+ BentConnector2 : 33,
2330
+ ElbowConnector : 34,
2331
+ BentConnector4 : 35,
2332
+ BentConnector5 : 36,
2333
+ CurvedConnector2 : 37,
2334
+ CurvedConnector : 38,
2335
+ CurvedConnector4 : 39,
2336
+ CurvedConnector5 : 40,
2337
+ LineCalloutNoBorder2 : 41,
2338
+ LineCalloutNoBorder3 : 42,
2339
+ LineCalloutNoBorder4 : 43,
2340
+ LineCalloutWithAccentBar2 : 44,
2341
+ LineCalloutWithAccentBar3 : 45,
2342
+ LineCalloutWithAccentBar4 : 46,
2343
+ LineCalloutWithBorder2 : 47,
2344
+ LineCalloutWithBorder3 : 48,
2345
+ LineCalloutWithBorder4 : 49,
2346
+ LineCalloutWithBorderAndAccentBar2 : 50,
2347
+ LineCalloutWithBorderAndAccentBar3 : 51,
2348
+ LineCalloutWithBorderAndAccentBar4 : 52,
2349
+ DownRibbon : 53,
2350
+ UpRibbon : 54,
2351
+ Chevron : 55,
2352
+ RegularPentagon : 56,
2353
+ NoSymbol : 57,
2354
+ Star8 : 58,
2355
+ Star16 : 59,
2356
+ Star32 : 60,
2357
+ RectangularCallout : 61,
2358
+ RoundedRectangularCallout : 62,
2359
+ OvalCallout : 63,
2360
+ Wave : 64,
2361
+ FoldedCorner : 65,
2362
+ LeftArrow : 66,
2363
+ DownArrow : 67,
2364
+ UpArrow : 68,
2365
+ LeftRightArrow : 69,
2366
+ UpDownArrow : 70,
2367
+ Explosion1 : 71,
2368
+ Explosion2 : 72,
2369
+ LightningBolt : 73,
2370
+ Heart : 74,
2371
+ PictureFrame : 75,
2372
+ QuadArrow : 76,
2373
+ LeftArrowCallout : 77,
2374
+ RightArrowCallout : 78,
2375
+ UpArrowCallout : 79,
2376
+ DownArrowCallout : 80,
2377
+ LeftRightArrowCallout : 81,
2378
+ UpDownArrowCallout : 82,
2379
+ QuadArrowCallout : 83,
2380
+ Bevel : 84,
2381
+ LeftBracket : 85,
2382
+ RightBracket : 86,
2383
+ LeftBrace : 87,
2384
+ RightBrace : 88,
2385
+ LeftUpArrow : 89,
2386
+ BentUpArrow : 90,
2387
+ BentArrow : 91,
2388
+ Star24 : 92,
2389
+ StripedRightArrow : 93,
2390
+ NotchedRightArrow : 94,
2391
+ BlockArc : 95,
2392
+ SmileyFace : 96,
2393
+ VerticalScroll : 97,
2394
+ HorizontalScroll : 98,
2395
+ CircularArrow : 99,
2396
+ NotchedCircularArrow : 100,
2397
+ UTurnArrow : 101,
2398
+ CurvedRightArrow : 102,
2399
+ CurvedLeftArrow : 103,
2400
+ CurvedUpArrow : 104,
2401
+ CurvedDownArrow : 105,
2402
+ CloudCallout : 106,
2403
+ CurvedDownRibbon : 107,
2404
+ CurvedUpRibbon : 108,
2405
+ FlowChartProcess : 109,
2406
+ FlowChartDecision : 110,
2407
+ FlowChartData : 111,
2408
+ FlowChartPredefinedProcess : 112,
2409
+ FlowChartInternalStorage : 113,
2410
+ FlowChartDocument : 114,
2411
+ FlowChartMultidocument : 115,
2412
+ FlowChartTerminator : 116,
2413
+ FlowChartPreparation : 117,
2414
+ FlowChartManualInput : 118,
2415
+ FlowChartManualOperation : 119,
2416
+ FlowChartConnector : 120,
2417
+ FlowChartCard : 121,
2418
+ FlowChartPunchedTape : 122,
2419
+ FlowChartSummingJunction : 123,
2420
+ FlowChartOr : 124,
2421
+ FlowChartCollate : 125,
2422
+ FlowChartSort : 126,
2423
+ FlowChartExtract : 127,
2424
+ FlowChartMerge : 128,
2425
+ FlowChartOfflineStorage : 129,
2426
+ FlowChartStoredData : 130,
2427
+ FlowChartSequentialAccessStorage : 131,
2428
+ FlowChartMagneticDisk : 132,
2429
+ FlowChartDirectAccessStorage : 133,
2430
+ FlowChartDisplay : 134,
2431
+ FlowChartDelay : 135,
2432
+ TextPlainText : 136,
2433
+ TextStop : 137,
2434
+ TextTriangle : 138,
2435
+ TextTriangleInverted : 139,
2436
+ TextChevron : 140,
2437
+ TextChevronInverted : 141,
2438
+ TextRingInside : 142,
2439
+ TextRingOutside : 143,
2440
+ TextArchUpCurve : 144,
2441
+ TextArchDownCurve : 145,
2442
+ TextCircleCurve : 146,
2443
+ TextButtonCurve : 147,
2444
+ TextArchUpPour : 148,
2445
+ TextArchDownPour : 149,
2446
+ TextCirclePour : 150,
2447
+ TextButtonPour : 151,
2448
+ TextCurveUp : 152,
2449
+ TextCurveDown : 153,
2450
+ TextCascadeUp : 154,
2451
+ TextCascadeDown : 155,
2452
+ TextWave1 : 156,
2453
+ TextWave2 : 157,
2454
+ TextDoubleWave1 : 158,
2455
+ TextDoubleWave2 : 159,
2456
+ TextInflate : 160,
2457
+ TextDeflate : 161,
2458
+ TextInflateBottom : 162,
2459
+ TextDeflateBottom : 163,
2460
+ TextInflateTop : 164,
2461
+ TextDeflateTop : 165,
2462
+ TextDeflateInflate : 166,
2463
+ TextDeflateInflateDeflate : 167,
2464
+ TextFadeRight : 168,
2465
+ TextFadeLeft : 169,
2466
+ TextFadeUp : 170,
2467
+ TextFadeDown : 171,
2468
+ TextSlantUp : 172,
2469
+ TextSlantDown : 173,
2470
+ TextCanUp : 174,
2471
+ TextCanDown : 175,
2472
+ FlowChartAlternateProcess : 176,
2473
+ FlowChartOffpageConnector : 177,
2474
+ LineCalloutNoBorder1 : 178,
2475
+ LineCalloutWithAccentBar1 : 179,
2476
+ LineCalloutWithBorder1 : 180,
2477
+ LineCalloutWithBorderAndAccentBar1 : 181,
2478
+ LeftRightUpArrow : 182,
2479
+ Sun : 183,
2480
+ Moon : 184,
2481
+ DoubleBracket : 185,
2482
+ DoubleBrace : 186,
2483
+ Star4 : 187,
2484
+ DoubleWave : 188,
2485
+ BlankActionButton : 189,
2486
+ HomeActionButton : 190,
2487
+ HelpActionButton : 191,
2488
+ InformationActionButton : 192,
2489
+ ForwardNextActionButton : 193,
2490
+ BackPreviousActionButton : 194,
2491
+ EndActionButton : 195,
2492
+ BeginningActionButton : 196,
2493
+ ReturnActionButton : 197,
2494
+ DocumentActionButton : 198,
2495
+ SoundActionButton : 199,
2496
+ MovieActionButton : 200,
2497
+ HostControl : 201,
2498
+ TextBox : 202,
2499
+ Heptagon : 2049,
2500
+ Decagon : 2050,
2501
+ Dodecagon : 2051,
2502
+ Star6 : 2052,
2503
+ Star7 : 2053,
2504
+ Star10 : 2054,
2505
+ Star12 : 2055,
2506
+ RoundSingleCornerRectangle : 2056,
2507
+ RoundSameSideCornerRectangle : 2057,
2508
+ RoundDiagonalCornerRectangle : 2058,
2509
+ SnipRoundSingleCornerRectangle : 2059,
2510
+ SnipSingleCornerRectangle : 2060,
2511
+ SnipSameSideCornerRectangle : 2061,
2512
+ SnipDiagonalCornerRectangle : 2062,
2513
+ Teardrop : 2063,
2514
+ Pie : 2064,
2515
+ HalfFrame : 2066,
2516
+ L_Shape : 2067,
2517
+ DiagonalStripe : 2068,
2518
+ Chord : 2069,
2519
+ Cloud : 2070,
2520
+ MathPlus : 2071,
2521
+ MathMinus : 2072,
2522
+ MathMultiply : 2073,
2523
+ MathDivide : 2074,
2524
+ MathEqual : 2075,
2525
+ MathNotEqual : 2076,
2526
+ LineInv : 2077,
2527
+ NonIsoscelesTrapezoid : 2078,
2528
+ PieWedge : 2079,
2529
+ LeftCircularArrow : 2080,
2530
+ LeftRightCircularArrow : 2081,
2531
+ SwooshArrow : 2082,
2532
+ LeftRightRibbon : 2083,
2533
+ TextNoShape : 2084,
2534
+ Gear6 : 2097,
2535
+ Gear9 : 2098,
2536
+ Funnel : 2099,
2537
+ CornerTabs : 2100,
2538
+ SquareTabs : 2101,
2539
+ PlaqueTabs : 2102,
2540
+ ChartX : 2103,
2541
+ ChartStar : 2104,
2542
+ ChartPlus : 2105,
2543
+ Frame : 2106,
2544
+ Model3D : 2107,
2545
+ RoundCallout : 2108,
2546
+ TextArchLeftPour : 2109,
2547
+ TextArchRightPour : 2110,
2548
+ TextArchLeftCurve : 2111,
2549
+ TextArchRightCurve : 2112,
2550
+ Unknown : 4095,
2551
+ };
2552
+
2553
+ exports.BackgroundMode = {
2554
+ Automatic : 0,
2555
+ Opaque : 1,
2556
+ Transparent : 2,
2557
+ };
2558
+
2559
+ exports.BackgroundType = {
2560
+ DiagonalCrosshatch : 9,
2561
+ DiagonalStripe : 8,
2562
+ Gray6 : 18,
2563
+ Gray12 : 17,
2564
+ Gray25 : 4,
2565
+ Gray50 : 2,
2566
+ Gray75 : 3,
2567
+ HorizontalStripe : 5,
2568
+ None : 0,
2569
+ ReverseDiagonalStripe : 7,
2570
+ Solid : 1,
2571
+ ThickDiagonalCrosshatch : 10,
2572
+ ThinDiagonalCrosshatch : 16,
2573
+ ThinDiagonalStripe : 14,
2574
+ ThinHorizontalCrosshatch : 15,
2575
+ ThinHorizontalStripe : 11,
2576
+ ThinReverseDiagonalStripe : 13,
2577
+ ThinVerticalStripe : 12,
2578
+ VerticalStripe : 6,
2579
+ };
2580
+
2581
+ exports.Bar3DShapeType = {
2582
+ Box : 0,
2583
+ PyramidToPoint : 1,
2584
+ PyramidToMax : 2,
2585
+ Cylinder : 3,
2586
+ ConeToPoint : 4,
2587
+ ConeToMax : 5,
2588
+ };
2589
+
2590
+ exports.BorderType = {
2591
+ BottomBorder : 8,
2592
+ DiagonalDown : 16,
2593
+ DiagonalUp : 32,
2594
+ LeftBorder : 1,
2595
+ RightBorder : 2,
2596
+ TopBorder : 4,
2597
+ Horizontal : 128,
2598
+ Vertical : 64,
2599
+ };
2600
+
2601
+ exports.BubbleSizeRepresents = {
2602
+ SizeIsArea : 0,
2603
+ SizeIsWidth : 1,
2604
+ };
2605
+
2606
+ exports.CalcModeType = {
2607
+ Automatic : 0,
2608
+ AutomaticExceptTable : 1,
2609
+ Manual : 2,
2610
+ };
2611
+
2612
+ exports.CellBorderType = {
2613
+ DashDot : 9,
2614
+ DashDotDot : 11,
2615
+ Dashed : 3,
2616
+ Dotted : 4,
2617
+ Double : 6,
2618
+ Hair : 7,
2619
+ MediumDashDot : 10,
2620
+ MediumDashDotDot : 12,
2621
+ MediumDashed : 8,
2622
+ None : 0,
2623
+ Medium : 2,
2624
+ SlantedDashDot : 13,
2625
+ Thick : 5,
2626
+ Thin : 1,
2627
+ };
2628
+
2629
+ exports.CellValueType = {
2630
+ IsUnknown : 0,
2631
+ IsNull : 1,
2632
+ IsNumeric : 2,
2633
+ IsDateTime : 4,
2634
+ IsString : 8,
2635
+ IsBool : 16,
2636
+ IsError : 32,
2637
+ };
2638
+
2639
+ exports.ChartMarkerType = {
2640
+ Automatic : 0,
2641
+ Circle : 1,
2642
+ Dash : 2,
2643
+ Diamond : 3,
2644
+ Dot : 4,
2645
+ None : 5,
2646
+ SquarePlus : 6,
2647
+ Square : 7,
2648
+ SquareStar : 8,
2649
+ Triangle : 9,
2650
+ SquareX : 10,
2651
+ Picture : 11,
2652
+ };
2653
+
2654
+ exports.ChartSplitType = {
2655
+ Position : 0,
2656
+ Value : 1,
2657
+ PercentValue : 2,
2658
+ Custom : 3,
2659
+ Auto : 4,
2660
+ };
2661
+
2662
+ exports.ChartType = {
2663
+ Area : 0,
2664
+ AreaStacked : 1,
2665
+ Area100PercentStacked : 2,
2666
+ Area3D : 3,
2667
+ Area3DStacked : 4,
2668
+ Area3D100PercentStacked : 5,
2669
+ Bar : 6,
2670
+ BarStacked : 7,
2671
+ Bar100PercentStacked : 8,
2672
+ Bar3DClustered : 9,
2673
+ Bar3DStacked : 10,
2674
+ Bar3D100PercentStacked : 11,
2675
+ Bubble : 12,
2676
+ Bubble3D : 13,
2677
+ Column : 14,
2678
+ ColumnStacked : 15,
2679
+ Column100PercentStacked : 16,
2680
+ Column3D : 17,
2681
+ Column3DClustered : 18,
2682
+ Column3DStacked : 19,
2683
+ Column3D100PercentStacked : 20,
2684
+ Cone : 21,
2685
+ ConeStacked : 22,
2686
+ Cone100PercentStacked : 23,
2687
+ ConicalBar : 24,
2688
+ ConicalBarStacked : 25,
2689
+ ConicalBar100PercentStacked : 26,
2690
+ ConicalColumn3D : 27,
2691
+ Cylinder : 28,
2692
+ CylinderStacked : 29,
2693
+ Cylinder100PercentStacked : 30,
2694
+ CylindricalBar : 31,
2695
+ CylindricalBarStacked : 32,
2696
+ CylindricalBar100PercentStacked : 33,
2697
+ CylindricalColumn3D : 34,
2698
+ Doughnut : 35,
2699
+ DoughnutExploded : 36,
2700
+ Line : 37,
2701
+ LineStacked : 38,
2702
+ Line100PercentStacked : 39,
2703
+ LineWithDataMarkers : 40,
2704
+ LineStackedWithDataMarkers : 41,
2705
+ Line100PercentStackedWithDataMarkers : 42,
2706
+ Line3D : 43,
2707
+ Pie : 44,
2708
+ Pie3D : 45,
2709
+ PiePie : 46,
2710
+ PieExploded : 47,
2711
+ Pie3DExploded : 48,
2712
+ PieBar : 49,
2713
+ Pyramid : 50,
2714
+ PyramidStacked : 51,
2715
+ Pyramid100PercentStacked : 52,
2716
+ PyramidBar : 53,
2717
+ PyramidBarStacked : 54,
2718
+ PyramidBar100PercentStacked : 55,
2719
+ PyramidColumn3D : 56,
2720
+ Radar : 57,
2721
+ RadarWithDataMarkers : 58,
2722
+ RadarFilled : 59,
2723
+ Scatter : 60,
2724
+ ScatterConnectedByCurvesWithDataMarker : 61,
2725
+ ScatterConnectedByCurvesWithoutDataMarker : 62,
2726
+ ScatterConnectedByLinesWithDataMarker : 63,
2727
+ ScatterConnectedByLinesWithoutDataMarker : 64,
2728
+ StockHighLowClose : 65,
2729
+ StockOpenHighLowClose : 66,
2730
+ StockVolumeHighLowClose : 67,
2731
+ StockVolumeOpenHighLowClose : 68,
2732
+ Surface3D : 69,
2733
+ SurfaceWireframe3D : 70,
2734
+ SurfaceContour : 71,
2735
+ SurfaceContourWireframe : 72,
2736
+ BoxWhisker : 73,
2737
+ Funnel : 74,
2738
+ ParetoLine : 75,
2739
+ Sunburst : 76,
2740
+ Treemap : 77,
2741
+ Waterfall : 78,
2742
+ Histogram : 79,
2743
+ Map : 80,
2744
+ RadialHistogram : 81,
2745
+ };
2746
+
2747
+ exports.CheckValueType = {
2748
+ UnChecked : 0,
2749
+ Checked : 1,
2750
+ Mixed : 2,
2751
+ };
2752
+
2753
+ exports.ConsolidationFunction = {
2754
+ Sum : 0,
2755
+ Count : 1,
2756
+ Average : 2,
2757
+ Max : 3,
2758
+ Min : 4,
2759
+ Product : 5,
2760
+ CountNums : 6,
2761
+ StdDev : 7,
2762
+ StdDevp : 8,
2763
+ Var : 9,
2764
+ Varp : 10,
2765
+ DistinctCount : 11,
2766
+ };
2767
+
2768
+ exports.ImageType = {
2769
+ Unknown : 0,
2770
+ Emf : 2,
2771
+ Wmf : 3,
2772
+ Pict : 4,
2773
+ Jpeg : 5,
2774
+ Png : 6,
2775
+ Bmp : 7,
2776
+ Gif : 66,
2777
+ Tiff : 67,
2778
+ Svg : 68,
2779
+ Svm : 69,
2780
+ Gltf : 70,
2781
+ OfficeCompatibleEmf : 71,
2782
+ WebP : 72,
2783
+ };
2784
+
2785
+ exports.PdfCompressionCore = {
2786
+ None : 0,
2787
+ Rle : 1,
2788
+ Lzw : 2,
2789
+ Flate : 3,
2790
+ };
2791
+
2792
+ exports.CountryCode = {
2793
+ Default : 0,
2794
+ USA : 1,
2795
+ Canada : 2,
2796
+ LatinAmeric : 3,
2797
+ Russia : 7,
2798
+ Egypt : 20,
2799
+ Greece : 30,
2800
+ Netherlands : 31,
2801
+ Belgium : 32,
2802
+ France : 33,
2803
+ Spain : 34,
2804
+ Hungary : 36,
2805
+ Italy : 39,
2806
+ Switzerland : 41,
2807
+ Austria : 43,
2808
+ UnitedKingdom : 44,
2809
+ Denmark : 45,
2810
+ Sweden : 46,
2811
+ Norway : 47,
2812
+ Poland : 48,
2813
+ Germany : 49,
2814
+ Mexico : 52,
2815
+ Brazil : 55,
2816
+ Australia : 61,
2817
+ NewZealand : 64,
2818
+ Thailand : 66,
2819
+ Japan : 81,
2820
+ SouthKorea : 82,
2821
+ VietNam : 84,
2822
+ China : 86,
2823
+ Turkey : 90,
2824
+ India : 91,
2825
+ Algeria : 213,
2826
+ Morocco : 216,
2827
+ Libya : 218,
2828
+ Portugal : 351,
2829
+ Iceland : 354,
2830
+ Finland : 358,
2831
+ Czech : 420,
2832
+ Taiwan : 886,
2833
+ Lebanon : 961,
2834
+ Jordan : 962,
2835
+ Syria : 963,
2836
+ Iraq : 964,
2837
+ Kuwait : 965,
2838
+ Saudi : 966,
2839
+ UnitedArabEmirates : 971,
2840
+ Israel : 972,
2841
+ Qatar : 974,
2842
+ Iran : 981,
2843
+ };
2844
+
2845
+ exports.DataLabelsSeparatorType = {
2846
+ Auto : 0,
2847
+ Space : 1,
2848
+ Comma : 2,
2849
+ Semicolon : 3,
2850
+ Period : 4,
2851
+ NewLine : 5,
2852
+ Custom : 6,
2853
+ };
2854
+
2855
+ exports.DisplayDrawingObjects = {
2856
+ DisplayShapes : 0,
2857
+ Placeholders : 1,
2858
+ Hide : 2,
2859
+ };
2860
+
2861
+ exports.DisplayUnitType = {
2862
+ None : 0,
2863
+ Hundreds : 1,
2864
+ Thousands : 2,
2865
+ TenThousands : 3,
2866
+ HundredThousands : 4,
2867
+ Millions : 5,
2868
+ TenMillions : 6,
2869
+ HundredMillions : 7,
2870
+ Billions : 8,
2871
+ Trillions : 9,
2872
+ Percentage : 10,
2873
+ Cust : 11,
2874
+ Custom : 12,
2875
+ };
2876
+
2877
+ exports.PropertyType = {
2878
+ Boolean : 0,
2879
+ DateTime : 1,
2880
+ Double : 2,
2881
+ Number : 3,
2882
+ String : 4,
2883
+ Blob : 5,
2884
+ };
2885
+
2886
+ exports.EncryptionType = {
2887
+ XOR : 0,
2888
+ Compatible : 1,
2889
+ EnhancedCryptographicProviderV1 : 2,
2890
+ StrongCryptographicProvider : 3,
2891
+ };
2892
+
2893
+ exports.ErrorBarType = {
2894
+ Custom : 0,
2895
+ FixedValue : 1,
2896
+ Percent : 2,
2897
+ StDev : 3,
2898
+ StError : 4,
2899
+ };
2900
+
2901
+ exports.ExceptionType = {
2902
+ Chart : 0,
2903
+ DataType : 1,
2904
+ DataValidation : 2,
2905
+ ConditionalFormatting : 3,
2906
+ FileFormat : 4,
2907
+ Formula : 5,
2908
+ InvalidData : 6,
2909
+ InvalidOperator : 7,
2910
+ IncorrectPassword : 8,
2911
+ License : 9,
2912
+ Limitation : 10,
2913
+ PageSetup : 11,
2914
+ PivotTable : 12,
2915
+ Shape : 13,
2916
+ Sparkline : 14,
2917
+ SheetName : 15,
2918
+ SheetType : 16,
2919
+ Interrupted : 17,
2920
+ IO : 18,
2921
+ Permission : 19,
2922
+ UnsupportedFeature : 20,
2923
+ UnsupportedStream : 21,
2924
+ UndisclosedInformation : 22,
2925
+ FileCorrupted : 23,
2926
+ Internal : 24,
2927
+ DefinedName : 25,
2928
+ Font : 26,
2929
+ AutoFilter : 27,
2930
+ FontSubstitution : 28,
2931
+ };
2932
+
2933
+ exports.FileFormatType = {
2934
+ Csv : 1,
2935
+ Xlsx : 6,
2936
+ Xlsm : 7,
2937
+ Xltx : 8,
2938
+ Xltm : 9,
2939
+ Xlam : 10,
2940
+ Tsv : 11,
2941
+ TabDelimited : 11,
2942
+ Html : 12,
2943
+ MHtml : 17,
2944
+ Ods : 14,
2945
+ Excel97To2003 : 5,
2946
+ SpreadsheetML : 15,
2947
+ Xlsb : 16,
2948
+ Unknown : 255,
2949
+ Pdf : 13,
2950
+ Xps : 20,
2951
+ Tiff : 21,
2952
+ Svg : 28,
2953
+ Excel95 : 22,
2954
+ Excel4 : 23,
2955
+ Excel3 : 24,
2956
+ Excel2 : 25,
2957
+ Pptx : 26,
2958
+ Docx : 27,
2959
+ Dif : 30,
2960
+ Doc : 31,
2961
+ Ppt : 32,
2962
+ MapiMessage : 33,
2963
+ MsEquation : 34,
2964
+ Ole10Native : 35,
2965
+ Vsd : 36,
2966
+ Vsdx : 37,
2967
+ Docm : 38,
2968
+ Dotx : 39,
2969
+ Dotm : 40,
2970
+ Pptm : 41,
2971
+ Potx : 42,
2972
+ Potm : 43,
2973
+ Ppsx : 44,
2974
+ Ppsm : 45,
2975
+ Ooxml : 46,
2976
+ Odt : 47,
2977
+ Odp : 48,
2978
+ Odf : 49,
2979
+ Odg : 50,
2980
+ Xml : 51,
2981
+ Xlt : 52,
2982
+ Ott : 53,
2983
+ Bmp : 54,
2984
+ Ots : 55,
2985
+ Numbers : 56,
2986
+ Numbers09 : 56,
2987
+ Markdown : 57,
2988
+ GraphChart : 58,
2989
+ Fods : 59,
2990
+ Sxc : 60,
2991
+ Otp : 61,
2992
+ Numbers35 : 62,
2993
+ Ole : 64,
2994
+ Emf : 258,
2995
+ Wmf : 259,
2996
+ Jpg : 261,
2997
+ Png : 262,
2998
+ Gif : 322,
2999
+ WebP : 323,
3000
+ Json : 513,
3001
+ SqlScript : 514,
3002
+ XHtml : 771,
3003
+ OneNote : 772,
3004
+ MicrosoftCabinet : 773,
3005
+ Rtf : 774,
3006
+ Epub : 775,
3007
+ Azw3 : 777,
3008
+ Chm : 784,
3009
+ Oxps : 776,
3010
+ GZip : 35615,
3011
+ };
3012
+
3013
+ exports.FillPattern = {
3014
+ None : 0,
3015
+ Solid : 1,
3016
+ Gray5 : 2,
3017
+ Gray10 : 3,
3018
+ Gray20 : 4,
3019
+ Gray30 : 5,
3020
+ Gray40 : 6,
3021
+ Gray50 : 7,
3022
+ Gray60 : 8,
3023
+ Gray70 : 9,
3024
+ Gray75 : 10,
3025
+ Gray80 : 11,
3026
+ Gray90 : 12,
3027
+ Gray25 : 13,
3028
+ LightDownwardDiagonal : 14,
3029
+ LightUpwardDiagonal : 15,
3030
+ DarkDownwardDiagonal : 16,
3031
+ DarkUpwardDiagonal : 17,
3032
+ WideDownwardDiagonal : 18,
3033
+ WideUpwardDiagonal : 19,
3034
+ LightVertical : 20,
3035
+ LightHorizontal : 21,
3036
+ NarrowVertical : 22,
3037
+ NarrowHorizontal : 23,
3038
+ DarkVertical : 24,
3039
+ DarkHorizontal : 25,
3040
+ DashedDownwardDiagonal : 26,
3041
+ DashedUpwardDiagonal : 27,
3042
+ DashedVertical : 28,
3043
+ DashedHorizontal : 29,
3044
+ SmallConfetti : 30,
3045
+ LargeConfetti : 31,
3046
+ ZigZag : 32,
3047
+ Wave : 33,
3048
+ DiagonalBrick : 34,
3049
+ HorizontalBrick : 35,
3050
+ Weave : 36,
3051
+ Plaid : 37,
3052
+ Divot : 38,
3053
+ DottedGrid : 39,
3054
+ DottedDiamond : 40,
3055
+ Shingle : 41,
3056
+ Trellis : 42,
3057
+ Sphere : 43,
3058
+ SmallGrid : 44,
3059
+ LargeGrid : 45,
3060
+ SmallCheckerBoard : 46,
3061
+ LargeCheckerBoard : 47,
3062
+ OutlinedDiamond : 48,
3063
+ SolidDiamond : 49,
3064
+ Unknown : 50,
3065
+ };
3066
+
3067
+ exports.FilterOperatorType = {
3068
+ LessOrEqual : 0,
3069
+ LessThan : 1,
3070
+ Equal : 2,
3071
+ GreaterThan : 3,
3072
+ NotEqual : 4,
3073
+ GreaterOrEqual : 5,
3074
+ None : 6,
3075
+ BeginsWith : 7,
3076
+ EndsWith : 8,
3077
+ Contains : 9,
3078
+ NotContains : 10,
3079
+ NotBeginsWith : 11,
3080
+ NotEndsWith : 12,
3081
+ };
3082
+
3083
+ exports.FontUnderlineType = {
3084
+ None : 0,
3085
+ Single : 1,
3086
+ Double : 2,
3087
+ Accounting : 3,
3088
+ DoubleAccounting : 4,
3089
+ Dash : 5,
3090
+ DashDotDotHeavy : 6,
3091
+ DashDotHeavy : 7,
3092
+ DashedHeavy : 8,
3093
+ DashLong : 9,
3094
+ DashLongHeavy : 10,
3095
+ DotDash : 11,
3096
+ DotDotDash : 12,
3097
+ Dotted : 13,
3098
+ DottedHeavy : 14,
3099
+ Heavy : 15,
3100
+ Wave : 16,
3101
+ WavyDouble : 17,
3102
+ WavyHeavy : 18,
3103
+ Words : 19,
3104
+ };
3105
+
3106
+ exports.FormatConditionType = {
3107
+ CellValue : 1,
3108
+ Expression : 2,
3109
+ Top10 : 4,
3110
+ UniqueValues : 8,
3111
+ DuplicateValues : 16,
3112
+ ContainsText : 32,
3113
+ NotContainsText : 64,
3114
+ BeginsWith : 128,
3115
+ EndsWith : 256,
3116
+ ContainsBlanks : 512,
3117
+ NotContainsBlanks : 1024,
3118
+ ContainsErrors : 2048,
3119
+ NotContainsErrors : 4096,
3120
+ TimePeriod : 8192,
3121
+ AboveAverage : 16384,
3122
+ ColorScale : 32768,
3123
+ DataBar : 65536,
3124
+ IconSet : 131072,
3125
+ };
3126
+
3127
+ exports.FormattingType = {
3128
+ Automatic : 0,
3129
+ Custom : 2,
3130
+ None : 1,
3131
+ };
3132
+
3133
+ exports.GradientColorType = {
3134
+ None : 0,
3135
+ OneColor : 1,
3136
+ PresetColors : 2,
3137
+ TwoColors : 3,
3138
+ };
3139
+
3140
+ exports.GradientPresetType = {
3141
+ Brass : 0,
3142
+ CalmWater : 1,
3143
+ Chrome : 2,
3144
+ ChromeII : 3,
3145
+ Daybreak : 4,
3146
+ Desert : 5,
3147
+ EarlySunset : 6,
3148
+ Fire : 7,
3149
+ Fog : 8,
3150
+ Gold : 9,
3151
+ GoldII : 10,
3152
+ Horizon : 11,
3153
+ LateSunset : 12,
3154
+ Mahogany : 13,
3155
+ Moss : 14,
3156
+ Nightfall : 15,
3157
+ Ocean : 16,
3158
+ Parchment : 17,
3159
+ Peacock : 18,
3160
+ Rainbow : 19,
3161
+ RainbowII : 20,
3162
+ Sapphire : 21,
3163
+ Silver : 22,
3164
+ Wheat : 23,
3165
+ Unknown : 24,
3166
+ };
3167
+
3168
+ exports.GradientStyleType = {
3169
+ DiagonalDown : 0,
3170
+ DiagonalUp : 1,
3171
+ FromCenter : 2,
3172
+ FromCorner : 3,
3173
+ Horizontal : 4,
3174
+ Vertical : 5,
3175
+ Unknown : 6,
3176
+ };
3177
+
3178
+ exports.LegendPositionType = {
3179
+ Bottom : 0,
3180
+ Corner : 1,
3181
+ Left : 4,
3182
+ NotDocked : 7,
3183
+ Right : 3,
3184
+ Top : 2,
3185
+ };
3186
+
3187
+ exports.LineType = {
3188
+ DarkGray : 6,
3189
+ Dash : 1,
3190
+ DashDot : 3,
3191
+ DashDotDot : 4,
3192
+ Dot : 2,
3193
+ LightGray : 8,
3194
+ MediumGray : 7,
3195
+ Solid : 0,
3196
+ };
3197
+
3198
+ exports.MsoArrowheadStyle = {
3199
+ None : 0,
3200
+ Arrow : 1,
3201
+ ArrowStealth : 2,
3202
+ ArrowDiamond : 3,
3203
+ ArrowOval : 4,
3204
+ ArrowOpen : 5,
3205
+ };
3206
+
3207
+ exports.ChartLineFormattingType = {
3208
+ Automatic : 0,
3209
+ Solid : 1,
3210
+ None : 2,
3211
+ Gradient : 3,
3212
+ };
3213
+
3214
+ exports.GradientFillType = {
3215
+ Linear : 0,
3216
+ Radial : 1,
3217
+ Rectangle : 2,
3218
+ Path : 3,
3219
+ };
3220
+
3221
+ exports.GradientDirectionType = {
3222
+ FromUpperLeftCorner : 0,
3223
+ FromUpperRightCorner : 1,
3224
+ FromLowerLeftCorner : 2,
3225
+ FromLowerRightCorner : 3,
3226
+ FromCenter : 4,
3227
+ Unknown : 5,
3228
+ };
3229
+
3230
+ exports.LineCapType = {
3231
+ Square : 0,
3232
+ Round : 1,
3233
+ Flat : 2,
3234
+ None : 3,
3235
+ };
3236
+
3237
+ exports.LineJoinType = {
3238
+ Round : 0,
3239
+ Bevel : 1,
3240
+ Miter : 2,
3241
+ None : 3,
3242
+ };
3243
+
3244
+ exports.PlotEmptyCellsType = {
3245
+ NotPlotted : 0,
3246
+ Zero : 1,
3247
+ Interpolated : 2,
3248
+ };
3249
+
3250
+ exports.FillPictureType = {
3251
+ Stretch : 0,
3252
+ Stack : 1,
3253
+ StackAndScale : 2,
3254
+ };
3255
+
3256
+ exports.MsoDrawingType = {
3257
+ Group : 0,
3258
+ Line : 1,
3259
+ Rectangle : 2,
3260
+ Oval : 3,
3261
+ Arc : 4,
3262
+ Chart : 5,
3263
+ TextBox : 6,
3264
+ Button : 7,
3265
+ Picture : 8,
3266
+ Polygon : 9,
3267
+ CheckBox : 11,
3268
+ RadioButton : 12,
3269
+ Label : 14,
3270
+ Dialog_Box : 15,
3271
+ Spinner : 16,
3272
+ ScrollBar : 17,
3273
+ ListBox : 18,
3274
+ GroupBox : 19,
3275
+ ComboBox : 20,
3276
+ Comment : 25,
3277
+ OleObject : 24,
3278
+ CellsDrawing : 30,
3279
+ Unknown : 29,
3280
+ Slicer : 31,
3281
+ WebExtension : 32,
3282
+ SmartArt : 33,
3283
+ CustomXml : 34,
3284
+ Timeline : 35,
3285
+ Model3D : 36,
3286
+ };
3287
+
3288
+ exports.MsoPresetTextEffect = {
3289
+ TextEffect1 : 0,
3290
+ TextEffect2 : 1,
3291
+ TextEffect3 : 2,
3292
+ TextEffect4 : 3,
3293
+ TextEffect5 : 4,
3294
+ TextEffect6 : 5,
3295
+ TextEffect7 : 6,
3296
+ TextEffect8 : 7,
3297
+ TextEffect9 : 8,
3298
+ TextEffect10 : 9,
3299
+ TextEffect11 : 10,
3300
+ TextEffect12 : 11,
3301
+ TextEffect13 : 12,
3302
+ TextEffect14 : 13,
3303
+ TextEffect15 : 14,
3304
+ TextEffect16 : 15,
3305
+ TextEffect17 : 16,
3306
+ TextEffect18 : 17,
3307
+ TextEffect19 : 18,
3308
+ TextEffect20 : 19,
3309
+ TextEffect21 : 20,
3310
+ TextEffect22 : 21,
3311
+ TextEffect23 : 22,
3312
+ TextEffect24 : 23,
3313
+ TextEffect25 : 24,
3314
+ TextEffect26 : 25,
3315
+ TextEffect27 : 26,
3316
+ TextEffect28 : 27,
3317
+ TextEffect29 : 28,
3318
+ TextEffect30 : 29,
3319
+ };
3320
+
3321
+ exports.MsoPresetTextEffectShape = {
3322
+ PlainText : 136,
3323
+ Stop : 137,
3324
+ TriangleUp : 138,
3325
+ TriangleDown : 139,
3326
+ ChevronUp : 140,
3327
+ ChevronDown : 141,
3328
+ RingInside : 142,
3329
+ RingOutside : 143,
3330
+ ArchUpCurve : 144,
3331
+ ArchDownCurve : 145,
3332
+ CircleCurve : 146,
3333
+ ButtonCurve : 147,
3334
+ ArchUpPour : 148,
3335
+ ArchDownPour : 149,
3336
+ CirclePour : 150,
3337
+ ButtonPour : 151,
3338
+ CurveUp : 152,
3339
+ CurveDown : 153,
3340
+ CanUp : 174,
3341
+ CanDown : 175,
3342
+ Wave1 : 156,
3343
+ Wave2 : 157,
3344
+ DoubleWave1 : 158,
3345
+ DoubleWave2 : 159,
3346
+ Inflate : 160,
3347
+ Deflate : 161,
3348
+ InflateBottom : 162,
3349
+ DeflateBottom : 163,
3350
+ InflateTop : 164,
3351
+ DeflateTop : 165,
3352
+ DeflateInflate : 166,
3353
+ DeflateInflateDeflate : 167,
3354
+ FadeRight : 168,
3355
+ FadeLeft : 169,
3356
+ FadeUp : 170,
3357
+ FadeDown : 171,
3358
+ SlantUp : 172,
3359
+ SlantDown : 173,
3360
+ CascadeUp : 154,
3361
+ CascadeDown : 155,
3362
+ Mixed : 255,
3363
+ };
3364
+
3365
+ exports.MsoLineDashStyle = {
3366
+ Dash : 0,
3367
+ DashDot : 1,
3368
+ DashDotDot : 2,
3369
+ DashLongDash : 3,
3370
+ DashLongDashDot : 4,
3371
+ RoundDot : 5,
3372
+ Solid : 6,
3373
+ SquareDot : 7,
3374
+ Custom : 8,
3375
+ };
3376
+
3377
+ exports.MsoLineStyle = {
3378
+ Single : 0,
3379
+ ThickBetweenThin : 1,
3380
+ ThinThick : 2,
3381
+ ThickThin : 3,
3382
+ ThinThin : 4,
3383
+ };
3384
+
3385
+ exports.OperatorType = {
3386
+ Between : 0,
3387
+ Equal : 1,
3388
+ GreaterThan : 2,
3389
+ GreaterOrEqual : 3,
3390
+ LessThan : 4,
3391
+ LessOrEqual : 5,
3392
+ None : 6,
3393
+ NotBetween : 7,
3394
+ NotEqual : 8,
3395
+ };
3396
+
3397
+ exports.PageOrientationType = {
3398
+ Landscape : 0,
3399
+ Portrait : 1,
3400
+ };
3401
+
3402
+ exports.PaperSizeType = {
3403
+ PaperLetter : 1,
3404
+ PaperLetterSmall : 2,
3405
+ PaperTabloid : 3,
3406
+ PaperLedger : 4,
3407
+ PaperLegal : 5,
3408
+ PaperStatement : 6,
3409
+ PaperExecutive : 7,
3410
+ PaperA3 : 8,
3411
+ PaperA4 : 9,
3412
+ PaperA4Small : 10,
3413
+ PaperA5 : 11,
3414
+ PaperB4 : 12,
3415
+ PaperB5 : 13,
3416
+ PaperFolio : 14,
3417
+ PaperQuarto : 15,
3418
+ Paper10x14 : 16,
3419
+ Paper11x17 : 17,
3420
+ PaperNote : 18,
3421
+ PaperEnvelope9 : 19,
3422
+ PaperEnvelope10 : 20,
3423
+ PaperEnvelope11 : 21,
3424
+ PaperEnvelope12 : 22,
3425
+ PaperEnvelope14 : 23,
3426
+ PaperCSheet : 24,
3427
+ PaperDSheet : 25,
3428
+ PaperESheet : 26,
3429
+ PaperEnvelopeDL : 27,
3430
+ PaperEnvelopeC5 : 28,
3431
+ PaperEnvelopeC3 : 29,
3432
+ PaperEnvelopeC4 : 30,
3433
+ PaperEnvelopeC6 : 31,
3434
+ PaperEnvelopeC65 : 32,
3435
+ PaperEnvelopeB4 : 33,
3436
+ PaperEnvelopeB5 : 34,
3437
+ PaperEnvelopeB6 : 35,
3438
+ PaperEnvelopeItaly : 36,
3439
+ PaperEnvelopeMonarch : 37,
3440
+ PaperEnvelopePersonal : 38,
3441
+ PaperFanfoldUS : 39,
3442
+ PaperFanfoldStdGerman : 40,
3443
+ PaperFanfoldLegalGerman : 41,
3444
+ PaperISOB4 : 42,
3445
+ PaperJapanesePostcard : 43,
3446
+ Paper9x11 : 44,
3447
+ Paper10x11 : 45,
3448
+ Paper15x11 : 46,
3449
+ PaperEnvelopeInvite : 47,
3450
+ PaperLetterExtra : 50,
3451
+ PaperLegalExtra : 51,
3452
+ PaperTabloidExtra : 52,
3453
+ PaperA4Extra : 53,
3454
+ PaperLetterTransverse : 54,
3455
+ PaperA4Transverse : 55,
3456
+ PaperLetterExtraTransverse : 56,
3457
+ PaperSuperA : 57,
3458
+ PaperSuperB : 58,
3459
+ PaperLetterPlus : 59,
3460
+ PaperA4Plus : 60,
3461
+ PaperA5Transverse : 61,
3462
+ PaperJISB5Transverse : 62,
3463
+ PaperA3Extra : 63,
3464
+ PaperA5Extra : 64,
3465
+ PaperISOB5Extra : 65,
3466
+ PaperA2 : 66,
3467
+ PaperA3Transverse : 67,
3468
+ PaperA3ExtraTransverse : 68,
3469
+ PaperJapaneseDoublePostcard : 69,
3470
+ PaperA6 : 70,
3471
+ PaperJapaneseEnvelopeKaku2 : 71,
3472
+ PaperJapaneseEnvelopeKaku3 : 72,
3473
+ PaperJapaneseEnvelopeChou3 : 73,
3474
+ PaperJapaneseEnvelopeChou4 : 74,
3475
+ PaperLetterRotated : 75,
3476
+ PaperA3Rotated : 76,
3477
+ PaperA4Rotated : 77,
3478
+ PaperA5Rotated : 78,
3479
+ PaperJISB4Rotated : 79,
3480
+ PaperJISB5Rotated : 80,
3481
+ PaperJapanesePostcardRotated : 81,
3482
+ PaperJapaneseDoublePostcardRotated : 82,
3483
+ PaperA6Rotated : 83,
3484
+ PaperJapaneseEnvelopeKaku2Rotated : 84,
3485
+ PaperJapaneseEnvelopeKaku3Rotated : 85,
3486
+ PaperJapaneseEnvelopeChou3Rotated : 86,
3487
+ PaperJapaneseEnvelopeChou4Rotated : 87,
3488
+ PaperJISB6 : 88,
3489
+ PaperJISB6Rotated : 89,
3490
+ Paper12x11 : 90,
3491
+ PaperJapaneseEnvelopeYou4 : 91,
3492
+ PaperJapaneseEnvelopeYou4Rotated : 92,
3493
+ PaperPRC16K : 93,
3494
+ PaperPRC32K : 94,
3495
+ PaperPRCBig32K : 95,
3496
+ PaperPRCEnvelope1 : 96,
3497
+ PaperPRCEnvelope2 : 97,
3498
+ PaperPRCEnvelope3 : 98,
3499
+ PaperPRCEnvelope4 : 99,
3500
+ PaperPRCEnvelope5 : 100,
3501
+ PaperPRCEnvelope6 : 101,
3502
+ PaperPRCEnvelope7 : 102,
3503
+ PaperPRCEnvelope8 : 103,
3504
+ PaperPRCEnvelope9 : 104,
3505
+ PaperPRCEnvelope10 : 105,
3506
+ PaperPRC16KRotated : 106,
3507
+ PaperPRC32KRotated : 107,
3508
+ PaperPRCBig32KRotated : 108,
3509
+ PaperPRCEnvelope1Rotated : 109,
3510
+ PaperPRCEnvelope2Rotated : 110,
3511
+ PaperPRCEnvelope3Rotated : 111,
3512
+ PaperPRCEnvelope4Rotated : 112,
3513
+ PaperPRCEnvelope5Rotated : 113,
3514
+ PaperPRCEnvelope6Rotated : 114,
3515
+ PaperPRCEnvelope7Rotated : 115,
3516
+ PaperPRCEnvelope8Rotated : 116,
3517
+ PaperPRCEnvelope9Rotated : 117,
3518
+ PaperPRCEnvelope10Rotated : 118,
3519
+ PaperB3 : 300,
3520
+ PaperBusinessCard : 301,
3521
+ PaperThermal : 302,
3522
+ Custom : 0,
3523
+ };
3524
+
3525
+ exports.PlacementType = {
3526
+ FreeFloating : 0,
3527
+ Move : 1,
3528
+ MoveAndSize : 2,
3529
+ };
3530
+
3531
+ exports.PrintCommentsType = {
3532
+ PrintInPlace : 0,
3533
+ PrintNoComments : 1,
3534
+ PrintSheetEnd : 2,
3535
+ PrintWithThreadedComments : 3,
3536
+ };
3537
+
3538
+ exports.PrintErrorsType = {
3539
+ PrintErrorsBlank : 0,
3540
+ PrintErrorsDash : 1,
3541
+ PrintErrorsDisplayed : 2,
3542
+ PrintErrorsNA : 3,
3543
+ };
3544
+
3545
+ exports.PrintOrderType = {
3546
+ DownThenOver : 0,
3547
+ OverThenDown : 1,
3548
+ };
3549
+
3550
+ exports.PrintSizeType = {
3551
+ Full : 0,
3552
+ Fit : 1,
3553
+ Custom : 2,
3554
+ };
3555
+
3556
+ exports.ProtectionType = {
3557
+ All : 0,
3558
+ Contents : 1,
3559
+ Objects : 2,
3560
+ Scenarios : 3,
3561
+ Structure : 4,
3562
+ Windows : 5,
3563
+ None : 6,
3564
+ };
3565
+
3566
+ exports.SelectionType = {
3567
+ Single : 0,
3568
+ Multi : 1,
3569
+ Extend : 2,
3570
+ };
3571
+
3572
+ exports.SheetType = {
3573
+ VB : 0,
3574
+ Worksheet : 1,
3575
+ Chart : 2,
3576
+ BIFF4Macro : 3,
3577
+ InternationalMacro : 4,
3578
+ Other : 5,
3579
+ Dialog : 6,
3580
+ };
3581
+
3582
+ exports.ShiftType = {
3583
+ Down : 0,
3584
+ Left : 1,
3585
+ None : 2,
3586
+ Right : 3,
3587
+ Up : 4,
3588
+ };
3589
+
3590
+ exports.SortOrder = {
3591
+ Ascending : 0,
3592
+ Descending : 1,
3593
+ Natural : 2,
3594
+ };
3595
+
3596
+ exports.StyleModifyFlag = {
3597
+ LeftBorder : 256,
3598
+ RightBorder : 512,
3599
+ TopBorder : 1024,
3600
+ BottomBorder : 2048,
3601
+ DiagonalDownBorder : 4096,
3602
+ DiagonalUpBorder : 8192,
3603
+ Diagonal : 12288,
3604
+ HorizontalBorder : 32,
3605
+ VerticalBorder : 64,
3606
+ Borders : 16224,
3607
+ NumberFormat : 16384,
3608
+ HorizontalAlignment : 32768,
3609
+ VerticalAlignment : 65536,
3610
+ Indent : 131072,
3611
+ Rotation : 262144,
3612
+ WrapText : 524288,
3613
+ ShrinkToFit : 1048576,
3614
+ TextDirection : 2097152,
3615
+ RelativeIndent : 128,
3616
+ AlignmentSettings : 4161664,
3617
+ Pattern : 4194304,
3618
+ ForegroundColor : 8388608,
3619
+ BackgroundColor : 16777216,
3620
+ CellShading : 29360128,
3621
+ Locked : 67108864,
3622
+ HideFormula : 134217728,
3623
+ ProtectionSettings : 201326592,
3624
+ FontSize : 1,
3625
+ FontName : 2,
3626
+ FontColor : 3,
3627
+ FontWeight : 4,
3628
+ FontItalic : 5,
3629
+ FontUnderline : 6,
3630
+ FontStrike : 7,
3631
+ FontScript : 8,
3632
+ FontFamily : 9,
3633
+ FontCharset : 10,
3634
+ FontScheme : 11,
3635
+ FontDirty : 12,
3636
+ FontSpellingError : 13,
3637
+ FontUFillTx : 14,
3638
+ FontSpacing : 15,
3639
+ FontKerning : 16,
3640
+ FontEqualize : 17,
3641
+ FontCap : 18,
3642
+ FontVerticalText : 19,
3643
+ Font : 31,
3644
+ All : 234881023,
3645
+ };
3646
+
3647
+ exports.TableDataSourceType = {
3648
+ Worksheet : 0,
3649
+ SharePoint : 1,
3650
+ XML : 2,
3651
+ QueryTable : 3,
3652
+ };
3653
+
3654
+ exports.TableStyleElementType = {
3655
+ BlankRow : 18,
3656
+ FirstColumn : 8,
3657
+ FirstColumnStripe : 3,
3658
+ FirstColumnSubheading : 22,
3659
+ FirstHeaderCell : 11,
3660
+ FirstRowStripe : 5,
3661
+ FirstRowSubheading : 25,
3662
+ FirstSubtotalColumn : 15,
3663
+ FirstSubtotalRow : 19,
3664
+ GrandTotalColumn : 28,
3665
+ GrandTotalRow : 29,
3666
+ FirstTotalCell : 13,
3667
+ HeaderRow : 9,
3668
+ LastColumn : 7,
3669
+ LastHeaderCell : 12,
3670
+ LastTotalCell : 14,
3671
+ PageFieldLabels : 1,
3672
+ PageFieldValues : 2,
3673
+ SecondColumnStripe : 4,
3674
+ SecondColumnSubheading : 23,
3675
+ SecondRowStripe : 6,
3676
+ SecondRowSubheading : 26,
3677
+ SecondSubtotalColumn : 16,
3678
+ SecondSubtotalRow : 20,
3679
+ ThirdColumnSubheading : 24,
3680
+ ThirdRowSubheading : 27,
3681
+ ThirdSubtotalColumn : 17,
3682
+ ThirdSubtotalRow : 21,
3683
+ TotalRow : 10,
3684
+ WholeTable : 0,
3685
+ };
3686
+
3687
+ exports.TableStyleType = {
3688
+ None : 0,
3689
+ TableStyleLight1 : 1,
3690
+ TableStyleLight2 : 2,
3691
+ TableStyleLight3 : 3,
3692
+ TableStyleLight4 : 4,
3693
+ TableStyleLight5 : 5,
3694
+ TableStyleLight6 : 6,
3695
+ TableStyleLight7 : 7,
3696
+ TableStyleLight8 : 8,
3697
+ TableStyleLight9 : 9,
3698
+ TableStyleLight10 : 10,
3699
+ TableStyleLight11 : 11,
3700
+ TableStyleLight12 : 12,
3701
+ TableStyleLight13 : 13,
3702
+ TableStyleLight14 : 14,
3703
+ TableStyleLight15 : 15,
3704
+ TableStyleLight16 : 16,
3705
+ TableStyleLight17 : 17,
3706
+ TableStyleLight18 : 18,
3707
+ TableStyleLight19 : 19,
3708
+ TableStyleLight20 : 20,
3709
+ TableStyleLight21 : 21,
3710
+ TableStyleMedium1 : 22,
3711
+ TableStyleMedium2 : 23,
3712
+ TableStyleMedium3 : 24,
3713
+ TableStyleMedium4 : 25,
3714
+ TableStyleMedium5 : 26,
3715
+ TableStyleMedium6 : 27,
3716
+ TableStyleMedium7 : 28,
3717
+ TableStyleMedium8 : 29,
3718
+ TableStyleMedium9 : 30,
3719
+ TableStyleMedium10 : 31,
3720
+ TableStyleMedium11 : 32,
3721
+ TableStyleMedium12 : 33,
3722
+ TableStyleMedium13 : 34,
3723
+ TableStyleMedium14 : 35,
3724
+ TableStyleMedium15 : 36,
3725
+ TableStyleMedium16 : 37,
3726
+ TableStyleMedium17 : 38,
3727
+ TableStyleMedium18 : 39,
3728
+ TableStyleMedium19 : 40,
3729
+ TableStyleMedium20 : 41,
3730
+ TableStyleMedium21 : 42,
3731
+ TableStyleMedium22 : 43,
3732
+ TableStyleMedium23 : 44,
3733
+ TableStyleMedium24 : 45,
3734
+ TableStyleMedium25 : 46,
3735
+ TableStyleMedium26 : 47,
3736
+ TableStyleMedium27 : 48,
3737
+ TableStyleMedium28 : 49,
3738
+ TableStyleDark1 : 50,
3739
+ TableStyleDark2 : 51,
3740
+ TableStyleDark3 : 52,
3741
+ TableStyleDark4 : 53,
3742
+ TableStyleDark5 : 54,
3743
+ TableStyleDark6 : 55,
3744
+ TableStyleDark7 : 56,
3745
+ TableStyleDark8 : 57,
3746
+ TableStyleDark9 : 58,
3747
+ TableStyleDark10 : 59,
3748
+ TableStyleDark11 : 60,
3749
+ Custom : 61,
3750
+ };
3751
+
3752
+ exports.TextAlignmentType = {
3753
+ General : 1792,
3754
+ Bottom : 528,
3755
+ Center : 1802,
3756
+ CenterAcross : 1286,
3757
+ Distributed : 807,
3758
+ Fill : 1284,
3759
+ Justify : 1821,
3760
+ Left : 257,
3761
+ Right : 259,
3762
+ Top : 512,
3763
+ JustifiedLow : 832,
3764
+ ThaiDistributed : 896,
3765
+ };
3766
+
3767
+ exports.TextDirectionType = {
3768
+ Context : 0,
3769
+ LeftToRight : 1,
3770
+ RightToLeft : 2,
3771
+ };
3772
+
3773
+ exports.TextOrientationType = {
3774
+ ClockWise : 0,
3775
+ CounterClockWise : 1,
3776
+ NoRotation : 2,
3777
+ TopToBottom : 3,
3778
+ };
3779
+
3780
+ exports.TextureType = {
3781
+ BlueTissuePaper : 0,
3782
+ Bouquet : 1,
3783
+ BrownMarble : 2,
3784
+ Canvas : 3,
3785
+ Cork : 4,
3786
+ Denim : 5,
3787
+ FishFossil : 6,
3788
+ Granite : 7,
3789
+ GreenMarble : 8,
3790
+ MediumWood : 9,
3791
+ Newsprint : 10,
3792
+ Oak : 11,
3793
+ PaperBag : 12,
3794
+ Papyrus : 13,
3795
+ Parchment : 14,
3796
+ PinkTissuePaper : 15,
3797
+ PurpleMesh : 16,
3798
+ RecycledPaper : 17,
3799
+ Sand : 18,
3800
+ Stationery : 19,
3801
+ Walnut : 20,
3802
+ WaterDroplets : 21,
3803
+ WhiteMarble : 22,
3804
+ WovenMat : 23,
3805
+ Unknown : 24,
3806
+ };
3807
+
3808
+ exports.ThemeColorType = {
3809
+ Background1 : 0,
3810
+ Text1 : 1,
3811
+ Background2 : 2,
3812
+ Text2 : 3,
3813
+ Accent1 : 4,
3814
+ Accent2 : 5,
3815
+ Accent3 : 6,
3816
+ Accent4 : 7,
3817
+ Accent5 : 8,
3818
+ Accent6 : 9,
3819
+ Hyperlink : 10,
3820
+ FollowedHyperlink : 11,
3821
+ StyleColor : 12,
3822
+ };
3823
+
3824
+ exports.TickLabelPositionType = {
3825
+ High : 0,
3826
+ Low : 1,
3827
+ NextToAxis : 2,
3828
+ None : 3,
3829
+ };
3830
+
3831
+ exports.TickMarkType = {
3832
+ Cross : 0,
3833
+ Inside : 1,
3834
+ None : 2,
3835
+ Outside : 3,
3836
+ };
3837
+
3838
+ exports.TotalsCalculation = {
3839
+ Sum : 6,
3840
+ Count : 2,
3841
+ Average : 1,
3842
+ Max : 4,
3843
+ Min : 5,
3844
+ Var : 8,
3845
+ CountNums : 3,
3846
+ StdDev : 7,
3847
+ None : 0,
3848
+ Custom : 9,
3849
+ };
3850
+
3851
+ exports.TrendlineType = {
3852
+ Exponential : 0,
3853
+ Linear : 1,
3854
+ Logarithmic : 2,
3855
+ MovingAverage : 3,
3856
+ Polynomial : 4,
3857
+ Power : 5,
3858
+ };
3859
+
3860
+ exports.ValidationAlertType = {
3861
+ Information : 0,
3862
+ Stop : 1,
3863
+ Warning : 2,
3864
+ };
3865
+
3866
+ exports.ValidationType = {
3867
+ AnyValue : 0,
3868
+ WholeNumber : 1,
3869
+ Decimal : 2,
3870
+ List : 3,
3871
+ Date : 4,
3872
+ Time : 5,
3873
+ TextLength : 6,
3874
+ Custom : 7,
3875
+ };
3876
+
3877
+ exports.ViewType = {
3878
+ NormalView : 0,
3879
+ PageBreakPreview : 1,
3880
+ PageLayoutView : 2,
3881
+ };
3882
+
3883
+ exports.WeightType = {
3884
+ HairLine : -1,
3885
+ MediumLine : 1,
3886
+ SingleLine : 0,
3887
+ WideLine : 2,
3888
+ };
3889
+
3890
+ exports.VisibilityType = {
3891
+ Visible : 0,
3892
+ Hidden : 1,
3893
+ VeryHidden : 2,
3894
+ };
3895
+
3896
+ exports.TextParagraphEnumerator.prototype[Symbol.iterator] = function() {
3897
+ return this;
3898
+ };
3899
+
3900
+ exports.ReferredAreaEnumerator.prototype[Symbol.iterator] = function() {
3901
+ return this;
3902
+ };
3903
+
3904
+ exports.CellEnumerator.prototype[Symbol.iterator] = function() {
3905
+ return this;
3906
+ };
3907
+
3908
+ exports.RowEnumerator.prototype[Symbol.iterator] = function() {
3909
+ return this;
3910
+ };
3911
+
3912
+ exports.DigitalSignatureEnumerator.prototype[Symbol.iterator] = function() {
3913
+ return this;
3914
+ };
3915
+
3916
+ exports.PivotFieldEnumerator.prototype[Symbol.iterator] = function() {
3917
+ return this;
3918
+ };
3919
+
3920
+ exports.PivotItemEnumerator.prototype[Symbol.iterator] = function() {
3921
+ return this;
3922
+ };
3923
+
3924
+ exports.ChartPointEnumerator.prototype[Symbol.iterator] = function() {
3925
+ return this;
3926
+ };
3927
+
3928
+ exports.ExternalLinkEnumerator.prototype[Symbol.iterator] = function() {
3929
+ return this;
3930
+ };
3931
+