SDC C-Project CF Review 프로그램
LYW
2021-07-09 6bb39b058bce38f80645e1e54d03a172f74dba3b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
const int xl24HourClock = 33;
const int xl3DArea = -4098;
const int xl3DAreaStacked = 78;
const int xl3DAreaStacked100 = 79;
const int xl3DBar = -4099;
const int xl3DBarClustered = 60;
const int xl3DBarStacked = 61;
const int xl3DBarStacked100 = 62;
const int xl3DColumn = -4100;
const int xl3DColumnClustered = 54;
const int xl3DColumnStacked = 55;
const int xl3DColumnStacked100 = 56;
const int xl3DEffects1 = 13;
const int xl3DEffects2 = 14;
const int xl3DLine = -4101;
const int xl3DPie = -4102;
const int xl3DPieExploded = 70;
const int xl3DSurface = -4103;
const int xl4DigitYears = 43;
const int xlA1 = 1;
const int xlAbove = 0;
const int xlAbsolute = 1;
const int xlAbsRowRelColumn = 2;
const int xlAccounting1 = 4;
const int xlAccounting2 = 5;
const int xlAccounting3 = 6;
const int xlAccounting4 = 17;
const int xlAdd = 2;
const int xlAddIn = 18;
const int xlADORecordset = 7;
const int xlAll = -4104;
const int xlAllAtOnce = 2;
const int xlAllChanges = 2;
const int xlAllExceptBorders = 7;
const int xlAllFaces = 7;
const int xlAllTables = 2;
const int xlAlternateArraySeparator = 16;
const int xlAlways = 1;
const int xlAnd = 1;
const int xlAnyGallery = 23;
const int xlAnyKey = 2;
const int xlArabicBothStrict = 3;
const int xlArabicNone = 0;
const int xlArabicStrictAlefHamza = 1;
const int xlArabicStrictFinalYaa = 2;
const int xlArea = 1;
const int xlAreaStacked = 76;
const int xlAreaStacked100 = 77;
const int xlArrangeStyleCascade = 7;
const int xlArrangeStyleHorizontal = -4128;
const int xlArrangeStyleTiled = 1;
const int xlArrangeStyleVertical = -4166;
const int xlArrowHeadLengthLong = 3;
const int xlArrowHeadLengthMedium = -4138;
const int xlArrowHeadLengthShort = 1;
const int xlArrowHeadStyleClosed = 3;
const int xlArrowHeadStyleDoubleClosed = 5;
const int xlArrowHeadStyleDoubleOpen = 4;
const int xlArrowHeadStyleNone = -4142;
const int xlArrowHeadStyleOpen = 2;
const int xlArrowHeadWidthMedium = -4138;
const int xlArrowHeadWidthNarrow = 1;
const int xlArrowHeadWidthWide = 3;
const int xlAscending = 1;
const int xlAsRequired = 0;
const int xlAtBottom = 2;
const int xlAtTop = 1;
const int xlAutoActivate = 3;
const int xlAutoClose = 2;
const int xlAutoDeactivate = 4;
const int xlAutoFill = 4;
const int xlAutomatic = -4105;
const int xlAutomaticScale = -4105;
const int xlAutomaticUpdate = 4;
const int xlAutoOpen = 1;
const int xlAverage = -4106;
const int xlAxis = 21;
const int xlAxisCrossesAutomatic = -4105;
const int xlAxisCrossesCustom = -4114;
const int xlAxisCrossesMaximum = 2;
const int xlAxisCrossesMinimum = 4;
const int xlAxisTitle = 17;
const int xlBackgroundAutomatic = -4105;
const int xlBackgroundOpaque = 3;
const int xlBackgroundTransparent = 2;
const int xlBar = 2;
const int xlBarClustered = 57;
const int xlBarOfPie = 71;
const int xlBarStacked = 58;
const int xlBarStacked100 = 59;
const int xlBelow = 1;
const int xlBetween = 1;
const int xlBidi = -5000;
const int xlBidiCalendar = 3;
const int xlBIFF = 2;
const int xlBitmap = 2;
const int xlBlanks = 4;
const int xlBMP = 1;
const int xlBoth = 1;
const int xlBottom = -4107;
const int xlBottom10Items = 4;
const int xlBottom10Percent = 6;
const int xlBox = 0;
const int xlBubble = 15;
const int xlBubble3DEffect = 87;
const int xlBuiltIn = 21;
const int xlButton = 15;
const int xlButtonControl = 0;
const int xlButtonOnly = 2;
const int xlByColumns = 2;
const int xlByRows = 1;
const int xlCalculatedMember = 0;
const int xlCalculatedSet = 1;
const int xlCalculating = 1;
const int xlCalculationAutomatic = -4105;
const int xlCalculationManual = -4135;
const int xlCalculationSemiautomatic = 2;
const int xlCancel = 1;
const int xlCap = 1;
const int xlCascade = 7;
const int xlCategory = 1;
const int xlCategoryScale = 2;
const int xlCellTypeAllFormatConditions = -4172;
const int xlCellTypeAllValidation = -4174;
const int xlCellTypeBlanks = 4;
const int xlCellTypeComments = -4144;
const int xlCellTypeConstants = 2;
const int xlCellTypeFormulas = -4123;
const int xlCellTypeLastCell = 11;
const int xlCellTypeSameFormatConditions = -4173;
const int xlCellTypeSameValidation = -4175;
const int xlCellTypeVisible = 12;
const int xlCellValue = 1;
const int xlCenter = -4108;
const int xlCenterAcrossSelection = 7;
const int xlCGM = 7;
const int xlChangeAttributes = 6;
const int xlChart = -4109;
const int xlChart4 = 2;
const int xlChartArea = 2;
const int xlChartAsWindow = 5;
const int xlChartInPlace = 4;
const int xlChartSeries = 17;
const int xlChartShort = 6;
const int xlChartTitle = 4;
const int xlChartTitles = 18;
const int xlCheckBox = 1;
const int xlChecker = 9;
const int xlChronological = 3;
const int xlCircle = 8;
const int xlClassic1 = 1;
const int xlClassic2 = 2;
const int xlClassic3 = 3;
const int xlClipboard = 3;
const int xlClipboardFormatBIFF = 8;
const int xlClipboardFormatBIFF2 = 18;
const int xlClipboardFormatBIFF3 = 20;
const int xlClipboardFormatBIFF4 = 30;
const int xlClipboardFormatBinary = 15;
const int xlClipboardFormatBitmap = 9;
const int xlClipboardFormatCGM = 13;
const int xlClipboardFormatCSV = 5;
const int xlClipboardFormatDIF = 4;
const int xlClipboardFormatDspText = 12;
const int xlClipboardFormatEmbeddedObject = 21;
const int xlClipboardFormatEmbedSource = 22;
const int xlClipboardFormatLink = 11;
const int xlClipboardFormatLinkSource = 23;
const int xlClipboardFormatLinkSourceDesc = 32;
const int xlClipboardFormatMovie = 24;
const int xlClipboardFormatNative = 14;
const int xlClipboardFormatObjectDesc = 31;
const int xlClipboardFormatObjectLink = 19;
const int xlClipboardFormatOwnerLink = 17;
const int xlClipboardFormatPICT = 2;
const int xlClipboardFormatPrintPICT = 3;
const int xlClipboardFormatRTF = 7;
const int xlClipboardFormatScreenPICT = 29;
const int xlClipboardFormatStandardFont = 28;
const int xlClipboardFormatStandardScale = 27;
const int xlClipboardFormatSYLK = 6;
const int xlClipboardFormatTable = 16;
const int xlClipboardFormatText = 0;
const int xlClipboardFormatToolFace = 25;
const int xlClipboardFormatToolFacePICT = 26;
const int xlClipboardFormatVALU = 1;
const int xlClipboardFormatWK1 = 10;
const int xlClosed = 3;
const int xlCmdCube = 1;
const int xlCmdDefault = 4;
const int xlCmdList = 5;
const int xlCmdSql = 2;
const int xlCmdTable = 3;
const int xlCodePage = 2;
const int xlColor1 = 7;
const int xlColor2 = 8;
const int xlColor3 = 9;
const int xlColorIndexAutomatic = -4105;
const int xlColorIndexNone = -4142;
const int xlColumn = 3;
const int xlColumnClustered = 51;
const int xlColumnField = 2;
const int xlColumnHeader = -4110;
const int xlColumnItem = 5;
const int xlColumnLabels = 2;
const int xlColumns = 2;
const int xlColumnSeparator = 14;
const int xlColumnStacked = 52;
const int xlColumnStacked100 = 53;
const int xlColumnThenRow = 2;
const int xlCombination = -4111;
const int xlCommand = 2;
const int xlCommandUnderlinesAutomatic = -4105;
const int xlCommandUnderlinesOff = -4146;
const int xlCommandUnderlinesOn = 1;
const int xlCommentAndIndicator = 1;
const int xlCommentIndicatorOnly = -1;
const int xlComments = -4144;
const int xlComplete = 4;
const int xlConeBarClustered = 102;
const int xlConeBarStacked = 103;
const int xlConeBarStacked100 = 104;
const int xlConeCol = 105;
const int xlConeColClustered = 99;
const int xlConeColStacked = 100;
const int xlConeColStacked100 = 101;
const int xlConeToMax = 5;
const int xlConeToPoint = 4;
const int xlConsolidation = 3;
const int xlConstant = 1;
const int xlConstants = 2;
const int xlContents = 2;
const int xlContext = -5002;
const int xlContinuous = 1;
const int xlCopy = 1;
const int xlCorner = 2;
const int xlCorners = 6;
const int xlCount = -4112;
const int xlCountNums = -4113;
const int xlCountryCode = 1;
const int xlCountrySetting = 2;
const int xlCreatorCode = 1480803660;
const int xlCrissCross = 16;
const int xlCross = 4;
const int xlCSV = 6;
const int xlCSVMac = 22;
const int xlCSVMSDOS = 24;
const int xlCSVWindows = 23;
const int xlCurrencyBefore = 37;
const int xlCurrencyCode = 25;
const int xlCurrencyDigits = 27;
const int xlCurrencyLeadingZeros = 40;
const int xlCurrencyMinusSign = 38;
const int xlCurrencyNegative = 28;
const int xlCurrencySpaceBefore = 36;
const int xlCurrencyTrailingZeros = 39;
const int xlCurrentPlatformText = -4158;
const int xlCustom = -4114;
const int xlCut = 2;
const int xlCylinder = 3;
const int xlCylinderBarClustered = 95;
const int xlCylinderBarStacked = 96;
const int xlCylinderBarStacked100 = 97;
const int xlCylinderCol = 98;
const int xlCylinderColClustered = 92;
const int xlCylinderColStacked = 93;
const int xlCylinderColStacked100 = 94;
const int xlDAORecordset = 2;
const int xlDash = -4115;
const int xlDashDot = 4;
const int xlDashDotDot = 5;
const int xlDataAndLabel = 0;
const int xlDatabase = 1;
const int xlDataField = 4;
const int xlDataHeader = 3;
const int xlDataItem = 7;
const int xlDataLabel = 0;
const int xlDataLabelSeparatorDefault = 1;
const int xlDataLabelsShowBubbleSizes = 6;
const int xlDataLabelsShowLabel = 4;
const int xlDataLabelsShowLabelAndPercent = 5;
const int xlDataLabelsShowNone = -4142;
const int xlDataLabelsShowPercent = 3;
const int xlDataLabelsShowValue = 2;
const int xlDataOnly = 2;
const int xlDataSeriesLinear = -4132;
const int xlDataTable = 7;
const int xlDate = 2;
const int xlDateOrder = 32;
const int xlDateSeparator = 17;
const int xlDay = 1;
const int xlDayCode = 21;
const int xlDayLeadingZero = 42;
const int xlDays = 0;
const int xlDBF2 = 7;
const int xlDBF3 = 8;
const int xlDBF4 = 11;
const int xlDebugCodePane = 13;
const int xlDecimalSeparator = 3;
const int xlDefault = -4143;
const int xlDefaultAutoFormat = -1;
const int xlDelimited = 1;
const int xlDescending = 2;
const int xlDesktop = 9;
const int xlDiagonalDown = 5;
const int xlDiagonalUp = 6;
const int xlDialogActivate = 103;
const int xlDialogActiveCellFont = 476;
const int xlDialogAddChartAutoformat = 390;
const int xlDialogAddinManager = 321;
const int xlDialogAlignment = 43;
const int xlDialogApplyNames = 133;
const int xlDialogApplyStyle = 212;
const int xlDialogAppMove = 170;
const int xlDialogAppSize = 171;
const int xlDialogArrangeAll = 12;
const int xlDialogAssignToObject = 213;
const int xlDialogAssignToTool = 293;
const int xlDialogAttachText = 80;
const int xlDialogAttachToolbars = 323;
const int xlDialogAutoCorrect = 485;
const int xlDialogAxes = 78;
const int xlDialogBorder = 45;
const int xlDialogCalculation = 32;
const int xlDialogCellProtection = 46;
const int xlDialogChangeLink = 166;
const int xlDialogChartAddData = 392;
const int xlDialogChartLocation = 527;
const int xlDialogChartOptionsDataLabelMultiple = 724;
const int xlDialogChartOptionsDataLabels = 505;
const int xlDialogChartOptionsDataTable = 506;
const int xlDialogChartSourceData = 540;
const int xlDialogChartTrend = 350;
const int xlDialogChartType = 526;
const int xlDialogChartWizard = 288;
const int xlDialogCheckboxProperties = 435;
const int xlDialogClear = 52;
const int xlDialogColorPalette = 161;
const int xlDialogColumnWidth = 47;
const int xlDialogCombination = 73;
const int xlDialogConditionalFormatting = 583;
const int xlDialogConsolidate = 191;
const int xlDialogCopyChart = 147;
const int xlDialogCopyPicture = 108;
const int xlDialogCreateList = 796;
const int xlDialogCreateNames = 62;
const int xlDialogCreatePublisher = 217;
const int xlDialogCustomizeToolbar = 276;
const int xlDialogCustomViews = 493;
const int xlDialogDataDelete = 36;
const int xlDialogDataLabel = 379;
const int xlDialogDataLabelMultiple = 723;
const int xlDialogDataSeries = 40;
const int xlDialogDataValidation = 525;
const int xlDialogDefineName = 61;
const int xlDialogDefineStyle = 229;
const int xlDialogDeleteFormat = 111;
const int xlDialogDeleteName = 110;
const int xlDialogDemote = 203;
const int xlDialogDisplay = 27;
const int xlDialogEditboxProperties = 438;
const int xlDialogEditColor = 223;
const int xlDialogEditDelete = 54;
const int xlDialogEditionOptions = 251;
const int xlDialogEditSeries = 228;
const int xlDialogErrorbarX = 463;
const int xlDialogErrorbarY = 464;
const int xlDialogErrorChecking = 732;
const int xlDialogEvaluateFormula = 709;
const int xlDialogExternalDataProperties = 530;
const int xlDialogExtract = 35;
const int xlDialogFileDelete = 6;
const int xlDialogFileSharing = 481;
const int xlDialogFillGroup = 200;
const int xlDialogFillWorkgroup = 301;
const int xlDialogFilter = 447;
const int xlDialogFilterAdvanced = 370;
const int xlDialogFindFile = 475;
const int xlDialogFont = 26;
const int xlDialogFontProperties = 381;
const int xlDialogFormatAuto = 269;
const int xlDialogFormatChart = 465;
const int xlDialogFormatCharttype = 423;
const int xlDialogFormatFont = 150;
const int xlDialogFormatLegend = 88;
const int xlDialogFormatMain = 225;
const int xlDialogFormatMove = 128;
const int xlDialogFormatNumber = 42;
const int xlDialogFormatOverlay = 226;
const int xlDialogFormatSize = 129;
const int xlDialogFormatText = 89;
const int xlDialogFormulaFind = 64;
const int xlDialogFormulaGoto = 63;
const int xlDialogFormulaReplace = 130;
const int xlDialogFunctionWizard = 450;
const int xlDialogGallery3dArea = 193;
const int xlDialogGallery3dBar = 272;
const int xlDialogGallery3dColumn = 194;
const int xlDialogGallery3dLine = 195;
const int xlDialogGallery3dPie = 196;
const int xlDialogGallery3dSurface = 273;
const int xlDialogGalleryArea = 67;
const int xlDialogGalleryBar = 68;
const int xlDialogGalleryColumn = 69;
const int xlDialogGalleryCustom = 388;
const int xlDialogGalleryDoughnut = 344;
const int xlDialogGalleryLine = 70;
const int xlDialogGalleryPie = 71;
const int xlDialogGalleryRadar = 249;
const int xlDialogGalleryScatter = 72;
const int xlDialogGoalSeek = 198;
const int xlDialogGridlines = 76;
const int xlDialogImportTextFile = 666;
const int xlDialogInsert = 55;
const int xlDialogInsertHyperlink = 596;
const int xlDialogInsertNameLabel = 496;
const int xlDialogInsertObject = 259;
const int xlDialogInsertPicture = 342;
const int xlDialogInsertTitle = 380;
const int xlDialogLabelProperties = 436;
const int xlDialogListboxProperties = 437;
const int xlDialogMacroOptions = 382;
const int xlDialogMailEditMailer = 470;
const int xlDialogMailLogon = 339;
const int xlDialogMailNextLetter = 378;
const int xlDialogMainChart = 85;
const int xlDialogMainChartType = 185;
const int xlDialogMenuEditor = 322;
const int xlDialogMove = 262;
const int xlDialogMyPermission = 834;
const int xlDialogNew = 119;
const int xlDialogNewWebQuery = 667;
const int xlDialogNote = 154;
const int xlDialogObjectProperties = 207;
const int xlDialogObjectProtection = 214;
const int xlDialogOpen = 1;
const int xlDialogOpenLinks = 2;
const int xlDialogOpenMail = 188;
const int xlDialogOpenText = 441;
const int xlDialogOptionsCalculation = 318;
const int xlDialogOptionsChart = 325;
const int xlDialogOptionsEdit = 319;
const int xlDialogOptionsGeneral = 356;
const int xlDialogOptionsListsAdd = 458;
const int xlDialogOptionsME = 647;
const int xlDialogOptionsTransition = 355;
const int xlDialogOptionsView = 320;
const int xlDialogOutline = 142;
const int xlDialogOverlay = 86;
const int xlDialogOverlayChartType = 186;
const int xlDialogPageSetup = 7;
const int xlDialogParse = 91;
const int xlDialogPasteNames = 58;
const int xlDialogPasteSpecial = 53;
const int xlDialogPatterns = 84;
const int xlDialogPermission = 832;
const int xlDialogPhonetic = 656;
const int xlDialogPivotCalculatedField = 570;
const int xlDialogPivotCalculatedItem = 572;
const int xlDialogPivotClientServerSet = 689;
const int xlDialogPivotFieldGroup = 433;
const int xlDialogPivotFieldProperties = 313;
const int xlDialogPivotFieldUngroup = 434;
const int xlDialogPivotShowPages = 421;
const int xlDialogPivotSolveOrder = 568;
const int xlDialogPivotTableOptions = 567;
const int xlDialogPivotTableWizard = 312;
const int xlDialogPlacement = 300;
const int xlDialogPrint = 8;
const int xlDialogPrinterSetup = 9;
const int xlDialogPrintPreview = 222;
const int xlDialogPromote = 202;
const int xlDialogProperties = 474;
const int xlDialogPropertyFields = 754;
const int xlDialogProtectDocument = 28;
const int xlDialogProtectSharing = 620;
const int xlDialogPublishAsWebPage = 653;
const int xlDialogPushbuttonProperties = 445;
const int xlDialogReplaceFont = 134;
const int xlDialogRoutingSlip = 336;
const int xlDialogRowHeight = 127;
const int xlDialogRun = 17;
const int xlDialogSaveAs = 5;
const int xlDialogSaveCopyAs = 456;
const int xlDialogSaveNewObject = 208;
const int xlDialogSaveWorkbook = 145;
const int xlDialogSaveWorkspace = 285;
const int xlDialogScale = 87;
const int xlDialogScenarioAdd = 307;
const int xlDialogScenarioCells = 305;
const int xlDialogScenarioEdit = 308;
const int xlDialogScenarioMerge = 473;
const int xlDialogScenarioSummary = 311;
const int xlDialogScrollbarProperties = 420;
const int xlDialogSearch = 731;
const int xlDialogSelectSpecial = 132;
const int xlDialogSendMail = 189;
const int xlDialogSeriesAxes = 460;
const int xlDialogSeriesOptions = 557;
const int xlDialogSeriesOrder = 466;
const int xlDialogSeriesShape = 504;
const int xlDialogSeriesX = 461;
const int xlDialogSeriesY = 462;
const int xlDialogSetBackgroundPicture = 509;
const int xlDialogSetPrintTitles = 23;
const int xlDialogSetUpdateStatus = 159;
const int xlDialogSheet = -4116;
const int xlDialogShowDetail = 204;
const int xlDialogShowToolbar = 220;
const int xlDialogSize = 261;
const int xlDialogSort = 39;
const int xlDialogSortSpecial = 192;
const int xlDialogSplit = 137;
const int xlDialogStandardFont = 190;
const int xlDialogStandardWidth = 472;
const int xlDialogStyle = 44;
const int xlDialogSubscribeTo = 218;
const int xlDialogSubtotalCreate = 398;
const int xlDialogSummaryInfo = 474;
const int xlDialogTable = 41;
const int xlDialogTabOrder = 394;
const int xlDialogTextToColumns = 422;
const int xlDialogUnhide = 94;
const int xlDialogUpdateLink = 201;
const int xlDialogVbaInsertFile = 328;
const int xlDialogVbaMakeAddin = 478;
const int xlDialogVbaProcedureDefinition = 330;
const int xlDialogView3d = 197;
const int xlDialogWebOptionsBrowsers = 773;
const int xlDialogWebOptionsEncoding = 686;
const int xlDialogWebOptionsFiles = 684;
const int xlDialogWebOptionsFonts = 687;
const int xlDialogWebOptionsGeneral = 683;
const int xlDialogWebOptionsPictures = 685;
const int xlDialogWindowMove = 14;
const int xlDialogWindowSize = 13;
const int xlDialogWorkbookAdd = 281;
const int xlDialogWorkbookCopy = 283;
const int xlDialogWorkbookInsert = 354;
const int xlDialogWorkbookMove = 282;
const int xlDialogWorkbookName = 386;
const int xlDialogWorkbookNew = 302;
const int xlDialogWorkbookOptions = 284;
const int xlDialogWorkbookProtect = 417;
const int xlDialogWorkbookTabSplit = 415;
const int xlDialogWorkbookUnhide = 384;
const int xlDialogWorkgroup = 199;
const int xlDialogWorkspace = 95;
const int xlDialogZoom = 256;
const int xlDiamond = 2;
const int xlDIF = 9;
const int xlDifferenceFrom = 2;
const int xlDirect = 1;
const int xlDisabled = 0;
const int xlDisplayNone = 1;
const int xlDisplayShapes = -4104;
const int xlDisplayUnitLabel = 30;
const int xlDistributed = -4117;
const int xlDivide = 5;
const int xlDMYFormat = 4;
const int xlDone = 0;
const int xlDoNotSaveChanges = 2;
const int xlDot = -4118;
const int xlDouble = -4119;
const int xlDoubleAccounting = 5;
const int xlDoubleClosed = 5;
const int xlDoubleOpen = 4;
const int xlDoubleQuote = 1;
const int xlDoughnut = -4120;
const int xlDoughnutExploded = 80;
const int xlDown = -4121;
const int xlDownBars = 20;
const int xlDownThenOver = 1;
const int xlDownward = -4170;
const int xlDrawingObject = 14;
const int xlDropDown = 2;
const int xlDropLines = 26;
const int xlDRW = 4;
const int xlDXF = 5;
const int xlDYMFormat = 7;
const int xlEdgeBottom = 9;
const int xlEdgeLeft = 7;
const int xlEdgeRight = 10;
const int xlEdgeTop = 8;
const int xlEditBox = 3;
const int xlEditionDate = 2;
const int xlEMDFormat = 10;
const int xlEmptyCellReferences = 7;
const int xlEnd = 2;
const int xlEndSides = 3;
const int xlEntireChart = 20;
const int xlEntirePage = 1;
const int xlEPS = 8;
const int xlEqual = 3;
const int xlErrDiv0 = 2007;
const int xlErrNA = 2042;
const int xlErrName = 2029;
const int xlErrNull = 2000;
const int xlErrNum = 2036;
const int xlErrorBarIncludeBoth = 1;
const int xlErrorBarIncludeMinusValues = 3;
const int xlErrorBarIncludeNone = -4142;
const int xlErrorBarIncludePlusValues = 2;
const int xlErrorBars = 9;
const int xlErrorBarTypeCustom = -4114;
const int xlErrorBarTypeFixedValue = 1;
const int xlErrorBarTypePercent = 2;
const int xlErrorBarTypeStDev = -4155;
const int xlErrorBarTypeStError = 4;
const int xlErrorHandler = 2;
const int xlErrors = 16;
const int xlErrRef = 2023;
const int xlErrValue = 2015;
const int xlEscKey = 1;
const int xlEvaluateToError = 1;
const int xlExcel12 = 50; //Excel binary workbook in 2007-2010 with or without macro's, xlsb
const int xlExcel2 = 16;
const int xlExcel2FarEast = 27;
const int xlExcel3 = 29;
const int xlExcel4 = 33;
const int xlExcel4IntlMacroSheet = 4;
const int xlExcel4MacroSheet = 3;
const int xlExcel4Workbook = 35;
const int xlExcel5 = 39;
const int xlExcel7 = 39;
const int xlExcel8 = 56; // 97-2003 format in Excel 2007-2010, xls
const int xlExcel9795 = 43;
const int xlExcelLinks = 1;
const int xlExcelMenus = 1;
const int xlExclusive = 3;
const int xlExponential = 5;
const int xlExpression = 2;
const int xlExtended = 3;
const int xlExternal = 2;
const int xlExtractData = 2;
const int xlFill = 5;
const int xlFillCopy = 1;
const int xlFillDays = 5;
const int xlFillDefault = 0;
const int xlFillFormats = 3;
const int xlFillMonths = 7;
const int xlFillSeries = 2;
const int xlFillValues = 4;
const int xlFillWeekdays = 6;
const int xlFillWithAll = -4104;
const int xlFillWithContents = 2;
const int xlFillWithFormats = -4122;
const int xlFillYears = 8;
const int xlFilterCopy = 2;
const int xlFilterInPlace = 1;
const int xlFirst = 0;
const int xlFirstRow = 256;
const int xlFitToPage = 2;
const int xlFixedValue = 1;
const int xlFixedWidth = 2;
const int xlFloating = 5;
const int xlFloor = 23;
const int xlFormatFromLeftOrAbove = 0;
const int xlFormatFromRightOrBelow = 1;
const int xlFormats = -4122;
const int xlFormula = 5;
const int xlFormulas = -4123;
const int xlFreeFloating = 3;
const int xlFront = 4;
const int xlFrontEnd = 6;
const int xlFrontSides = 5;
const int xlFullPage = 3;
const int xlFullScript = 1;
const int xlFunction = 1;
const int xlGeneral = 1;
const int xlGeneralFormat = 1;
const int xlGeneralFormatName = 26;
const int xlGray16 = 17;
const int xlGray25 = -4124;
const int xlGray50 = -4125;
const int xlGray75 = -4126;
const int xlGray8 = 18;
const int xlGreater = 5;
const int xlGreaterEqual = 7;
const int xlGregorian = 2;
const int xlGrid = 15;
const int xlGridline = 22;
const int xlGroupBox = 4;
const int xlGrowth = 2;
const int xlGrowthTrend = 10;
const int xlGuess = 0;
const int xlHairline = 1;
const int xlHAlignCenter = -4108;
const int xlHAlignCenterAcrossSelection = 7;
const int xlHAlignDistributed = -4117;
const int xlHAlignFill = 5;
const int xlHAlignGeneral = 1;
const int xlHAlignJustify = -4130;
const int xlHAlignLeft = -4131;
const int xlHAlignRight = -4152;
const int xlHebrewFullScript = 0;
const int xlHebrewMixedAuthorizedScript = 3;
const int xlHebrewMixedScript = 2;
const int xlHebrewPartialScript = 1;
const int xlHGL = 6;
const int xlHidden = 0;
const int xlHide = 3;
const int xlHierarchy = 1;
const int xlHigh = -4127;
const int xlHiLoLines = 25;
const int xlHindiNumerals = 3;
const int xlHiragana = 2;
const int xlHorizontal = -4128;
const int xlHourCode = 22;
const int xlHtml = 44;
const int xlHtmlCalc = 1;
const int xlHtmlChart = 3;
const int xlHtmlList = 2;
const int xlHtmlStatic = 0;
const int xlHundredMillions = -8;
const int xlHundreds = -2;
const int xlHundredThousands = -5;
const int xlIBeam = 3;
const int xlIcons = 1;
const int xlIMEModeAlpha = 8;
const int xlIMEModeAlphaFull = 7;
const int xlIMEModeDisable = 3;
const int xlIMEModeHangul = 10;
const int xlIMEModeHangulFull = 9;
const int xlIMEModeHiragana = 4;
const int xlIMEModeKatakana = 5;
const int xlIMEModeKatakanaHalf = 6;
const int xlIMEModeNoControl = 0;
const int xlIMEModeOff = 2;
const int xlIMEModeOn = 1;
const int xlImmediatePane = 12;
const int xlInconsistentFormula = 4;
const int xlIndex = 9;
const int xlIndicatorAndButton = 0;
const int xlInfo = -4129;
const int xlInsertDeleteCells = 1;
const int xlInsertEntireRows = 2;
const int xlInside = 2;
const int xlInsideHorizontal = 12;
const int xlInsideVertical = 11;
const int xlInteger = 2;
const int xlInterpolated = 3;
const int xlInterrupt = 1;
const int xlIntlAddIn = 26;
const int xlIntlMacro = 25;
const int xlJustify = -4130;
const int xlKatakana = 1;
const int xlKatakanaHalf = 0;
const int xlLabel = 5;
const int xlLabelOnly = 1;
const int xlLabelPositionAbove = 0;
const int xlLabelPositionBelow = 1;
const int xlLabelPositionBestFit = 5;
const int xlLabelPositionCenter = -4108;
const int xlLabelPositionCustom = 7;
const int xlLabelPositionInsideBase = 4;
const int xlLabelPositionInsideEnd = 3;
const int xlLabelPositionLeft = -4131;
const int xlLabelPositionMixed = 6;
const int xlLabelPositionOutsideEnd = 2;
const int xlLabelPositionRight = -4152;
const int xlLandscape = 2;
const int xlLast = 1;
const int xlLastCell = 11;
const int xlLatin = -5001;
const int xlLeaderLines = 29;
const int xlLeft = -4131;
const int xlLeftBrace = 12;
const int xlLeftBracket = 10;
const int xlLeftToRight = 2;
const int xlLegend = 24;
const int xlLegendEntry = 12;
const int xlLegendKey = 13;
const int xlLegendPositionBottom = -4107;
const int xlLegendPositionCorner = 2;
const int xlLegendPositionLeft = -4131;
const int xlLegendPositionRight = -4152;
const int xlLegendPositionTop = -4160;
const int xlLess = 6;
const int xlLessEqual = 8;
const int xlLightDown = 13;
const int xlLightHorizontal = 11;
const int xlLightUp = 14;
const int xlLightVertical = 12;
const int xlLine = 4;
const int xlLinear = -4132;
const int xlLinearTrend = 9;
const int xlLineMarkers = 65;
const int xlLineMarkersStacked = 66;
const int xlLineMarkersStacked100 = 67;
const int xlLineStacked = 63;
const int xlLineStacked100 = 64;
const int xlLineStyleNone = -4142;
const int xlLinkInfoOLELinks = 2;
const int xlLinkInfoPublishers = 5;
const int xlLinkInfoStatus = 3;
const int xlLinkInfoSubscribers = 6;
const int xlLinkStatusCopiedValues = 10;
const int xlLinkStatusIndeterminate = 5;
const int xlLinkStatusInvalidName = 7;
const int xlLinkStatusMissingFile = 1;
const int xlLinkStatusMissingSheet = 2;
const int xlLinkStatusNotStarted = 6;
const int xlLinkStatusOK = 0;
const int xlLinkStatusOld = 3;
const int xlLinkStatusSourceNotCalculated = 4;
const int xlLinkStatusSourceNotOpen = 8;
const int xlLinkStatusSourceOpen = 9;
const int xlLinkTypeExcelLinks = 1;
const int xlLinkTypeOLELinks = 2;
const int xlList1 = 10;
const int xlList2 = 11;
const int xlList3 = 12;
const int xlListBox = 6;
const int xlListConflictDialog = 0;
const int xlListConflictDiscardAllConflicts = 2;
const int xlListConflictError = 3;
const int xlListConflictRetryAllConflicts = 1;
const int xlListDataTypeCheckbox = 9;
const int xlListDataTypeChoice = 6;
const int xlListDataTypeChoiceMulti = 7;
const int xlListDataTypeCounter = 11;
const int xlListDataTypeCurrency = 4;
const int xlListDataTypeDateTime = 5;
const int xlListDataTypeHyperLink = 10;
const int xlListDataTypeListLookup = 8;
const int xlListDataTypeMultiLineRichText = 12;
const int xlListDataTypeMultiLineText = 2;
const int xlListDataTypeNone = 0;
const int xlListDataTypeNumber = 3;
const int xlListDataTypeText = 1;
const int xlListDataValidation = 8;
const int xlListSeparator = 5;
const int xlLocalFormat1 = 15;
const int xlLocalFormat2 = 16;
const int xlLocalSessionChanges = 2;
const int xlLocationAsNewSheet = 1;
const int xlLocationAsObject = 2;
const int xlLocationAutomatic = 3;
const int xlLogarithmic = -4133;
const int xlLogical = 4;
const int xlLogicalCursor = 1;
const int xlLong = 3;
const int xlLotusHelp = 2;
const int xlLow = -4134;
const int xlLowerCaseColumnLetter = 9;
const int xlLowerCaseRowLetter = 8;
const int xlLTR = -5003;
const int xlMacintosh = 1;
const int xlMacrosheetCell = 7;
const int xlMajorGridlines = 15;
const int xlManual = -4135;
const int xlManualUpdate = 5;
const int xlMAPI = 1;
const int xlMarkerStyleAutomatic = -4105;
const int xlMarkerStyleCircle = 8;
const int xlMarkerStyleDash = -4115;
const int xlMarkerStyleDiamond = 2;
const int xlMarkerStyleDot = -4118;
const int xlMarkerStyleNone = -4142;
const int xlMarkerStylePicture = -4147;
const int xlMarkerStylePlus = 9;
const int xlMarkerStyleSquare = 1;
const int xlMarkerStyleStar = 5;
const int xlMarkerStyleTriangle = 3;
const int xlMarkerStyleX = -4168;
const int xlMax = -4136;
const int xlMaximized = -4137;
const int xlMaximum = 2;
const int xlMDY = 44;
const int xlMDYFormat = 3;
const int xlMeasure = 2;
const int xlMedium = -4138;
const int xlMetric = 35;
const int xlMicrosoftAccess = 4;
const int xlMicrosoftFoxPro = 5;
const int xlMicrosoftMail = 3;
const int xlMicrosoftPowerPoint = 2;
const int xlMicrosoftProject = 6;
const int xlMicrosoftSchedulePlus = 7;
const int xlMicrosoftWord = 1;
const int xlMillionMillions = -10;
const int xlMillions = -6;
const int xlMin = -4139;
const int xlMinimized = -4140;
const int xlMinimum = 4;
const int xlMinorGridlines = 16;
const int xlMinusValues = 3;
const int xlMinuteCode = 23;
const int xlMissingItemsDefault = -1;
const int xlMissingItemsMax = 32500;
const int xlMissingItemsNone = 0;
const int xlMixed = 2;
const int xlMixedAuthorizedScript = 4;
const int xlMixedLabels = 3;
const int xlMixedScript = 3;
const int xlModule = -4141;
const int xlMonth = 3;
const int xlMonthCode = 20;
const int xlMonthLeadingZero = 41;
const int xlMonthNameChars = 30;
const int xlMonths = 1;
const int xlMove = 2;
const int xlMoveAndSize = 1;
const int xlMovingAvg = 6;
const int xlMSDOS = 3;
const int xlMultiply = 4;
const int xlMYDFormat = 6;
const int xlNarrow = 1;
const int xlNever = 2;
const int xlNext = 1;
const int xlNextToAxis = 4;
const int xlNo = 2;
const int xlNoAdditionalCalculation = -4143;
const int xlNoButton = 0;
const int xlNoButtonChanges = 1;
const int xlNoCap = 2;
const int xlNoChange = 1;
const int xlNoChanges = 4;
const int xlNoConversion = 3;
const int xlNoDockingChanges = 3;
const int xlNoDocuments = 3;
const int xlNoIndicator = 0;
const int xlNoKey = 0;
const int xlNoLabels = -4142;
const int xlNoMailSystem = 0;
const int xlNoncurrencyDigits = 29;
const int xlNone = -4142;
const int xlNonEnglishFunctions = 34;
const int xlNoRestrictions = 0;
const int xlNormal = -4143;
const int xlNormalLoad = 0;
const int xlNormalView = 1;
const int xlNorthwestArrow = 1;
const int xlNoSelection = -4142;
const int xlNoShapeChanges = 2;
const int xlNotBetween = 2;
const int xlNotEqual = 4;
const int xlNotes = -4144;
const int xlNothing = 28;
const int xlNotPlotted = 1;
const int xlNotXLM = 3;
const int xlNotYetReviewed = 3;
const int xlNotYetRouted = 0;
const int xlNumber = -4145;
const int xlNumberAsText = 3;
const int xlNumbers = 1;
const int xlODBCQuery = 1;
const int xlOff = -4146;
const int xlOLEControl = 2;
const int xlOLEDBQuery = 5;
const int xlOLEEmbed = 1;
const int xlOLELink = 0;
const int xlOLELinks = 2;
const int xlOmittedCells = 5;
const int xlOn = 1;
const int xlOneAfterAnother = 1;
const int xlOpaque = 3;
const int xlOpen = 2;
const int xlOpenSource = 3;
const int xlOpenXMLWorkbook = 51; //without macro's in 2007-2010, xlsx
const int xlOpenXMLWorkbookMacroEnabled = 52; //with or without macro's in 2007-2010, xlsm
const int xlOptionButton = 7;
const int xlOr = 2;
const int xlOrigin = 3;
const int xlOtherSessionChanges = 3;
const int xlOutline = 1;
const int xlOutside = 3;
const int xlOverThenDown = 2;
const int xlOverwriteCells = 0;
const int xlPageBreakAutomatic = -4105;
const int xlPageBreakFull = 1;
const int xlPageBreakManual = -4135;
const int xlPageBreakNone = -4142;
const int xlPageBreakPartial = 2;
const int xlPageBreakPreview = 2;
const int xlPageField = 3;
const int xlPageHeader = 2;
const int xlPageItem = 6;
const int xlPaper10x14 = 16;
const int xlPaper11x17 = 17;
const int xlPaperA3 = 8;
const int xlPaperA4 = 9;
const int xlPaperA4Small = 10;
const int xlPaperA5 = 11;
const int xlPaperB4 = 12;
const int xlPaperB5 = 13;
const int xlPaperCsheet = 24;
const int xlPaperDsheet = 25;
const int xlPaperEnvelope10 = 20;
const int xlPaperEnvelope11 = 21;
const int xlPaperEnvelope12 = 22;
const int xlPaperEnvelope14 = 23;
const int xlPaperEnvelope9 = 19;
const int xlPaperEnvelopeB4 = 33;
const int xlPaperEnvelopeB5 = 34;
const int xlPaperEnvelopeB6 = 35;
const int xlPaperEnvelopeC3 = 29;
const int xlPaperEnvelopeC4 = 30;
const int xlPaperEnvelopeC5 = 28;
const int xlPaperEnvelopeC6 = 31;
const int xlPaperEnvelopeC65 = 32;
const int xlPaperEnvelopeDL = 27;
const int xlPaperEnvelopeItaly = 36;
const int xlPaperEnvelopeMonarch = 37;
const int xlPaperEnvelopePersonal = 38;
const int xlPaperEsheet = 26;
const int xlPaperExecutive = 7;
const int xlPaperFanfoldLegalGerman = 41;
const int xlPaperFanfoldStdGerman = 40;
const int xlPaperFanfoldUS = 39;
const int xlPaperFolio = 14;
const int xlPaperLedger = 4;
const int xlPaperLegal = 5;
const int xlPaperLetter = 1;
const int xlPaperLetterSmall = 2;
const int xlPaperNote = 18;
const int xlPaperQuarto = 15;
const int xlPaperStatement = 6;
const int xlPaperTabloid = 3;
const int xlPaperUser = 256;
const int xlParamTypeBigInt = -5;
const int xlParamTypeBinary = -2;
const int xlParamTypeBit = -7;
const int xlParamTypeChar = 1;
const int xlParamTypeDate = 9;
const int xlParamTypeDecimal = 3;
const int xlParamTypeDouble = 8;
const int xlParamTypeFloat = 6;
const int xlParamTypeInteger = 4;
const int xlParamTypeLongVarBinary = -4;
const int xlParamTypeLongVarChar = -1;
const int xlParamTypeNumeric = 2;
const int xlParamTypeReal = 7;
const int xlParamTypeSmallInt = 5;
const int xlParamTypeTime = 10;
const int xlParamTypeTimestamp = 11;
const int xlParamTypeTinyInt = -6;
const int xlParamTypeUnknown = 0;
const int xlParamTypeVarBinary = -3;
const int xlParamTypeVarChar = 12;
const int xlParamTypeWChar = -8;
const int xlPart = 2;
const int xlPartial = 3;
const int xlPartialScript = 2;
const int xlPasteAll = -4104;
const int xlPasteAllExceptBorders = 7;
const int xlPasteColumnWidths = 8;
const int xlPasteComments = -4144;
const int xlPasteFormats = -4122;
const int xlPasteFormulas = -4123;
const int xlPasteFormulasAndNumberFormats = 11;
const int xlPasteSpecialOperationAdd = 2;
const int xlPasteSpecialOperationDivide = 5;
const int xlPasteSpecialOperationMultiply = 4;
const int xlPasteSpecialOperationNone = -4142;
const int xlPasteSpecialOperationSubtract = 3;
const int xlPasteValidation = 6;
const int xlPasteValues = -4163;
const int xlPasteValuesAndNumberFormats = 12;
const int xlPatternAutomatic = -4105;
const int xlPatternChecker = 9;
const int xlPatternCrissCross = 16;
const int xlPatternDown = -4121;
const int xlPatternGray16 = 17;
const int xlPatternGray25 = -4124;
const int xlPatternGray50 = -4125;
const int xlPatternGray75 = -4126;
const int xlPatternGray8 = 18;
const int xlPatternGrid = 15;
const int xlPatternHorizontal = -4128;
const int xlPatternLightDown = 13;
const int xlPatternLightHorizontal = 11;
const int xlPatternLightUp = 14;
const int xlPatternLightVertical = 12;
const int xlPatternNone = -4142;
const int xlPatternSemiGray75 = 10;
const int xlPatternSolid = 1;
const int xlPatternUp = -4162;
const int xlPatternVertical = -4166;
const int xlPCT = 13;
const int xlPCX = 10;
const int xlPending = 2;
const int xlPercent = 2;
const int xlPercentDifferenceFrom = 4;
const int xlPercentOf = 3;
const int xlPercentOfColumn = 7;
const int xlPercentOfRow = 6;
const int xlPercentOfTotal = 8;
const int xlPhoneticAlignCenter = 2;
const int xlPhoneticAlignDistributed = 3;
const int xlPhoneticAlignLeft = 1;
const int xlPhoneticAlignNoControl = 0;
const int xlPIC = 11;
const int xlPICT = 1;
const int xlPicture = -4147;
const int xlPie = 5;
const int xlPieExploded = 69;
const int xlPieOfPie = 68;
const int xlPinYin = 1;
const int xlPivotCellBlankCell = 9;
const int xlPivotCellCustomSubtotal = 7;
const int xlPivotCellDataField = 4;
const int xlPivotCellDataPivotField = 8;
const int xlPivotCellGrandTotal = 3;
const int xlPivotCellPageFieldItem = 6;
const int xlPivotCellPivotField = 5;
const int xlPivotCellPivotItem = 1;
const int xlPivotCellSubtotal = 2;
const int xlPivotCellValue = 0;
const int xlPivotChartDropZone = 32;
const int xlPivotChartFieldButton = 31;
const int xlPivotTable = -4148;
const int xlPivotTableReport = 1;
const int xlPivotTableVersion10 = 1;
const int xlPivotTableVersion11 = 2;//2003
const int xlPivotTableVersion12 = 3;//2007
const int xlPivotTableVersion2000 = 0;
const int xlPivotTableVersionCurrent = -1;
const int xlPlaceholders = 2;
const int xlPlotArea = 19;
const int xlPLT = 12;
const int xlPlus = 9;
const int xlPlusValues = 2;
const int xlPolynomial = 3;
const int xlPortrait = 1;
const int xlPower = 4;
const int xlPowerTalk = 2;
const int xlPrevious = 2;
const int xlPrimary = 1;
const int xlPrimaryButton = 1;
const int xlPrinter = 2;
const int xlPrintErrorsBlank = 1;
const int xlPrintErrorsDash = 2;
const int xlPrintErrorsDisplayed = 0;
const int xlPrintErrorsNA = 3;
const int xlPrintInPlace = 16;
const int xlPrintNoComments = -4142;
const int xlPrintSheetEnd = 1;
const int xlPriorityHigh = -4127;
const int xlPriorityLow = -4134;
const int xlPriorityNormal = -4143;
const int xlProduct = -4149;
const int xlPrompt = 0;
const int xlPTClassic = 20;
const int xlPTNone = 21;
const int xlPublisher = 1;
const int xlPublishers = 5;
const int xlPyramidBarClustered = 109;
const int xlPyramidBarStacked = 110;
const int xlPyramidBarStacked100 = 111;
const int xlPyramidCol = 112;
const int xlPyramidColClustered = 106;
const int xlPyramidColStacked = 107;
const int xlPyramidColStacked100 = 108;
const int xlPyramidToMax = 2;
const int xlPyramidToPoint = 1;
const int xlQueryTable = 0;
const int xlR1C1 = -4150;
const int xlRadar = -4151;
const int xlRadarAxisLabels = 27;
const int xlRadarFilled = 82;
const int xlRadarMarkers = 81;
const int xlRange = 2;
const int xlRangeAutoFormat3DEffects1 = 13;
const int xlRangeAutoFormat3DEffects2 = 14;
const int xlRangeAutoFormatAccounting1 = 4;
const int xlRangeAutoFormatAccounting2 = 5;
const int xlRangeAutoFormatAccounting3 = 6;
const int xlRangeAutoFormatAccounting4 = 17;
const int xlRangeAutoFormatClassic1 = 1;
const int xlRangeAutoFormatClassic2 = 2;
const int xlRangeAutoFormatClassic3 = 3;
const int xlRangeAutoFormatClassicPivotTable = 31;
const int xlRangeAutoFormatColor1 = 7;
const int xlRangeAutoFormatColor2 = 8;
const int xlRangeAutoFormatColor3 = 9;
const int xlRangeAutoFormatList1 = 10;
const int xlRangeAutoFormatList2 = 11;
const int xlRangeAutoFormatList3 = 12;
const int xlRangeAutoFormatLocalFormat1 = 15;
const int xlRangeAutoFormatLocalFormat2 = 16;
const int xlRangeAutoFormatLocalFormat3 = 19;
const int xlRangeAutoFormatLocalFormat4 = 20;
const int xlRangeAutoFormatNone = -4142;
const int xlRangeAutoFormatPTNone = 42;
const int xlRangeAutoFormatReport1 = 21;
const int xlRangeAutoFormatReport10 = 30;
const int xlRangeAutoFormatReport2 = 22;
const int xlRangeAutoFormatReport3 = 23;
const int xlRangeAutoFormatReport4 = 24;
const int xlRangeAutoFormatReport5 = 25;
const int xlRangeAutoFormatReport6 = 26;
const int xlRangeAutoFormatReport7 = 27;
const int xlRangeAutoFormatReport8 = 28;
const int xlRangeAutoFormatReport9 = 29;
const int xlRangeAutoFormatSimple = -4154;
const int xlRangeAutoFormatTable1 = 32;
const int xlRangeAutoFormatTable10 = 41;
const int xlRangeAutoFormatTable2 = 33;
const int xlRangeAutoFormatTable3 = 34;
const int xlRangeAutoFormatTable4 = 35;
const int xlRangeAutoFormatTable5 = 36;
const int xlRangeAutoFormatTable6 = 37;
const int xlRangeAutoFormatTable7 = 38;
const int xlRangeAutoFormatTable8 = 39;
const int xlRangeAutoFormatTable9 = 40;
const int xlRangeValueDefault = 10;
const int xlRangeValueMSPersistXML = 12;
const int xlRangeValueXMLSpreadsheet = 11;
const int xlReadOnly = 3;
const int xlReadWrite = 2;
const int xlReference = 4;
const int xlRelative = 4;
const int xlRelRowAbsColumn = 3;
const int xlRepairFile = 1;
const int xlReport1 = 0;
const int xlReport10 = 9;
const int xlReport2 = 1;
const int xlReport3 = 2;
const int xlReport4 = 3;
const int xlReport5 = 4;
const int xlReport6 = 5;
const int xlReport7 = 6;
const int xlReport8 = 7;
const int xlReport9 = 8;
const int xlRight = -4152;
const int xlRightBrace = 13;
const int xlRightBracket = 11;
const int xlRoutingComplete = 2;
const int xlRoutingInProgress = 1;
const int xlRowField = 1;
const int xlRowHeader = -4153;
const int xlRowItem = 4;
const int xlRowLabels = 1;
const int xlRows = 1;
const int xlRowSeparator = 15;
const int xlRowThenColumn = 1;
const int xlRTF = 4;
const int xlRTL = -5004;
const int xlRunningTotal = 5;
const int xlSaveChanges = 1;
const int xlScale = 3;
const int xlScaleLinear = -4132;
const int xlScaleLogarithmic = -4133;
const int xlScenario = 4;
const int xlScreen = 1;
const int xlScreenSize = 1;
const int xlScrollBar = 8;
const int xlSecondary = 2;
const int xlSecondaryButton = 2;
const int xlSecondCode = 24;
const int xlSelect = 3;
const int xlSemiautomatic = 2;
const int xlSemiGray75 = 10;
const int xlSendPublisher = 2;
const int xlSeries = 3;
const int xlSeriesAxis = 3;
const int xlSeriesLines = 22;
const int xlSet = 3;
const int xlShape = 14;
const int xlShared = 2;
const int xlSheetHidden = 0;
const int xlSheetVeryHidden = 2;
const int xlSheetVisible = -1;
const int xlShiftDown = -4121;
const int xlShiftToLeft = -4159;
const int xlShiftToRight = -4161;
const int xlShiftUp = -4162;
const int xlShort = 1;
const int xlShowLabel = 4;
const int xlShowLabelAndPercent = 5;
const int xlShowPercent = 3;
const int xlShowValue = 2;
const int xlSides = 1;
const int xlSimple = -4154;
const int xlSinceMyLastSave = 1;
const int xlSingle = 2;
const int xlSingleAccounting = 4;
const int xlSingleQuote = 2;
const int xlSizeIsArea = 1;
const int xlSizeIsWidth = 2;
const int xlSkipColumn = 9;
const int xlSlantDashDot = 13;
const int xlSmartTagControlActiveX = 13;
const int xlSmartTagControlButton = 6;
const int xlSmartTagControlCheckbox = 9;
const int xlSmartTagControlCombo = 12;
const int xlSmartTagControlHelp = 3;
const int xlSmartTagControlHelpURL = 4;
const int xlSmartTagControlImage = 8;
const int xlSmartTagControlLabel = 7;
const int xlSmartTagControlLink = 2;
const int xlSmartTagControlListbox = 11;
const int xlSmartTagControlRadioGroup = 14;
const int xlSmartTagControlSeparator = 5;
const int xlSmartTagControlSmartTag = 1;
const int xlSmartTagControlTextbox = 10;
const int xlSolid = 1;
const int xlSortColumns = 1;
const int xlSortLabels = 2;
const int xlSortNormal = 0;
const int xlSortOnValues = 0;
const int xlSortRows = 2;
const int xlSortTextAsNumbers = 1;
const int xlSortValues = 1;
const int xlSourceAutoFilter = 3;
const int xlSourceChart = 5;
const int xlSourcePivotTable = 6;
const int xlSourcePrintArea = 2;
const int xlSourceQuery = 7;
const int xlSourceRange = 4;
const int xlSourceSheet = 1;
const int xlSourceWorkbook = 0;
const int xlSpeakByColumns = 1;
const int xlSpeakByRows = 0;
const int xlSpecifiedTables = 3;
const int xlSpinner = 9;
const int xlSplitByCustomSplit = 4;
const int xlSplitByPercentValue = 3;
const int xlSplitByPosition = 1;
const int xlSplitByValue = 2;
const int xlSquare = 1;
const int xlSrcExternal = 0;
const int xlSrcRange = 1;
const int xlSrcXml = 2;
const int xlStack = 2;
const int xlStackScale = 3;
const int xlStandardSummary = 1;
const int xlStar = 5;
const int xlStDev = -4155;
const int xlStDevP = -4156;
const int xlStError = 4;
const int xlStockHLC = 88;
const int xlStockOHLC = 89;
const int xlStockVHLC = 90;
const int xlStockVOHLC = 91;
const int xlStretch = 1;
const int xlStrict = 2;
const int xlStroke = 2;
const int xlSubscriber = 2;
const int xlSubscribers = 6;
const int xlSubscribeToPicture = -4147;
const int xlSubscribeToText = -4158;
const int xlSubtract = 3;
const int xlSum = -4157;
const int xlSummaryAbove = 0;
const int xlSummaryBelow = 1;
const int xlSummaryOnLeft = -4131;
const int xlSummaryOnRight = -4152;
const int xlSummaryPivotTable = -4148;
const int xlSurface = 83;
const int xlSurfaceTopView = 85;
const int xlSurfaceTopViewWireframe = 86;
const int xlSurfaceWireframe = 84;
const int xlSYLK = 2;
const int xlSyllabary = 1;
const int xlSystem = 1;
const int xlTable1 = 10;
const int xlTable10 = 19;
const int xlTable2 = 11;
const int xlTable3 = 12;
const int xlTable4 = 13;
const int xlTable5 = 14;
const int xlTable6 = 15;
const int xlTable7 = 16;
const int xlTable8 = 17;
const int xlTable9 = 18;
const int xlTableBody = 8;
const int xlTabPositionFirst = 0;
const int xlTabPositionLast = 1;
const int xlTabular = 0;
const int xlTemplate = 17;
const int xlTenMillions = -7;
const int xlTenThousands = -4;
const int xlText = -4158;
const int xlTextBox = 16;
const int xlTextDate = 2;
const int xlTextFormat = 2;
const int xlTextImport = 6;
const int xlTextMac = 19;
const int xlTextMSDOS = 21;
const int xlTextPrinter = 36;
const int xlTextQualifierDoubleQuote = 1;
const int xlTextQualifierNone = -4142;
const int xlTextQualifierSingleQuote = 2;
const int xlTextValues = 2;
const int xlTextVisualLTR = 1;
const int xlTextVisualRTL = 2;
const int xlTextWindows = 20;
const int xlThick = 4;
const int xlThin = 2;
const int xlThousandMillions = -9;
const int xlThousands = -3;
const int xlThousandsSeparator = 4;
const int xlTickLabelOrientationAutomatic = -4105;
const int xlTickLabelOrientationDownward = -4170;
const int xlTickLabelOrientationHorizontal = -4128;
const int xlTickLabelOrientationUpward = -4171;
const int xlTickLabelOrientationVertical = -4166;
const int xlTickLabelPositionHigh = -4127;
const int xlTickLabelPositionLow = -4134;
const int xlTickLabelPositionNextToAxis = 4;
const int xlTickLabelPositionNone = -4142;
const int xlTickMarkCross = 4;
const int xlTickMarkInside = 2;
const int xlTickMarkNone = -4142;
const int xlTickMarkOutside = 3;
const int xlTIF = 9;
const int xlTiled = 1;
const int xlTimeLeadingZero = 45;
const int xlTimeScale = 3;
const int xlTimeSeparator = 18;
const int xlTitleBar = 8;
const int xlToLeft = -4159;
const int xlToolbar = 1;
const int xlToolbarButton = 2;
const int xlToolbarProtectionNone = -4143;
const int xlTop = -4160;
const int xlTop10Items = 3;
const int xlTop10Percent = 5;
const int xlTopToBottom = 1;
const int xlToRight = -4161;
const int xlTotalsCalculationAverage = 2;
const int xlTotalsCalculationCount = 3;
const int xlTotalsCalculationCountNums = 4;
const int xlTotalsCalculationMax = 6;
const int xlTotalsCalculationMin = 5;
const int xlTotalsCalculationNone = 0;
const int xlTotalsCalculationStdDev = 7;
const int xlTotalsCalculationSum = 1;
const int xlTotalsCalculationVar = 8;
const int xlTransparent = 2;
const int xlTrendline = 8;
const int xlTriangle = 3;
const int xlUnderlineStyleDouble = -4119;
const int xlUnderlineStyleDoubleAccounting = 5;
const int xlUnderlineStyleNone = -4142;
const int xlUnderlineStyleSingle = 2;
const int xlUnderlineStyleSingleAccounting = 4;
const int xlUnicodeText = 42;
const int xlUnknown = 1000;
const int xlUnlockedCells = 1;
const int xlUnlockedFormulaCells = 6;
const int xlUp = -4162;
const int xlUpBars = 18;
const int xlUpdateLinksAlways = 3;
const int xlUpdateLinksNever = 2;
const int xlUpdateLinksUserSetting = 1;
const int xlUpdateState = 1;
const int xlUpdateSubscriber = 2;
const int xlUpperCaseColumnLetter = 7;
const int xlUpperCaseRowLetter = 6;
const int xlUpward = -4171;
const int xlUserDefined = 22;
const int xlUserResolution = 1;
const int xlValidAlertInformation = 3;
const int xlValidAlertStop = 1;
const int xlValidAlertWarning = 2;
const int xlValidateCustom = 7;
const int xlValidateDate = 4;
const int xlValidateDecimal = 2;
const int xlValidateInputOnly = 0;
const int xlValidateList = 3;
const int xlValidateTextLength = 6;
const int xlValidateTime = 5;
const int xlValidateWholeNumber = 1;
const int xlVAlignBottom = -4107;
const int xlVAlignCenter = -4108;
const int xlVAlignDistributed = -4117;
const int xlVAlignJustify = -4130;
const int xlVAlignTop = -4160;
const int xlVALU = 8;
const int xlValue = 2;
const int xlValues = -4163;
const int xlVar = -4164;
const int xlVarP = -4165;
const int xlVerbOpen = 2;
const int xlVerbPrimary = 1;
const int xlVertical = -4166;
const int xlVeryHidden = 2;
const int xlVisible = 12;
const int xlVisualCursor = 2;
const int xlWait = 2;
const int xlWalls = 5;
const int xlWatchPane = 11;
const int xlWBATChart = -4109;
const int xlWBATExcel4IntlMacroSheet = 4;
const int xlWBATExcel4MacroSheet = 3;
const int xlWBATWorksheet = -4167;
const int xlWebArchive = 45;
const int xlWebFormattingAll = 1;
const int xlWebFormattingNone = 3;
const int xlWebFormattingRTF = 2;
const int xlWebQuery = 4;
const int xlWeekday = 2;
const int xlWeekdayNameChars = 31;
const int xlWhole = 1;
const int xlWide = 3;
const int xlWindows = 2;
const int xlWithinSheet = 1;
const int xlWithinWorkbook = 2;
const int xlWJ2WD1 = 14;
const int xlWJ3 = 40;
const int xlWJ3FJ3 = 41;
const int xlWK1 = 5;
const int xlWK1ALL = 31;
const int xlWK1FMT = 30;
const int xlWK3 = 15;
const int xlWK3FM3 = 32;
const int xlWK4 = 38;
const int xlWKS = 4;
const int xlWMF = 2;
const int xlWorkbook = 1;
const int xlWorkbookNormal = -4143;
const int xlWorkbookTab = 6;
const int xlWorks2FarEast = 28;
const int xlWorksheet = -4167;
const int xlWorksheet4 = 1;
const int xlWorksheetCell = 3;
const int xlWorksheetShort = 5;
const int xlWPG = 3;
const int xlWQ1 = 34;
const int xlX = -4168;
const int xlXErrorBars = 10;
const int xlXmlExportSuccess = 0;
const int xlXmlExportValidationFailed = 1;
const int xlXmlImportElementsTruncated = 1;
const int xlXmlImportSuccess = 0;
const int xlXmlImportValidationFailed = 2;
const int xlXmlLoadImportToList = 2;
const int xlXmlLoadMapXml = 3;
const int xlXmlLoadOpenXml = 1;
const int xlXmlLoadPromptUser = 0;
const int xlXMLSpreadsheet = 46;
const int xlXYScatter = -4169;
const int xlXYScatterLines = 74;
const int xlXYScatterLinesNoMarkers = 75;
const int xlXYScatterSmooth = 72;
const int xlXYScatterSmoothNoMarkers = 73;
const int xlY = 1;
const int xlYDMFormat = 8;
const int xlYear = 4;
const int xlYearCode = 19;
const int xlYears = 2;
const int xlYErrorBars = 11;
const int xlYes = 1;
const int xlYMDFormat = 5;
const int xlZero = 2;
 
#define MAX_DISP_ARGS 10
#define DISPARG_NOFREEVARIANT 0x01
#define DISP_FREEARGS 0x02
#define DISP_NOSHOWEXCEPTIONS 0x03