tdrpa.tdworker 1.1.9.3__py39-none-win_amd64.whl

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.
Files changed (97) hide show
  1. tdrpa/_tdxlwings/__init__.py +193 -0
  2. tdrpa/_tdxlwings/__pycache__/__init__.cpython-311.pyc +0 -0
  3. tdrpa/_tdxlwings/__pycache__/__init__.cpython-38.pyc +0 -0
  4. tdrpa/_tdxlwings/__pycache__/_win32patch.cpython-311.pyc +0 -0
  5. tdrpa/_tdxlwings/__pycache__/_win32patch.cpython-38.pyc +0 -0
  6. tdrpa/_tdxlwings/__pycache__/_xlwindows.cpython-311.pyc +0 -0
  7. tdrpa/_tdxlwings/__pycache__/_xlwindows.cpython-38.pyc +0 -0
  8. tdrpa/_tdxlwings/__pycache__/apps.cpython-311.pyc +0 -0
  9. tdrpa/_tdxlwings/__pycache__/apps.cpython-38.pyc +0 -0
  10. tdrpa/_tdxlwings/__pycache__/base_classes.cpython-311.pyc +0 -0
  11. tdrpa/_tdxlwings/__pycache__/base_classes.cpython-38.pyc +0 -0
  12. tdrpa/_tdxlwings/__pycache__/com_server.cpython-311.pyc +0 -0
  13. tdrpa/_tdxlwings/__pycache__/com_server.cpython-38.pyc +0 -0
  14. tdrpa/_tdxlwings/__pycache__/constants.cpython-311.pyc +0 -0
  15. tdrpa/_tdxlwings/__pycache__/constants.cpython-38.pyc +0 -0
  16. tdrpa/_tdxlwings/__pycache__/expansion.cpython-311.pyc +0 -0
  17. tdrpa/_tdxlwings/__pycache__/expansion.cpython-38.pyc +0 -0
  18. tdrpa/_tdxlwings/__pycache__/main.cpython-311.pyc +0 -0
  19. tdrpa/_tdxlwings/__pycache__/main.cpython-38.pyc +0 -0
  20. tdrpa/_tdxlwings/__pycache__/udfs.cpython-311.pyc +0 -0
  21. tdrpa/_tdxlwings/__pycache__/udfs.cpython-38.pyc +0 -0
  22. tdrpa/_tdxlwings/__pycache__/utils.cpython-311.pyc +0 -0
  23. tdrpa/_tdxlwings/__pycache__/utils.cpython-38.pyc +0 -0
  24. tdrpa/_tdxlwings/_win32patch.py +90 -0
  25. tdrpa/_tdxlwings/_xlmac.py +2240 -0
  26. tdrpa/_tdxlwings/_xlwindows.py +2518 -0
  27. tdrpa/_tdxlwings/addin/Dictionary.cls +474 -0
  28. tdrpa/_tdxlwings/addin/IWebAuthenticator.cls +71 -0
  29. tdrpa/_tdxlwings/addin/WebClient.cls +772 -0
  30. tdrpa/_tdxlwings/addin/WebHelpers.bas +3203 -0
  31. tdrpa/_tdxlwings/addin/WebRequest.cls +875 -0
  32. tdrpa/_tdxlwings/addin/WebResponse.cls +453 -0
  33. tdrpa/_tdxlwings/addin/xlwings.xlam +0 -0
  34. tdrpa/_tdxlwings/apps.py +35 -0
  35. tdrpa/_tdxlwings/base_classes.py +1092 -0
  36. tdrpa/_tdxlwings/cli.py +1306 -0
  37. tdrpa/_tdxlwings/com_server.py +385 -0
  38. tdrpa/_tdxlwings/constants.py +3080 -0
  39. tdrpa/_tdxlwings/conversion/__init__.py +103 -0
  40. tdrpa/_tdxlwings/conversion/framework.py +147 -0
  41. tdrpa/_tdxlwings/conversion/numpy_conv.py +34 -0
  42. tdrpa/_tdxlwings/conversion/pandas_conv.py +184 -0
  43. tdrpa/_tdxlwings/conversion/standard.py +321 -0
  44. tdrpa/_tdxlwings/expansion.py +83 -0
  45. tdrpa/_tdxlwings/ext/__init__.py +3 -0
  46. tdrpa/_tdxlwings/ext/sql.py +73 -0
  47. tdrpa/_tdxlwings/html/xlwings-alert.html +71 -0
  48. tdrpa/_tdxlwings/js/xlwings.js +577 -0
  49. tdrpa/_tdxlwings/js/xlwings.ts +729 -0
  50. tdrpa/_tdxlwings/mac_dict.py +6399 -0
  51. tdrpa/_tdxlwings/main.py +5205 -0
  52. tdrpa/_tdxlwings/mistune/__init__.py +63 -0
  53. tdrpa/_tdxlwings/mistune/block_parser.py +366 -0
  54. tdrpa/_tdxlwings/mistune/inline_parser.py +216 -0
  55. tdrpa/_tdxlwings/mistune/markdown.py +84 -0
  56. tdrpa/_tdxlwings/mistune/renderers.py +220 -0
  57. tdrpa/_tdxlwings/mistune/scanner.py +121 -0
  58. tdrpa/_tdxlwings/mistune/util.py +41 -0
  59. tdrpa/_tdxlwings/pro/__init__.py +40 -0
  60. tdrpa/_tdxlwings/pro/_xlcalamine.py +536 -0
  61. tdrpa/_tdxlwings/pro/_xlofficejs.py +146 -0
  62. tdrpa/_tdxlwings/pro/_xlremote.py +1293 -0
  63. tdrpa/_tdxlwings/pro/custom_functions_code.js +150 -0
  64. tdrpa/_tdxlwings/pro/embedded_code.py +60 -0
  65. tdrpa/_tdxlwings/pro/udfs_officejs.py +549 -0
  66. tdrpa/_tdxlwings/pro/utils.py +199 -0
  67. tdrpa/_tdxlwings/quickstart.xlsm +0 -0
  68. tdrpa/_tdxlwings/quickstart_addin.xlam +0 -0
  69. tdrpa/_tdxlwings/quickstart_addin_ribbon.xlam +0 -0
  70. tdrpa/_tdxlwings/quickstart_fastapi/main.py +47 -0
  71. tdrpa/_tdxlwings/quickstart_fastapi/requirements.txt +3 -0
  72. tdrpa/_tdxlwings/quickstart_standalone.xlsm +0 -0
  73. tdrpa/_tdxlwings/reports.py +12 -0
  74. tdrpa/_tdxlwings/rest/__init__.py +1 -0
  75. tdrpa/_tdxlwings/rest/api.py +368 -0
  76. tdrpa/_tdxlwings/rest/serializers.py +103 -0
  77. tdrpa/_tdxlwings/server.py +14 -0
  78. tdrpa/_tdxlwings/udfs.py +775 -0
  79. tdrpa/_tdxlwings/utils.py +777 -0
  80. tdrpa/_tdxlwings/xlwings-0.31.6.applescript +30 -0
  81. tdrpa/_tdxlwings/xlwings.bas +2061 -0
  82. tdrpa/_tdxlwings/xlwings_custom_addin.bas +2042 -0
  83. tdrpa/_tdxlwings/xlwingslib.cp38-win_amd64.pyd +0 -0
  84. tdrpa/tdworker/__init__.pyi +8 -0
  85. tdrpa/tdworker/_excel.pyi +703 -0
  86. tdrpa/tdworker/_img.pyi +173 -0
  87. tdrpa/tdworker/_os.pyi +46 -0
  88. tdrpa/tdworker/_w.pyi +129 -0
  89. tdrpa/tdworker/_web.pyi +248 -0
  90. tdrpa/tdworker/_winE.pyi +246 -0
  91. tdrpa/tdworker/_winK.pyi +74 -0
  92. tdrpa/tdworker/_winM.pyi +117 -0
  93. tdrpa/tdworker.cp39-win_amd64.pyd +0 -0
  94. tdrpa.tdworker-1.1.9.3.dist-info/METADATA +25 -0
  95. tdrpa.tdworker-1.1.9.3.dist-info/RECORD +97 -0
  96. tdrpa.tdworker-1.1.9.3.dist-info/WHEEL +5 -0
  97. tdrpa.tdworker-1.1.9.3.dist-info/top_level.txt +1 -0
@@ -0,0 +1,3080 @@
1
+ import re
2
+
3
+ RE_WORD = re.compile("^[A-Z0-9]([A-Z0-9](?![a-z]))*[a-z]*")
4
+
5
+
6
+ def _dump_enum(cls):
7
+ constants = [c for c in dir(cls) if c.startswith("xl")]
8
+ s2i = {}
9
+ for c in constants:
10
+ i = getattr(cls, c)
11
+ c = c[2:]
12
+ words = []
13
+ while c:
14
+ m = RE_WORD.match(c)
15
+ words.append(m.group(0).lower())
16
+ c = c[m.end() :]
17
+ s = "_".join(words)
18
+ s2i[s] = i
19
+
20
+ from collections import OrderedDict
21
+
22
+ s2i = OrderedDict(((s, s2i[s]) for s in sorted(s2i.keys())))
23
+ i2s = OrderedDict(((v, k) for k, v in s2i.items()))
24
+
25
+ import json
26
+
27
+ with open("out.txt", "w") as f:
28
+ json.dump({"i2s": i2s, "s2i": s2i, "l": list(s2i.keys())}, f, indent=4)
29
+
30
+
31
+ class AboveBelow:
32
+ xlAboveAverage = 0 # from enum XlAboveBelow
33
+ xlAboveStdDev = 4 # from enum XlAboveBelow
34
+ xlBelowAverage = 1 # from enum XlAboveBelow
35
+ xlBelowStdDev = 5 # from enum XlAboveBelow
36
+ xlEqualAboveAverage = 2 # from enum XlAboveBelow
37
+ xlEqualBelowAverage = 3 # from enum XlAboveBelow
38
+
39
+
40
+ class Constants:
41
+ xlNextToAxis = 4 # from enum Constants
42
+ xlNoDocuments = 3 # from enum Constants
43
+ xlNone = -4142 # from enum Constants
44
+ xlNotes = -4144 # from enum Constants
45
+ xlOff = -4146 # from enum Constants
46
+ xl3DEffects1 = 13 # from enum Constants
47
+ xl3DBar = -4099 # from enum Constants
48
+ xl3DEffects2 = 14 # from enum Constants
49
+ xl3DSurface = -4103 # from enum Constants
50
+ xlAbove = 0 # from enum Constants
51
+ xlAccounting1 = 4 # from enum Constants
52
+ xlAccounting2 = 5 # from enum Constants
53
+ xlAccounting3 = 6 # from enum Constants
54
+ xlAccounting4 = 17 # from enum Constants
55
+ xlAdd = 2 # from enum Constants
56
+ xlAll = -4104 # from enum Constants
57
+ xlAllExceptBorders = 7 # from enum Constants
58
+ xlAutomatic = -4105 # from enum Constants
59
+ xlBar = 2 # from enum Constants
60
+ xlBelow = 1 # from enum Constants
61
+ xlBidi = -5000 # from enum Constants
62
+ xlBidiCalendar = 3 # from enum Constants
63
+ xlBoth = 1 # from enum Constants
64
+ xlBottom = -4107 # from enum Constants
65
+ xlCascade = 7 # from enum Constants
66
+ xlCenter = -4108 # from enum Constants
67
+ xlCenterAcrossSelection = 7 # from enum Constants
68
+ xlChart4 = 2 # from enum Constants
69
+ xlChartSeries = 17 # from enum Constants
70
+ xlChartShort = 6 # from enum Constants
71
+ xlChartTitles = 18 # from enum Constants
72
+ xlChecker = 9 # from enum Constants
73
+ xlCircle = 8 # from enum Constants
74
+ xlClassic1 = 1 # from enum Constants
75
+ xlClassic2 = 2 # from enum Constants
76
+ xlClassic3 = 3 # from enum Constants
77
+ xlClosed = 3 # from enum Constants
78
+ xlColor1 = 7 # from enum Constants
79
+ xlColor2 = 8 # from enum Constants
80
+ xlColor3 = 9 # from enum Constants
81
+ xlColumn = 3 # from enum Constants
82
+ xlCombination = -4111 # from enum Constants
83
+ xlComplete = 4 # from enum Constants
84
+ xlConstants = 2 # from enum Constants
85
+ xlContents = 2 # from enum Constants
86
+ xlContext = -5002 # from enum Constants
87
+ xlCorner = 2 # from enum Constants
88
+ xlCrissCross = 16 # from enum Constants
89
+ xlCross = 4 # from enum Constants
90
+ xlCustom = -4114 # from enum Constants
91
+ xlDebugCodePane = 13 # from enum Constants
92
+ xlDefaultAutoFormat = -1 # from enum Constants
93
+ xlDesktop = 9 # from enum Constants
94
+ xlDiamond = 2 # from enum Constants
95
+ xlDirect = 1 # from enum Constants
96
+ xlDistributed = -4117 # from enum Constants
97
+ xlDivide = 5 # from enum Constants
98
+ xlDoubleAccounting = 5 # from enum Constants
99
+ xlDoubleClosed = 5 # from enum Constants
100
+ xlDoubleOpen = 4 # from enum Constants
101
+ xlDoubleQuote = 1 # from enum Constants
102
+ xlDrawingObject = 14 # from enum Constants
103
+ xlEntireChart = 20 # from enum Constants
104
+ xlExcelMenus = 1 # from enum Constants
105
+ xlExtended = 3 # from enum Constants
106
+ xlFill = 5 # from enum Constants
107
+ xlFirst = 0 # from enum Constants
108
+ xlFixedValue = 1 # from enum Constants
109
+ xlFloating = 5 # from enum Constants
110
+ xlFormats = -4122 # from enum Constants
111
+ xlFormula = 5 # from enum Constants
112
+ xlFullScript = 1 # from enum Constants
113
+ xlGeneral = 1 # from enum Constants
114
+ xlGray16 = 17 # from enum Constants
115
+ xlGray25 = -4124 # from enum Constants
116
+ xlGray50 = -4125 # from enum Constants
117
+ xlGray75 = -4126 # from enum Constants
118
+ xlGray8 = 18 # from enum Constants
119
+ xlGregorian = 2 # from enum Constants
120
+ xlGrid = 15 # from enum Constants
121
+ xlGridline = 22 # from enum Constants
122
+ xlHigh = -4127 # from enum Constants
123
+ xlHindiNumerals = 3 # from enum Constants
124
+ xlIcons = 1 # from enum Constants
125
+ xlImmediatePane = 12 # from enum Constants
126
+ xlInside = 2 # from enum Constants
127
+ xlInteger = 2 # from enum Constants
128
+ xlJustify = -4130 # from enum Constants
129
+ xlLTR = -5003 # from enum Constants
130
+ xlLast = 1 # from enum Constants
131
+ xlLastCell = 11 # from enum Constants
132
+ xlLatin = -5001 # from enum Constants
133
+ xlLeft = -4131 # from enum Constants
134
+ xlLeftToRight = 2 # from enum Constants
135
+ xlLightDown = 13 # from enum Constants
136
+ xlLightHorizontal = 11 # from enum Constants
137
+ xlLightUp = 14 # from enum Constants
138
+ xlLightVertical = 12 # from enum Constants
139
+ xlList1 = 10 # from enum Constants
140
+ xlList2 = 11 # from enum Constants
141
+ xlList3 = 12 # from enum Constants
142
+ xlLocalFormat1 = 15 # from enum Constants
143
+ xlLocalFormat2 = 16 # from enum Constants
144
+ xlLogicalCursor = 1 # from enum Constants
145
+ xlLong = 3 # from enum Constants
146
+ xlLotusHelp = 2 # from enum Constants
147
+ xlLow = -4134 # from enum Constants
148
+ xlMacrosheetCell = 7 # from enum Constants
149
+ xlManual = -4135 # from enum Constants
150
+ xlMaximum = 2 # from enum Constants
151
+ xlMinimum = 4 # from enum Constants
152
+ xlMinusValues = 3 # from enum Constants
153
+ xlMixed = 2 # from enum Constants
154
+ xlMixedAuthorizedScript = 4 # from enum Constants
155
+ xlMixedScript = 3 # from enum Constants
156
+ xlModule = -4141 # from enum Constants
157
+ xlMultiply = 4 # from enum Constants
158
+ xlNarrow = 1 # from enum Constants
159
+ xlOn = 1 # from enum Constants
160
+ xlOpaque = 3 # from enum Constants
161
+ xlOpen = 2 # from enum Constants
162
+ xlOutside = 3 # from enum Constants
163
+ xlPartial = 3 # from enum Constants
164
+ xlPartialScript = 2 # from enum Constants
165
+ xlPercent = 2 # from enum Constants
166
+ xlPlus = 9 # from enum Constants
167
+ xlPlusValues = 2 # from enum Constants
168
+ xlRTL = -5004 # from enum Constants
169
+ xlReference = 4 # from enum Constants
170
+ xlRight = -4152 # from enum Constants
171
+ xlScale = 3 # from enum Constants
172
+ xlSemiGray75 = 10 # from enum Constants
173
+ xlSemiautomatic = 2 # from enum Constants
174
+ xlShort = 1 # from enum Constants
175
+ xlShowLabel = 4 # from enum Constants
176
+ xlShowLabelAndPercent = 5 # from enum Constants
177
+ xlShowPercent = 3 # from enum Constants
178
+ xlShowValue = 2 # from enum Constants
179
+ xlSimple = -4154 # from enum Constants
180
+ xlSingle = 2 # from enum Constants
181
+ xlSingleAccounting = 4 # from enum Constants
182
+ xlSingleQuote = 2 # from enum Constants
183
+ xlSolid = 1 # from enum Constants
184
+ xlSquare = 1 # from enum Constants
185
+ xlStError = 4 # from enum Constants
186
+ xlStar = 5 # from enum Constants
187
+ xlStrict = 2 # from enum Constants
188
+ xlSubtract = 3 # from enum Constants
189
+ xlSystem = 1 # from enum Constants
190
+ xlTextBox = 16 # from enum Constants
191
+ xlTiled = 1 # from enum Constants
192
+ xlTitleBar = 8 # from enum Constants
193
+ xlToolbar = 1 # from enum Constants
194
+ xlToolbarButton = 2 # from enum Constants
195
+ xlTop = -4160 # from enum Constants
196
+ xlTopToBottom = 1 # from enum Constants
197
+ xlTransparent = 2 # from enum Constants
198
+ xlTriangle = 3 # from enum Constants
199
+ xlVeryHidden = 2 # from enum Constants
200
+ xlVisible = 12 # from enum Constants
201
+ xlVisualCursor = 2 # from enum Constants
202
+ xlWatchPane = 11 # from enum Constants
203
+ xlWide = 3 # from enum Constants
204
+ xlWorkbookTab = 6 # from enum Constants
205
+ xlWorksheet4 = 1 # from enum Constants
206
+ xlWorksheetCell = 3 # from enum Constants
207
+ xlWorksheetShort = 5 # from enum Constants
208
+
209
+
210
+ class ActionType:
211
+ xlActionTypeDrillthrough = 256 # from enum XlActionType
212
+ xlActionTypeReport = 128 # from enum XlActionType
213
+ xlActionTypeRowset = 16 # from enum XlActionType
214
+ xlActionTypeUrl = 1 # from enum XlActionType
215
+
216
+
217
+ class Allocation:
218
+ xlAutomaticAllocation = 2 # from enum XlAllocation
219
+ xlManualAllocation = 1 # from enum XlAllocation
220
+
221
+
222
+ class AllocationMethod:
223
+ xlEqualAllocation = 1 # from enum XlAllocationMethod
224
+ xlWeightedAllocation = 2 # from enum XlAllocationMethod
225
+
226
+
227
+ class AllocationValue:
228
+ xlAllocateIncrement = 2 # from enum XlAllocationValue
229
+ xlAllocateValue = 1 # from enum XlAllocationValue
230
+
231
+
232
+ class ApplicationInternational:
233
+ xl24HourClock = 33 # from enum XlApplicationInternational
234
+ xl4DigitYears = 43 # from enum XlApplicationInternational
235
+ xlAlternateArraySeparator = 16 # from enum XlApplicationInternational
236
+ xlColumnSeparator = 14 # from enum XlApplicationInternational
237
+ xlCountryCode = 1 # from enum XlApplicationInternational
238
+ xlCountrySetting = 2 # from enum XlApplicationInternational
239
+ xlCurrencyBefore = 37 # from enum XlApplicationInternational
240
+ xlCurrencyCode = 25 # from enum XlApplicationInternational
241
+ xlCurrencyDigits = 27 # from enum XlApplicationInternational
242
+ xlCurrencyLeadingZeros = 40 # from enum XlApplicationInternational
243
+ xlCurrencyMinusSign = 38 # from enum XlApplicationInternational
244
+ xlCurrencyNegative = 28 # from enum XlApplicationInternational
245
+ xlCurrencySpaceBefore = 36 # from enum XlApplicationInternational
246
+ xlCurrencyTrailingZeros = 39 # from enum XlApplicationInternational
247
+ xlDateOrder = 32 # from enum XlApplicationInternational
248
+ xlDateSeparator = 17 # from enum XlApplicationInternational
249
+ xlDayCode = 21 # from enum XlApplicationInternational
250
+ xlDayLeadingZero = 42 # from enum XlApplicationInternational
251
+ xlDecimalSeparator = 3 # from enum XlApplicationInternational
252
+ xlGeneralFormatName = 26 # from enum XlApplicationInternational
253
+ xlHourCode = 22 # from enum XlApplicationInternational
254
+ xlLeftBrace = 12 # from enum XlApplicationInternational
255
+ xlLeftBracket = 10 # from enum XlApplicationInternational
256
+ xlListSeparator = 5 # from enum XlApplicationInternational
257
+ xlLowerCaseColumnLetter = 9 # from enum XlApplicationInternational
258
+ xlLowerCaseRowLetter = 8 # from enum XlApplicationInternational
259
+ xlMDY = 44 # from enum XlApplicationInternational
260
+ xlMetric = 35 # from enum XlApplicationInternational
261
+ xlMinuteCode = 23 # from enum XlApplicationInternational
262
+ xlMonthCode = 20 # from enum XlApplicationInternational
263
+ xlMonthLeadingZero = 41 # from enum XlApplicationInternational
264
+ xlMonthNameChars = 30 # from enum XlApplicationInternational
265
+ xlNonEnglishFunctions = 34 # from enum XlApplicationInternational
266
+ xlNoncurrencyDigits = 29 # from enum XlApplicationInternational
267
+ xlRightBrace = 13 # from enum XlApplicationInternational
268
+ xlRightBracket = 11 # from enum XlApplicationInternational
269
+ xlRowSeparator = 15 # from enum XlApplicationInternational
270
+ xlSecondCode = 24 # from enum XlApplicationInternational
271
+ xlThousandsSeparator = 4 # from enum XlApplicationInternational
272
+ xlTimeLeadingZero = 45 # from enum XlApplicationInternational
273
+ xlTimeSeparator = 18 # from enum XlApplicationInternational
274
+ xlUpperCaseColumnLetter = 7 # from enum XlApplicationInternational
275
+ xlUpperCaseRowLetter = 6 # from enum XlApplicationInternational
276
+ xlWeekdayNameChars = 31 # from enum XlApplicationInternational
277
+ xlYearCode = 19 # from enum XlApplicationInternational
278
+
279
+
280
+ class ApplyNamesOrder:
281
+ xlColumnThenRow = 2 # from enum XlApplyNamesOrder
282
+ xlRowThenColumn = 1 # from enum XlApplyNamesOrder
283
+
284
+
285
+ class ArabicModes:
286
+ xlArabicBothStrict = 3 # from enum XlArabicModes
287
+ xlArabicNone = 0 # from enum XlArabicModes
288
+ xlArabicStrictAlefHamza = 1 # from enum XlArabicModes
289
+ xlArabicStrictFinalYaa = 2 # from enum XlArabicModes
290
+
291
+
292
+ class ArrangeStyle:
293
+ xlArrangeStyleCascade = 7 # from enum XlArrangeStyle
294
+ xlArrangeStyleHorizontal = -4128 # from enum XlArrangeStyle
295
+ xlArrangeStyleTiled = 1 # from enum XlArrangeStyle
296
+ xlArrangeStyleVertical = -4166 # from enum XlArrangeStyle
297
+
298
+
299
+ class ArrowHeadLength:
300
+ xlArrowHeadLengthLong = 3 # from enum XlArrowHeadLength
301
+ xlArrowHeadLengthMedium = -4138 # from enum XlArrowHeadLength
302
+ xlArrowHeadLengthShort = 1 # from enum XlArrowHeadLength
303
+
304
+
305
+ class ArrowHeadStyle:
306
+ xlArrowHeadStyleClosed = 3 # from enum XlArrowHeadStyle
307
+ xlArrowHeadStyleDoubleClosed = 5 # from enum XlArrowHeadStyle
308
+ xlArrowHeadStyleDoubleOpen = 4 # from enum XlArrowHeadStyle
309
+ xlArrowHeadStyleNone = -4142 # from enum XlArrowHeadStyle
310
+ xlArrowHeadStyleOpen = 2 # from enum XlArrowHeadStyle
311
+
312
+
313
+ class ArrowHeadWidth:
314
+ xlArrowHeadWidthMedium = -4138 # from enum XlArrowHeadWidth
315
+ xlArrowHeadWidthNarrow = 1 # from enum XlArrowHeadWidth
316
+ xlArrowHeadWidthWide = 3 # from enum XlArrowHeadWidth
317
+
318
+
319
+ class AutoFillType:
320
+ xlFillCopy = 1 # from enum XlAutoFillType
321
+ xlFillDays = 5 # from enum XlAutoFillType
322
+ xlFillDefault = 0 # from enum XlAutoFillType
323
+ xlFillFormats = 3 # from enum XlAutoFillType
324
+ xlFillMonths = 7 # from enum XlAutoFillType
325
+ xlFillSeries = 2 # from enum XlAutoFillType
326
+ xlFillValues = 4 # from enum XlAutoFillType
327
+ xlFillWeekdays = 6 # from enum XlAutoFillType
328
+ xlFillYears = 8 # from enum XlAutoFillType
329
+ xlGrowthTrend = 10 # from enum XlAutoFillType
330
+ xlLinearTrend = 9 # from enum XlAutoFillType
331
+ xlFlashFill = 11 # from enum XlAutoFillType
332
+
333
+
334
+ class AutoFilterOperator:
335
+ xlAnd = 1 # from enum XlAutoFilterOperator
336
+ xlBottom10Items = 4 # from enum XlAutoFilterOperator
337
+ xlBottom10Percent = 6 # from enum XlAutoFilterOperator
338
+ xlFilterAutomaticFontColor = 13 # from enum XlAutoFilterOperator
339
+ xlFilterCellColor = 8 # from enum XlAutoFilterOperator
340
+ xlFilterDynamic = 11 # from enum XlAutoFilterOperator
341
+ xlFilterFontColor = 9 # from enum XlAutoFilterOperator
342
+ xlFilterIcon = 10 # from enum XlAutoFilterOperator
343
+ xlFilterNoFill = 12 # from enum XlAutoFilterOperator
344
+ xlFilterNoIcon = 14 # from enum XlAutoFilterOperator
345
+ xlFilterValues = 7 # from enum XlAutoFilterOperator
346
+ xlOr = 2 # from enum XlAutoFilterOperator
347
+ xlTop10Items = 3 # from enum XlAutoFilterOperator
348
+ xlTop10Percent = 5 # from enum XlAutoFilterOperator
349
+
350
+
351
+ class AxisCrosses:
352
+ xlAxisCrossesAutomatic = -4105 # from enum XlAxisCrosses
353
+ xlAxisCrossesCustom = -4114 # from enum XlAxisCrosses
354
+ xlAxisCrossesMaximum = 2 # from enum XlAxisCrosses
355
+ xlAxisCrossesMinimum = 4 # from enum XlAxisCrosses
356
+
357
+
358
+ class AxisGroup:
359
+ xlPrimary = 1 # from enum XlAxisGroup
360
+ xlSecondary = 2 # from enum XlAxisGroup
361
+
362
+
363
+ class AxisType:
364
+ xlCategory = 1 # from enum XlAxisType
365
+ xlSeriesAxis = 3 # from enum XlAxisType
366
+ xlValue = 2 # from enum XlAxisType
367
+
368
+
369
+ class Background:
370
+ xlBackgroundAutomatic = -4105 # from enum XlBackground
371
+ xlBackgroundOpaque = 3 # from enum XlBackground
372
+ xlBackgroundTransparent = 2 # from enum XlBackground
373
+
374
+
375
+ class BarShape:
376
+ xlBox = 0 # from enum XlBarShape
377
+ xlConeToMax = 5 # from enum XlBarShape
378
+ xlConeToPoint = 4 # from enum XlBarShape
379
+ xlCylinder = 3 # from enum XlBarShape
380
+ xlPyramidToMax = 2 # from enum XlBarShape
381
+ xlPyramidToPoint = 1 # from enum XlBarShape
382
+
383
+
384
+ class BorderWeight:
385
+ xlHairline = 1 # from enum XlBorderWeight
386
+ xlMedium = -4138 # from enum XlBorderWeight
387
+ xlThick = 4 # from enum XlBorderWeight
388
+ xlThin = 2 # from enum XlBorderWeight
389
+
390
+
391
+ class BordersIndex:
392
+ xlDiagonalDown = 5 # from enum XlBordersIndex
393
+ xlDiagonalUp = 6 # from enum XlBordersIndex
394
+ xlEdgeBottom = 9 # from enum XlBordersIndex
395
+ xlEdgeLeft = 7 # from enum XlBordersIndex
396
+ xlEdgeRight = 10 # from enum XlBordersIndex
397
+ xlEdgeTop = 8 # from enum XlBordersIndex
398
+ xlInsideHorizontal = 12 # from enum XlBordersIndex
399
+ xlInsideVertical = 11 # from enum XlBordersIndex
400
+
401
+
402
+ class BuiltInDialog:
403
+ _xlDialogChartSourceData = 541 # from enum XlBuiltInDialog
404
+ _xlDialogPhonetic = 538 # from enum XlBuiltInDialog
405
+ xlDialogActivate = 103 # from enum XlBuiltInDialog
406
+ xlDialogActiveCellFont = 476 # from enum XlBuiltInDialog
407
+ xlDialogAddChartAutoformat = 390 # from enum XlBuiltInDialog
408
+ xlDialogAddinManager = 321 # from enum XlBuiltInDialog
409
+ xlDialogAlignment = 43 # from enum XlBuiltInDialog
410
+ xlDialogAppMove = 170 # from enum XlBuiltInDialog
411
+ xlDialogAppSize = 171 # from enum XlBuiltInDialog
412
+ xlDialogApplyNames = 133 # from enum XlBuiltInDialog
413
+ xlDialogApplyStyle = 212 # from enum XlBuiltInDialog
414
+ xlDialogArrangeAll = 12 # from enum XlBuiltInDialog
415
+ xlDialogAssignToObject = 213 # from enum XlBuiltInDialog
416
+ xlDialogAssignToTool = 293 # from enum XlBuiltInDialog
417
+ xlDialogAttachText = 80 # from enum XlBuiltInDialog
418
+ xlDialogAttachToolbars = 323 # from enum XlBuiltInDialog
419
+ xlDialogAutoCorrect = 485 # from enum XlBuiltInDialog
420
+ xlDialogAxes = 78 # from enum XlBuiltInDialog
421
+ xlDialogBorder = 45 # from enum XlBuiltInDialog
422
+ xlDialogCalculation = 32 # from enum XlBuiltInDialog
423
+ xlDialogCellProtection = 46 # from enum XlBuiltInDialog
424
+ xlDialogChangeLink = 166 # from enum XlBuiltInDialog
425
+ xlDialogChartAddData = 392 # from enum XlBuiltInDialog
426
+ xlDialogChartLocation = 527 # from enum XlBuiltInDialog
427
+ xlDialogChartOptionsDataLabelMultiple = 724 # from enum XlBuiltInDialog
428
+ xlDialogChartOptionsDataLabels = 505 # from enum XlBuiltInDialog
429
+ xlDialogChartOptionsDataTable = 506 # from enum XlBuiltInDialog
430
+ xlDialogChartSourceData = 540 # from enum XlBuiltInDialog
431
+ xlDialogChartTrend = 350 # from enum XlBuiltInDialog
432
+ xlDialogChartType = 526 # from enum XlBuiltInDialog
433
+ xlDialogChartWizard = 288 # from enum XlBuiltInDialog
434
+ xlDialogCheckboxProperties = 435 # from enum XlBuiltInDialog
435
+ xlDialogClear = 52 # from enum XlBuiltInDialog
436
+ xlDialogColorPalette = 161 # from enum XlBuiltInDialog
437
+ xlDialogColumnWidth = 47 # from enum XlBuiltInDialog
438
+ xlDialogCombination = 73 # from enum XlBuiltInDialog
439
+ xlDialogConditionalFormatting = 583 # from enum XlBuiltInDialog
440
+ xlDialogConsolidate = 191 # from enum XlBuiltInDialog
441
+ xlDialogCopyChart = 147 # from enum XlBuiltInDialog
442
+ xlDialogCopyPicture = 108 # from enum XlBuiltInDialog
443
+ xlDialogCreateList = 796 # from enum XlBuiltInDialog
444
+ xlDialogCreateNames = 62 # from enum XlBuiltInDialog
445
+ xlDialogCreatePublisher = 217 # from enum XlBuiltInDialog
446
+ xlDialogCustomViews = 493 # from enum XlBuiltInDialog
447
+ xlDialogCustomizeToolbar = 276 # from enum XlBuiltInDialog
448
+ xlDialogDataDelete = 36 # from enum XlBuiltInDialog
449
+ xlDialogDataLabel = 379 # from enum XlBuiltInDialog
450
+ xlDialogDataLabelMultiple = 723 # from enum XlBuiltInDialog
451
+ xlDialogDataSeries = 40 # from enum XlBuiltInDialog
452
+ xlDialogDataValidation = 525 # from enum XlBuiltInDialog
453
+ xlDialogDefineName = 61 # from enum XlBuiltInDialog
454
+ xlDialogDefineStyle = 229 # from enum XlBuiltInDialog
455
+ xlDialogDeleteFormat = 111 # from enum XlBuiltInDialog
456
+ xlDialogDeleteName = 110 # from enum XlBuiltInDialog
457
+ xlDialogDemote = 203 # from enum XlBuiltInDialog
458
+ xlDialogDisplay = 27 # from enum XlBuiltInDialog
459
+ xlDialogDocumentInspector = 862 # from enum XlBuiltInDialog
460
+ xlDialogEditColor = 223 # from enum XlBuiltInDialog
461
+ xlDialogEditDelete = 54 # from enum XlBuiltInDialog
462
+ xlDialogEditSeries = 228 # from enum XlBuiltInDialog
463
+ xlDialogEditboxProperties = 438 # from enum XlBuiltInDialog
464
+ xlDialogEditionOptions = 251 # from enum XlBuiltInDialog
465
+ xlDialogErrorChecking = 732 # from enum XlBuiltInDialog
466
+ xlDialogErrorbarX = 463 # from enum XlBuiltInDialog
467
+ xlDialogErrorbarY = 464 # from enum XlBuiltInDialog
468
+ xlDialogEvaluateFormula = 709 # from enum XlBuiltInDialog
469
+ xlDialogExternalDataProperties = 530 # from enum XlBuiltInDialog
470
+ xlDialogExtract = 35 # from enum XlBuiltInDialog
471
+ xlDialogFileDelete = 6 # from enum XlBuiltInDialog
472
+ xlDialogFileSharing = 481 # from enum XlBuiltInDialog
473
+ xlDialogFillGroup = 200 # from enum XlBuiltInDialog
474
+ xlDialogFillWorkgroup = 301 # from enum XlBuiltInDialog
475
+ xlDialogFilter = 447 # from enum XlBuiltInDialog
476
+ xlDialogFilterAdvanced = 370 # from enum XlBuiltInDialog
477
+ xlDialogFindFile = 475 # from enum XlBuiltInDialog
478
+ xlDialogFont = 26 # from enum XlBuiltInDialog
479
+ xlDialogFontProperties = 381 # from enum XlBuiltInDialog
480
+ xlDialogFormatAuto = 269 # from enum XlBuiltInDialog
481
+ xlDialogFormatChart = 465 # from enum XlBuiltInDialog
482
+ xlDialogFormatCharttype = 423 # from enum XlBuiltInDialog
483
+ xlDialogFormatFont = 150 # from enum XlBuiltInDialog
484
+ xlDialogFormatLegend = 88 # from enum XlBuiltInDialog
485
+ xlDialogFormatMain = 225 # from enum XlBuiltInDialog
486
+ xlDialogFormatMove = 128 # from enum XlBuiltInDialog
487
+ xlDialogFormatNumber = 42 # from enum XlBuiltInDialog
488
+ xlDialogFormatOverlay = 226 # from enum XlBuiltInDialog
489
+ xlDialogFormatSize = 129 # from enum XlBuiltInDialog
490
+ xlDialogFormatText = 89 # from enum XlBuiltInDialog
491
+ xlDialogFormulaFind = 64 # from enum XlBuiltInDialog
492
+ xlDialogFormulaGoto = 63 # from enum XlBuiltInDialog
493
+ xlDialogFormulaReplace = 130 # from enum XlBuiltInDialog
494
+ xlDialogFunctionWizard = 450 # from enum XlBuiltInDialog
495
+ xlDialogGallery3dArea = 193 # from enum XlBuiltInDialog
496
+ xlDialogGallery3dBar = 272 # from enum XlBuiltInDialog
497
+ xlDialogGallery3dColumn = 194 # from enum XlBuiltInDialog
498
+ xlDialogGallery3dLine = 195 # from enum XlBuiltInDialog
499
+ xlDialogGallery3dPie = 196 # from enum XlBuiltInDialog
500
+ xlDialogGallery3dSurface = 273 # from enum XlBuiltInDialog
501
+ xlDialogGalleryArea = 67 # from enum XlBuiltInDialog
502
+ xlDialogGalleryBar = 68 # from enum XlBuiltInDialog
503
+ xlDialogGalleryColumn = 69 # from enum XlBuiltInDialog
504
+ xlDialogGalleryCustom = 388 # from enum XlBuiltInDialog
505
+ xlDialogGalleryDoughnut = 344 # from enum XlBuiltInDialog
506
+ xlDialogGalleryLine = 70 # from enum XlBuiltInDialog
507
+ xlDialogGalleryPie = 71 # from enum XlBuiltInDialog
508
+ xlDialogGalleryRadar = 249 # from enum XlBuiltInDialog
509
+ xlDialogGalleryScatter = 72 # from enum XlBuiltInDialog
510
+ xlDialogGoalSeek = 198 # from enum XlBuiltInDialog
511
+ xlDialogGridlines = 76 # from enum XlBuiltInDialog
512
+ xlDialogImportTextFile = 666 # from enum XlBuiltInDialog
513
+ xlDialogInsert = 55 # from enum XlBuiltInDialog
514
+ xlDialogInsertHyperlink = 596 # from enum XlBuiltInDialog
515
+ xlDialogInsertNameLabel = 496 # from enum XlBuiltInDialog
516
+ xlDialogInsertObject = 259 # from enum XlBuiltInDialog
517
+ xlDialogInsertPicture = 342 # from enum XlBuiltInDialog
518
+ xlDialogInsertTitle = 380 # from enum XlBuiltInDialog
519
+ xlDialogLabelProperties = 436 # from enum XlBuiltInDialog
520
+ xlDialogListboxProperties = 437 # from enum XlBuiltInDialog
521
+ xlDialogMacroOptions = 382 # from enum XlBuiltInDialog
522
+ xlDialogMailEditMailer = 470 # from enum XlBuiltInDialog
523
+ xlDialogMailLogon = 339 # from enum XlBuiltInDialog
524
+ xlDialogMailNextLetter = 378 # from enum XlBuiltInDialog
525
+ xlDialogMainChart = 85 # from enum XlBuiltInDialog
526
+ xlDialogMainChartType = 185 # from enum XlBuiltInDialog
527
+ xlDialogMenuEditor = 322 # from enum XlBuiltInDialog
528
+ xlDialogMove = 262 # from enum XlBuiltInDialog
529
+ xlDialogMyPermission = 834 # from enum XlBuiltInDialog
530
+ xlDialogNameManager = 977 # from enum XlBuiltInDialog
531
+ xlDialogNew = 119 # from enum XlBuiltInDialog
532
+ xlDialogNewName = 978 # from enum XlBuiltInDialog
533
+ xlDialogNewWebQuery = 667 # from enum XlBuiltInDialog
534
+ xlDialogNote = 154 # from enum XlBuiltInDialog
535
+ xlDialogObjectProperties = 207 # from enum XlBuiltInDialog
536
+ xlDialogObjectProtection = 214 # from enum XlBuiltInDialog
537
+ xlDialogOpen = 1 # from enum XlBuiltInDialog
538
+ xlDialogOpenLinks = 2 # from enum XlBuiltInDialog
539
+ xlDialogOpenMail = 188 # from enum XlBuiltInDialog
540
+ xlDialogOpenText = 441 # from enum XlBuiltInDialog
541
+ xlDialogOptionsCalculation = 318 # from enum XlBuiltInDialog
542
+ xlDialogOptionsChart = 325 # from enum XlBuiltInDialog
543
+ xlDialogOptionsEdit = 319 # from enum XlBuiltInDialog
544
+ xlDialogOptionsGeneral = 356 # from enum XlBuiltInDialog
545
+ xlDialogOptionsListsAdd = 458 # from enum XlBuiltInDialog
546
+ xlDialogOptionsME = 647 # from enum XlBuiltInDialog
547
+ xlDialogOptionsTransition = 355 # from enum XlBuiltInDialog
548
+ xlDialogOptionsView = 320 # from enum XlBuiltInDialog
549
+ xlDialogOutline = 142 # from enum XlBuiltInDialog
550
+ xlDialogOverlay = 86 # from enum XlBuiltInDialog
551
+ xlDialogOverlayChartType = 186 # from enum XlBuiltInDialog
552
+ xlDialogPageSetup = 7 # from enum XlBuiltInDialog
553
+ xlDialogParse = 91 # from enum XlBuiltInDialog
554
+ xlDialogPasteNames = 58 # from enum XlBuiltInDialog
555
+ xlDialogPasteSpecial = 53 # from enum XlBuiltInDialog
556
+ xlDialogPatterns = 84 # from enum XlBuiltInDialog
557
+ xlDialogPermission = 832 # from enum XlBuiltInDialog
558
+ xlDialogPhonetic = 656 # from enum XlBuiltInDialog
559
+ xlDialogPivotCalculatedField = 570 # from enum XlBuiltInDialog
560
+ xlDialogPivotCalculatedItem = 572 # from enum XlBuiltInDialog
561
+ xlDialogPivotClientServerSet = 689 # from enum XlBuiltInDialog
562
+ xlDialogPivotFieldGroup = 433 # from enum XlBuiltInDialog
563
+ xlDialogPivotFieldProperties = 313 # from enum XlBuiltInDialog
564
+ xlDialogPivotFieldUngroup = 434 # from enum XlBuiltInDialog
565
+ xlDialogPivotShowPages = 421 # from enum XlBuiltInDialog
566
+ xlDialogPivotSolveOrder = 568 # from enum XlBuiltInDialog
567
+ xlDialogPivotTableOptions = 567 # from enum XlBuiltInDialog
568
+ xlDialogPivotTableSlicerConnections = 1183 # from enum XlBuiltInDialog
569
+ xlDialogPivotTableWhatIfAnalysisSettings = 1153 # from enum XlBuiltInDialog
570
+ xlDialogPivotTableWizard = 312 # from enum XlBuiltInDialog
571
+ xlDialogPlacement = 300 # from enum XlBuiltInDialog
572
+ xlDialogPrint = 8 # from enum XlBuiltInDialog
573
+ xlDialogPrintPreview = 222 # from enum XlBuiltInDialog
574
+ xlDialogPrinterSetup = 9 # from enum XlBuiltInDialog
575
+ xlDialogPromote = 202 # from enum XlBuiltInDialog
576
+ xlDialogProperties = 474 # from enum XlBuiltInDialog
577
+ xlDialogPropertyFields = 754 # from enum XlBuiltInDialog
578
+ xlDialogProtectDocument = 28 # from enum XlBuiltInDialog
579
+ xlDialogProtectSharing = 620 # from enum XlBuiltInDialog
580
+ xlDialogPublishAsWebPage = 653 # from enum XlBuiltInDialog
581
+ xlDialogPushbuttonProperties = 445 # from enum XlBuiltInDialog
582
+ xlDialogReplaceFont = 134 # from enum XlBuiltInDialog
583
+ xlDialogRoutingSlip = 336 # from enum XlBuiltInDialog
584
+ xlDialogRowHeight = 127 # from enum XlBuiltInDialog
585
+ xlDialogRun = 17 # from enum XlBuiltInDialog
586
+ xlDialogSaveAs = 5 # from enum XlBuiltInDialog
587
+ xlDialogSaveCopyAs = 456 # from enum XlBuiltInDialog
588
+ xlDialogSaveNewObject = 208 # from enum XlBuiltInDialog
589
+ xlDialogSaveWorkbook = 145 # from enum XlBuiltInDialog
590
+ xlDialogSaveWorkspace = 285 # from enum XlBuiltInDialog
591
+ xlDialogScale = 87 # from enum XlBuiltInDialog
592
+ xlDialogScenarioAdd = 307 # from enum XlBuiltInDialog
593
+ xlDialogScenarioCells = 305 # from enum XlBuiltInDialog
594
+ xlDialogScenarioEdit = 308 # from enum XlBuiltInDialog
595
+ xlDialogScenarioMerge = 473 # from enum XlBuiltInDialog
596
+ xlDialogScenarioSummary = 311 # from enum XlBuiltInDialog
597
+ xlDialogScrollbarProperties = 420 # from enum XlBuiltInDialog
598
+ xlDialogSearch = 731 # from enum XlBuiltInDialog
599
+ xlDialogSelectSpecial = 132 # from enum XlBuiltInDialog
600
+ xlDialogSendMail = 189 # from enum XlBuiltInDialog
601
+ xlDialogSeriesAxes = 460 # from enum XlBuiltInDialog
602
+ xlDialogSeriesOptions = 557 # from enum XlBuiltInDialog
603
+ xlDialogSeriesOrder = 466 # from enum XlBuiltInDialog
604
+ xlDialogSeriesShape = 504 # from enum XlBuiltInDialog
605
+ xlDialogSeriesX = 461 # from enum XlBuiltInDialog
606
+ xlDialogSeriesY = 462 # from enum XlBuiltInDialog
607
+ xlDialogSetBackgroundPicture = 509 # from enum XlBuiltInDialog
608
+ xlDialogSetMDXEditor = 1208 # from enum XlBuiltInDialog
609
+ xlDialogSetManager = 1109 # from enum XlBuiltInDialog
610
+ xlDialogSetPrintTitles = 23 # from enum XlBuiltInDialog
611
+ xlDialogSetTupleEditorOnColumns = 1108 # from enum XlBuiltInDialog
612
+ xlDialogSetTupleEditorOnRows = 1107 # from enum XlBuiltInDialog
613
+ xlDialogSetUpdateStatus = 159 # from enum XlBuiltInDialog
614
+ xlDialogShowDetail = 204 # from enum XlBuiltInDialog
615
+ xlDialogShowToolbar = 220 # from enum XlBuiltInDialog
616
+ xlDialogSize = 261 # from enum XlBuiltInDialog
617
+ xlDialogSlicerCreation = 1182 # from enum XlBuiltInDialog
618
+ xlDialogSlicerPivotTableConnections = 1184 # from enum XlBuiltInDialog
619
+ xlDialogSlicerSettings = 1179 # from enum XlBuiltInDialog
620
+ xlDialogSort = 39 # from enum XlBuiltInDialog
621
+ xlDialogSortSpecial = 192 # from enum XlBuiltInDialog
622
+ xlDialogSparklineInsertColumn = 1134 # from enum XlBuiltInDialog
623
+ xlDialogSparklineInsertLine = 1133 # from enum XlBuiltInDialog
624
+ xlDialogSparklineInsertWinLoss = 1135 # from enum XlBuiltInDialog
625
+ xlDialogSplit = 137 # from enum XlBuiltInDialog
626
+ xlDialogStandardFont = 190 # from enum XlBuiltInDialog
627
+ xlDialogStandardWidth = 472 # from enum XlBuiltInDialog
628
+ xlDialogStyle = 44 # from enum XlBuiltInDialog
629
+ xlDialogSubscribeTo = 218 # from enum XlBuiltInDialog
630
+ xlDialogSubtotalCreate = 398 # from enum XlBuiltInDialog
631
+ xlDialogSummaryInfo = 474 # from enum XlBuiltInDialog
632
+ xlDialogTabOrder = 394 # from enum XlBuiltInDialog
633
+ xlDialogTable = 41 # from enum XlBuiltInDialog
634
+ xlDialogTextToColumns = 422 # from enum XlBuiltInDialog
635
+ xlDialogUnhide = 94 # from enum XlBuiltInDialog
636
+ xlDialogUpdateLink = 201 # from enum XlBuiltInDialog
637
+ xlDialogVbaInsertFile = 328 # from enum XlBuiltInDialog
638
+ xlDialogVbaMakeAddin = 478 # from enum XlBuiltInDialog
639
+ xlDialogVbaProcedureDefinition = 330 # from enum XlBuiltInDialog
640
+ xlDialogView3d = 197 # from enum XlBuiltInDialog
641
+ xlDialogWebOptionsBrowsers = 773 # from enum XlBuiltInDialog
642
+ xlDialogWebOptionsEncoding = 686 # from enum XlBuiltInDialog
643
+ xlDialogWebOptionsFiles = 684 # from enum XlBuiltInDialog
644
+ xlDialogWebOptionsFonts = 687 # from enum XlBuiltInDialog
645
+ xlDialogWebOptionsGeneral = 683 # from enum XlBuiltInDialog
646
+ xlDialogWebOptionsPictures = 685 # from enum XlBuiltInDialog
647
+ xlDialogWindowMove = 14 # from enum XlBuiltInDialog
648
+ xlDialogWindowSize = 13 # from enum XlBuiltInDialog
649
+ xlDialogWorkbookAdd = 281 # from enum XlBuiltInDialog
650
+ xlDialogWorkbookCopy = 283 # from enum XlBuiltInDialog
651
+ xlDialogWorkbookInsert = 354 # from enum XlBuiltInDialog
652
+ xlDialogWorkbookMove = 282 # from enum XlBuiltInDialog
653
+ xlDialogWorkbookName = 386 # from enum XlBuiltInDialog
654
+ xlDialogWorkbookNew = 302 # from enum XlBuiltInDialog
655
+ xlDialogWorkbookOptions = 284 # from enum XlBuiltInDialog
656
+ xlDialogWorkbookProtect = 417 # from enum XlBuiltInDialog
657
+ xlDialogWorkbookTabSplit = 415 # from enum XlBuiltInDialog
658
+ xlDialogWorkbookUnhide = 384 # from enum XlBuiltInDialog
659
+ xlDialogWorkgroup = 199 # from enum XlBuiltInDialog
660
+ xlDialogWorkspace = 95 # from enum XlBuiltInDialog
661
+ xlDialogZoom = 256 # from enum XlBuiltInDialog
662
+
663
+
664
+ class CVError:
665
+ xlErrDiv0 = 2007 # from enum XlCVError
666
+ xlErrNA = 2042 # from enum XlCVError
667
+ xlErrName = 2029 # from enum XlCVError
668
+ xlErrNull = 2000 # from enum XlCVError
669
+ xlErrNum = 2036 # from enum XlCVError
670
+ xlErrRef = 2023 # from enum XlCVError
671
+ xlErrValue = 2015 # from enum XlCVError
672
+
673
+
674
+ class CalcFor:
675
+ xlAllValues = 0 # from enum XlCalcFor
676
+ xlColGroups = 2 # from enum XlCalcFor
677
+ xlRowGroups = 1 # from enum XlCalcFor
678
+
679
+
680
+ class CalculatedMemberType:
681
+ xlCalculatedMember = 0 # from enum XlCalculatedMemberType
682
+ xlCalculatedSet = 1 # from enum XlCalculatedMemberType
683
+
684
+
685
+ class Calculation:
686
+ xlCalculationAutomatic = -4105 # from enum XlCalculation
687
+ xlCalculationManual = -4135 # from enum XlCalculation
688
+ xlCalculationSemiautomatic = 2 # from enum XlCalculation
689
+
690
+
691
+ calculations = ("automatic", "manual", "semiautomatic")
692
+
693
+
694
+ class CalculationInterruptKey:
695
+ xlAnyKey = 2 # from enum XlCalculationInterruptKey
696
+ xlEscKey = 1 # from enum XlCalculationInterruptKey
697
+ xlNoKey = 0 # from enum XlCalculationInterruptKey
698
+
699
+
700
+ class CalculationState:
701
+ xlCalculating = 1 # from enum XlCalculationState
702
+ xlDone = 0 # from enum XlCalculationState
703
+ xlPending = 2 # from enum XlCalculationState
704
+
705
+
706
+ class CategoryType:
707
+ xlAutomaticScale = -4105 # from enum XlCategoryType
708
+ xlCategoryScale = 2 # from enum XlCategoryType
709
+ xlTimeScale = 3 # from enum XlCategoryType
710
+
711
+
712
+ class CellChangedState:
713
+ xlCellChangeApplied = 3 # from enum XlCellChangedState
714
+ xlCellChanged = 2 # from enum XlCellChangedState
715
+ xlCellNotChanged = 1 # from enum XlCellChangedState
716
+
717
+
718
+ class CellInsertionMode:
719
+ xlInsertDeleteCells = 1 # from enum XlCellInsertionMode
720
+ xlInsertEntireRows = 2 # from enum XlCellInsertionMode
721
+ xlOverwriteCells = 0 # from enum XlCellInsertionMode
722
+
723
+
724
+ class CellType:
725
+ xlCellTypeAllFormatConditions = -4172 # from enum XlCellType
726
+ xlCellTypeAllValidation = -4174 # from enum XlCellType
727
+ xlCellTypeBlanks = 4 # from enum XlCellType
728
+ xlCellTypeComments = -4144 # from enum XlCellType
729
+ xlCellTypeConstants = 2 # from enum XlCellType
730
+ xlCellTypeFormulas = -4123 # from enum XlCellType
731
+ xlCellTypeLastCell = 11 # from enum XlCellType
732
+ xlCellTypeSameFormatConditions = -4173 # from enum XlCellType
733
+ xlCellTypeSameValidation = -4175 # from enum XlCellType
734
+ xlCellTypeVisible = 12 # from enum XlCellType
735
+
736
+
737
+ class ChartElementPosition:
738
+ xlChartElementPositionAutomatic = -4105 # from enum XlChartElementPosition
739
+ xlChartElementPositionCustom = -4114 # from enum XlChartElementPosition
740
+
741
+
742
+ class ChartGallery:
743
+ xlAnyGallery = 23 # from enum XlChartGallery
744
+ xlBuiltIn = 21 # from enum XlChartGallery
745
+ xlUserDefined = 22 # from enum XlChartGallery
746
+
747
+
748
+ class ChartItem:
749
+ xlAxis = 21 # from enum XlChartItem
750
+ xlAxisTitle = 17 # from enum XlChartItem
751
+ xlChartArea = 2 # from enum XlChartItem
752
+ xlChartTitle = 4 # from enum XlChartItem
753
+ xlCorners = 6 # from enum XlChartItem
754
+ xlDataLabel = 0 # from enum XlChartItem
755
+ xlDataTable = 7 # from enum XlChartItem
756
+ xlDisplayUnitLabel = 30 # from enum XlChartItem
757
+ xlDownBars = 20 # from enum XlChartItem
758
+ xlDropLines = 26 # from enum XlChartItem
759
+ xlErrorBars = 9 # from enum XlChartItem
760
+ xlFloor = 23 # from enum XlChartItem
761
+ xlHiLoLines = 25 # from enum XlChartItem
762
+ xlLeaderLines = 29 # from enum XlChartItem
763
+ xlLegend = 24 # from enum XlChartItem
764
+ xlLegendEntry = 12 # from enum XlChartItem
765
+ xlLegendKey = 13 # from enum XlChartItem
766
+ xlMajorGridlines = 15 # from enum XlChartItem
767
+ xlMinorGridlines = 16 # from enum XlChartItem
768
+ xlNothing = 28 # from enum XlChartItem
769
+ xlPivotChartDropZone = 32 # from enum XlChartItem
770
+ xlPivotChartFieldButton = 31 # from enum XlChartItem
771
+ xlPlotArea = 19 # from enum XlChartItem
772
+ xlRadarAxisLabels = 27 # from enum XlChartItem
773
+ xlSeries = 3 # from enum XlChartItem
774
+ xlSeriesLines = 22 # from enum XlChartItem
775
+ xlShape = 14 # from enum XlChartItem
776
+ xlTrendline = 8 # from enum XlChartItem
777
+ xlUpBars = 18 # from enum XlChartItem
778
+ xlWalls = 5 # from enum XlChartItem
779
+ xlXErrorBars = 10 # from enum XlChartItem
780
+ xlYErrorBars = 11 # from enum XlChartItem
781
+
782
+
783
+ class ChartLocation:
784
+ xlLocationAsNewSheet = 1 # from enum XlChartLocation
785
+ xlLocationAsObject = 2 # from enum XlChartLocation
786
+ xlLocationAutomatic = 3 # from enum XlChartLocation
787
+
788
+
789
+ class ChartPicturePlacement:
790
+ xlAllFaces = 7 # from enum XlChartPicturePlacement
791
+ xlEnd = 2 # from enum XlChartPicturePlacement
792
+ xlEndSides = 3 # from enum XlChartPicturePlacement
793
+ xlFront = 4 # from enum XlChartPicturePlacement
794
+ xlFrontEnd = 6 # from enum XlChartPicturePlacement
795
+ xlFrontSides = 5 # from enum XlChartPicturePlacement
796
+ xlSides = 1 # from enum XlChartPicturePlacement
797
+
798
+
799
+ class ChartPictureType:
800
+ xlStack = 2 # from enum XlChartPictureType
801
+ xlStackScale = 3 # from enum XlChartPictureType
802
+ xlStretch = 1 # from enum XlChartPictureType
803
+
804
+
805
+ class ChartSplitType:
806
+ xlSplitByCustomSplit = 4 # from enum XlChartSplitType
807
+ xlSplitByPercentValue = 3 # from enum XlChartSplitType
808
+ xlSplitByPosition = 1 # from enum XlChartSplitType
809
+ xlSplitByValue = 2 # from enum XlChartSplitType
810
+
811
+
812
+ class ChartType:
813
+ xl3DArea = -4098 # from enum XlChartType
814
+ xl3DAreaStacked = 78 # from enum XlChartType
815
+ xl3DAreaStacked100 = 79 # from enum XlChartType
816
+ xl3DBarClustered = 60 # from enum XlChartType
817
+ xl3DBarStacked = 61 # from enum XlChartType
818
+ xl3DBarStacked100 = 62 # from enum XlChartType
819
+ xl3DColumn = -4100 # from enum XlChartType
820
+ xl3DColumnClustered = 54 # from enum XlChartType
821
+ xl3DColumnStacked = 55 # from enum XlChartType
822
+ xl3DColumnStacked100 = 56 # from enum XlChartType
823
+ xl3DLine = -4101 # from enum XlChartType
824
+ xl3DPie = -4102 # from enum XlChartType
825
+ xl3DPieExploded = 70 # from enum XlChartType
826
+ xlArea = 1 # from enum XlChartType
827
+ xlAreaStacked = 76 # from enum XlChartType
828
+ xlAreaStacked100 = 77 # from enum XlChartType
829
+ xlBarClustered = 57 # from enum XlChartType
830
+ xlBarOfPie = 71 # from enum XlChartType
831
+ xlBarStacked = 58 # from enum XlChartType
832
+ xlBarStacked100 = 59 # from enum XlChartType
833
+ xlBubble = 15 # from enum XlChartType
834
+ xlBubble3DEffect = 87 # from enum XlChartType
835
+ xlColumnClustered = 51 # from enum XlChartType
836
+ xlColumnStacked = 52 # from enum XlChartType
837
+ xlColumnStacked100 = 53 # from enum XlChartType
838
+ xlConeBarClustered = 102 # from enum XlChartType
839
+ xlConeBarStacked = 103 # from enum XlChartType
840
+ xlConeBarStacked100 = 104 # from enum XlChartType
841
+ xlConeCol = 105 # from enum XlChartType
842
+ xlConeColClustered = 99 # from enum XlChartType
843
+ xlConeColStacked = 100 # from enum XlChartType
844
+ xlConeColStacked100 = 101 # from enum XlChartType
845
+ xlCylinderBarClustered = 95 # from enum XlChartType
846
+ xlCylinderBarStacked = 96 # from enum XlChartType
847
+ xlCylinderBarStacked100 = 97 # from enum XlChartType
848
+ xlCylinderCol = 98 # from enum XlChartType
849
+ xlCylinderColClustered = 92 # from enum XlChartType
850
+ xlCylinderColStacked = 93 # from enum XlChartType
851
+ xlCylinderColStacked100 = 94 # from enum XlChartType
852
+ xlDoughnut = -4120 # from enum XlChartType
853
+ xlDoughnutExploded = 80 # from enum XlChartType
854
+ xlLine = 4 # from enum XlChartType
855
+ xlLineMarkers = 65 # from enum XlChartType
856
+ xlLineMarkersStacked = 66 # from enum XlChartType
857
+ xlLineMarkersStacked100 = 67 # from enum XlChartType
858
+ xlLineStacked = 63 # from enum XlChartType
859
+ xlLineStacked100 = 64 # from enum XlChartType
860
+ xlPie = 5 # from enum XlChartType
861
+ xlPieExploded = 69 # from enum XlChartType
862
+ xlPieOfPie = 68 # from enum XlChartType
863
+ xlPyramidBarClustered = 109 # from enum XlChartType
864
+ xlPyramidBarStacked = 110 # from enum XlChartType
865
+ xlPyramidBarStacked100 = 111 # from enum XlChartType
866
+ xlPyramidCol = 112 # from enum XlChartType
867
+ xlPyramidColClustered = 106 # from enum XlChartType
868
+ xlPyramidColStacked = 107 # from enum XlChartType
869
+ xlPyramidColStacked100 = 108 # from enum XlChartType
870
+ xlRadar = -4151 # from enum XlChartType
871
+ xlRadarFilled = 82 # from enum XlChartType
872
+ xlRadarMarkers = 81 # from enum XlChartType
873
+ xlStockHLC = 88 # from enum XlChartType
874
+ xlStockOHLC = 89 # from enum XlChartType
875
+ xlStockVHLC = 90 # from enum XlChartType
876
+ xlStockVOHLC = 91 # from enum XlChartType
877
+ xlSurface = 83 # from enum XlChartType
878
+ xlSurfaceTopView = 85 # from enum XlChartType
879
+ xlSurfaceTopViewWireframe = 86 # from enum XlChartType
880
+ xlSurfaceWireframe = 84 # from enum XlChartType
881
+ xlXYScatter = -4169 # from enum XlChartType
882
+ xlXYScatterLines = 74 # from enum XlChartType
883
+ xlXYScatterLinesNoMarkers = 75 # from enum XlChartType
884
+ xlXYScatterSmooth = 72 # from enum XlChartType
885
+ xlXYScatterSmoothNoMarkers = 73 # from enum XlChartType
886
+
887
+
888
+ chart_types = (
889
+ "3d_area",
890
+ "3d_area_stacked",
891
+ "3d_area_stacked_100",
892
+ "3d_bar_clustered",
893
+ "3d_bar_stacked",
894
+ "3d_bar_stacked_100",
895
+ "3d_column",
896
+ "3d_column_clustered",
897
+ "3d_column_stacked",
898
+ "3d_column_stacked_100",
899
+ "3d_line",
900
+ "3d_pie",
901
+ "3d_pie_exploded",
902
+ "area",
903
+ "area_stacked",
904
+ "area_stacked_100",
905
+ "bar_clustered",
906
+ "bar_of_pie",
907
+ "bar_stacked",
908
+ "bar_stacked_100",
909
+ "bubble",
910
+ "bubble_3d_effect",
911
+ "column_clustered",
912
+ "column_stacked",
913
+ "column_stacked_100",
914
+ "combination",
915
+ "cone_bar_clustered",
916
+ "cone_bar_stacked",
917
+ "cone_bar_stacked_100",
918
+ "cone_col",
919
+ "cone_col_clustered",
920
+ "cone_col_stacked",
921
+ "cone_col_stacked_100",
922
+ "cylinder_bar_clustered",
923
+ "cylinder_bar_stacked",
924
+ "cylinder_bar_stacked_100",
925
+ "cylinder_col",
926
+ "cylinder_col_clustered",
927
+ "cylinder_col_stacked",
928
+ "cylinder_col_stacked_100",
929
+ "doughnut",
930
+ "doughnut_exploded",
931
+ "line",
932
+ "line_markers",
933
+ "line_markers_stacked",
934
+ "line_markers_stacked_100",
935
+ "line_stacked",
936
+ "line_stacked_100",
937
+ "pie",
938
+ "pie_exploded",
939
+ "pie_of_pie",
940
+ "pyramid_bar_clustered",
941
+ "pyramid_bar_stacked",
942
+ "pyramid_bar_stacked_100",
943
+ "pyramid_col",
944
+ "pyramid_col_clustered",
945
+ "pyramid_col_stacked",
946
+ "pyramid_col_stacked_100",
947
+ "radar",
948
+ "radar_filled",
949
+ "radar_markers",
950
+ "stock_hlc",
951
+ "stock_ohlc",
952
+ "stock_vhlc",
953
+ "stock_vohlc",
954
+ "surface",
955
+ "surface_top_view",
956
+ "surface_top_view_wireframe",
957
+ "surface_wireframe",
958
+ "xy_scatter",
959
+ "xy_scatter_lines",
960
+ "xy_scatter_lines_no_markers",
961
+ "xy_scatter_smooth",
962
+ "xy_scatter_smooth_no_markers",
963
+ )
964
+
965
+
966
+ class CheckInVersionType:
967
+ xlCheckInMajorVersion = 1 # from enum XlCheckInVersionType
968
+ xlCheckInMinorVersion = 0 # from enum XlCheckInVersionType
969
+ xlCheckInOverwriteVersion = 2 # from enum XlCheckInVersionType
970
+
971
+
972
+ class ClipboardFormat:
973
+ xlClipboardFormatBIFF = 8 # from enum XlClipboardFormat
974
+ xlClipboardFormatBIFF12 = 63 # from enum XlClipboardFormat
975
+ xlClipboardFormatBIFF2 = 18 # from enum XlClipboardFormat
976
+ xlClipboardFormatBIFF3 = 20 # from enum XlClipboardFormat
977
+ xlClipboardFormatBIFF4 = 30 # from enum XlClipboardFormat
978
+ xlClipboardFormatBinary = 15 # from enum XlClipboardFormat
979
+ xlClipboardFormatBitmap = 9 # from enum XlClipboardFormat
980
+ xlClipboardFormatCGM = 13 # from enum XlClipboardFormat
981
+ xlClipboardFormatCSV = 5 # from enum XlClipboardFormat
982
+ xlClipboardFormatDIF = 4 # from enum XlClipboardFormat
983
+ xlClipboardFormatDspText = 12 # from enum XlClipboardFormat
984
+ xlClipboardFormatEmbedSource = 22 # from enum XlClipboardFormat
985
+ xlClipboardFormatEmbeddedObject = 21 # from enum XlClipboardFormat
986
+ xlClipboardFormatLink = 11 # from enum XlClipboardFormat
987
+ xlClipboardFormatLinkSource = 23 # from enum XlClipboardFormat
988
+ xlClipboardFormatLinkSourceDesc = 32 # from enum XlClipboardFormat
989
+ xlClipboardFormatMovie = 24 # from enum XlClipboardFormat
990
+ xlClipboardFormatNative = 14 # from enum XlClipboardFormat
991
+ xlClipboardFormatObjectDesc = 31 # from enum XlClipboardFormat
992
+ xlClipboardFormatObjectLink = 19 # from enum XlClipboardFormat
993
+ xlClipboardFormatOwnerLink = 17 # from enum XlClipboardFormat
994
+ xlClipboardFormatPICT = 2 # from enum XlClipboardFormat
995
+ xlClipboardFormatPrintPICT = 3 # from enum XlClipboardFormat
996
+ xlClipboardFormatRTF = 7 # from enum XlClipboardFormat
997
+ xlClipboardFormatSYLK = 6 # from enum XlClipboardFormat
998
+ xlClipboardFormatScreenPICT = 29 # from enum XlClipboardFormat
999
+ xlClipboardFormatStandardFont = 28 # from enum XlClipboardFormat
1000
+ xlClipboardFormatStandardScale = 27 # from enum XlClipboardFormat
1001
+ xlClipboardFormatTable = 16 # from enum XlClipboardFormat
1002
+ xlClipboardFormatText = 0 # from enum XlClipboardFormat
1003
+ xlClipboardFormatToolFace = 25 # from enum XlClipboardFormat
1004
+ xlClipboardFormatToolFacePICT = 26 # from enum XlClipboardFormat
1005
+ xlClipboardFormatVALU = 1 # from enum XlClipboardFormat
1006
+ xlClipboardFormatWK1 = 10 # from enum XlClipboardFormat
1007
+
1008
+
1009
+ class CmdType:
1010
+ xlCmdCube = 1 # from enum XlCmdType
1011
+ xlCmdDefault = 4 # from enum XlCmdType
1012
+ xlCmdList = 5 # from enum XlCmdType
1013
+ xlCmdSql = 2 # from enum XlCmdType
1014
+ xlCmdTable = 3 # from enum XlCmdType
1015
+
1016
+
1017
+ class ColorIndex:
1018
+ xlColorIndexAutomatic = -4105 # from enum XlColorIndex
1019
+ xlColorIndexNone = -4142 # from enum XlColorIndex
1020
+
1021
+
1022
+ class ColumnDataType:
1023
+ xlDMYFormat = 4 # from enum XlColumnDataType
1024
+ xlDYMFormat = 7 # from enum XlColumnDataType
1025
+ xlEMDFormat = 10 # from enum XlColumnDataType
1026
+ xlGeneralFormat = 1 # from enum XlColumnDataType
1027
+ xlMDYFormat = 3 # from enum XlColumnDataType
1028
+ xlMYDFormat = 6 # from enum XlColumnDataType
1029
+ xlSkipColumn = 9 # from enum XlColumnDataType
1030
+ xlTextFormat = 2 # from enum XlColumnDataType
1031
+ xlYDMFormat = 8 # from enum XlColumnDataType
1032
+ xlYMDFormat = 5 # from enum XlColumnDataType
1033
+
1034
+
1035
+ class CommandUnderlines:
1036
+ xlCommandUnderlinesAutomatic = -4105 # from enum XlCommandUnderlines
1037
+ xlCommandUnderlinesOff = -4146 # from enum XlCommandUnderlines
1038
+ xlCommandUnderlinesOn = 1 # from enum XlCommandUnderlines
1039
+
1040
+
1041
+ class CommentDisplayMode:
1042
+ xlCommentAndIndicator = 1 # from enum XlCommentDisplayMode
1043
+ xlCommentIndicatorOnly = -1 # from enum XlCommentDisplayMode
1044
+ xlNoIndicator = 0 # from enum XlCommentDisplayMode
1045
+
1046
+
1047
+ class ConditionValueTypes:
1048
+ xlConditionValueAutomaticMax = 7 # from enum XlConditionValueTypes
1049
+ xlConditionValueAutomaticMin = 6 # from enum XlConditionValueTypes
1050
+ xlConditionValueFormula = 4 # from enum XlConditionValueTypes
1051
+ xlConditionValueHighestValue = 2 # from enum XlConditionValueTypes
1052
+ xlConditionValueLowestValue = 1 # from enum XlConditionValueTypes
1053
+ xlConditionValueNone = -1 # from enum XlConditionValueTypes
1054
+ xlConditionValueNumber = 0 # from enum XlConditionValueTypes
1055
+ xlConditionValuePercent = 3 # from enum XlConditionValueTypes
1056
+ xlConditionValuePercentile = 5 # from enum XlConditionValueTypes
1057
+
1058
+
1059
+ class ConnectionType:
1060
+ xlConnectionTypeODBC = 2 # from enum XlConnectionType
1061
+ xlConnectionTypeOLEDB = 1 # from enum XlConnectionType
1062
+ xlConnectionTypeTEXT = 4 # from enum XlConnectionType
1063
+ xlConnectionTypeWEB = 5 # from enum XlConnectionType
1064
+ xlConnectionTypeXMLMAP = 3 # from enum XlConnectionType
1065
+
1066
+
1067
+ class ConsolidationFunction:
1068
+ xlAverage = -4106 # from enum XlConsolidationFunction
1069
+ xlCount = -4112 # from enum XlConsolidationFunction
1070
+ xlCountNums = -4113 # from enum XlConsolidationFunction
1071
+ xlMax = -4136 # from enum XlConsolidationFunction
1072
+ xlMin = -4139 # from enum XlConsolidationFunction
1073
+ xlProduct = -4149 # from enum XlConsolidationFunction
1074
+ xlStDev = -4155 # from enum XlConsolidationFunction
1075
+ xlStDevP = -4156 # from enum XlConsolidationFunction
1076
+ xlSum = -4157 # from enum XlConsolidationFunction
1077
+ xlUnknown = 1000 # from enum XlConsolidationFunction
1078
+ xlVar = -4164 # from enum XlConsolidationFunction
1079
+ xlVarP = -4165 # from enum XlConsolidationFunction
1080
+
1081
+
1082
+ class ContainsOperator:
1083
+ xlBeginsWith = 2 # from enum XlContainsOperator
1084
+ xlContains = 0 # from enum XlContainsOperator
1085
+ xlDoesNotContain = 1 # from enum XlContainsOperator
1086
+ xlEndsWith = 3 # from enum XlContainsOperator
1087
+
1088
+
1089
+ class CopyPictureFormat:
1090
+ xlBitmap = 2 # from enum XlCopyPictureFormat
1091
+ xlPicture = -4147 # from enum XlCopyPictureFormat
1092
+
1093
+
1094
+ class CorruptLoad:
1095
+ xlExtractData = 2 # from enum XlCorruptLoad
1096
+ xlNormalLoad = 0 # from enum XlCorruptLoad
1097
+ xlRepairFile = 1 # from enum XlCorruptLoad
1098
+
1099
+
1100
+ class Creator:
1101
+ xlCreatorCode = 1480803660 # from enum XlCreator
1102
+
1103
+
1104
+ class CredentialsMethod:
1105
+ xlCredentialsMethodIntegrated = 0 # from enum XlCredentialsMethod
1106
+ xlCredentialsMethodNone = 1 # from enum XlCredentialsMethod
1107
+ xlCredentialsMethodStored = 2 # from enum XlCredentialsMethod
1108
+
1109
+
1110
+ class CubeFieldSubType:
1111
+ xlCubeAttribute = 4 # from enum XlCubeFieldSubType
1112
+ xlCubeCalculatedMeasure = 5 # from enum XlCubeFieldSubType
1113
+ xlCubeHierarchy = 1 # from enum XlCubeFieldSubType
1114
+ xlCubeKPIGoal = 7 # from enum XlCubeFieldSubType
1115
+ xlCubeKPIStatus = 8 # from enum XlCubeFieldSubType
1116
+ xlCubeKPITrend = 9 # from enum XlCubeFieldSubType
1117
+ xlCubeKPIValue = 6 # from enum XlCubeFieldSubType
1118
+ xlCubeKPIWeight = 10 # from enum XlCubeFieldSubType
1119
+ xlCubeMeasure = 2 # from enum XlCubeFieldSubType
1120
+ xlCubeSet = 3 # from enum XlCubeFieldSubType
1121
+
1122
+
1123
+ class CubeFieldType:
1124
+ xlHierarchy = 1 # from enum XlCubeFieldType
1125
+ xlMeasure = 2 # from enum XlCubeFieldType
1126
+ xlSet = 3 # from enum XlCubeFieldType
1127
+
1128
+
1129
+ class CutCopyMode:
1130
+ xlCopy = 1 # from enum XlCutCopyMode
1131
+ xlCut = 2 # from enum XlCutCopyMode
1132
+
1133
+
1134
+ class DVAlertStyle:
1135
+ xlValidAlertInformation = 3 # from enum XlDVAlertStyle
1136
+ xlValidAlertStop = 1 # from enum XlDVAlertStyle
1137
+ xlValidAlertWarning = 2 # from enum XlDVAlertStyle
1138
+
1139
+
1140
+ class DVType:
1141
+ xlValidateCustom = 7 # from enum XlDVType
1142
+ xlValidateDate = 4 # from enum XlDVType
1143
+ xlValidateDecimal = 2 # from enum XlDVType
1144
+ xlValidateInputOnly = 0 # from enum XlDVType
1145
+ xlValidateList = 3 # from enum XlDVType
1146
+ xlValidateTextLength = 6 # from enum XlDVType
1147
+ xlValidateTime = 5 # from enum XlDVType
1148
+ xlValidateWholeNumber = 1 # from enum XlDVType
1149
+
1150
+
1151
+ class DataBarAxisPosition:
1152
+ xlDataBarAxisAutomatic = 0 # from enum XlDataBarAxisPosition
1153
+ xlDataBarAxisMidpoint = 1 # from enum XlDataBarAxisPosition
1154
+ xlDataBarAxisNone = 2 # from enum XlDataBarAxisPosition
1155
+
1156
+
1157
+ class DataBarBorderType:
1158
+ xlDataBarBorderNone = 0 # from enum XlDataBarBorderType
1159
+ xlDataBarBorderSolid = 1 # from enum XlDataBarBorderType
1160
+
1161
+
1162
+ class DataBarFillType:
1163
+ xlDataBarFillGradient = 1 # from enum XlDataBarFillType
1164
+ xlDataBarFillSolid = 0 # from enum XlDataBarFillType
1165
+
1166
+
1167
+ class DataBarNegativeColorType:
1168
+ xlDataBarColor = 0 # from enum XlDataBarNegativeColorType
1169
+ xlDataBarSameAsPositive = 1 # from enum XlDataBarNegativeColorType
1170
+
1171
+
1172
+ class DataLabelPosition:
1173
+ xlLabelPositionAbove = 0 # from enum XlDataLabelPosition
1174
+ xlLabelPositionBelow = 1 # from enum XlDataLabelPosition
1175
+ xlLabelPositionBestFit = 5 # from enum XlDataLabelPosition
1176
+ xlLabelPositionCenter = -4108 # from enum XlDataLabelPosition
1177
+ xlLabelPositionCustom = 7 # from enum XlDataLabelPosition
1178
+ xlLabelPositionInsideBase = 4 # from enum XlDataLabelPosition
1179
+ xlLabelPositionInsideEnd = 3 # from enum XlDataLabelPosition
1180
+ xlLabelPositionLeft = -4131 # from enum XlDataLabelPosition
1181
+ xlLabelPositionMixed = 6 # from enum XlDataLabelPosition
1182
+ xlLabelPositionOutsideEnd = 2 # from enum XlDataLabelPosition
1183
+ xlLabelPositionRight = -4152 # from enum XlDataLabelPosition
1184
+
1185
+
1186
+ class DataLabelSeparator:
1187
+ xlDataLabelSeparatorDefault = 1 # from enum XlDataLabelSeparator
1188
+
1189
+
1190
+ class DataLabelsType:
1191
+ xlDataLabelsShowBubbleSizes = 6 # from enum XlDataLabelsType
1192
+ xlDataLabelsShowLabel = 4 # from enum XlDataLabelsType
1193
+ xlDataLabelsShowLabelAndPercent = 5 # from enum XlDataLabelsType
1194
+ xlDataLabelsShowNone = -4142 # from enum XlDataLabelsType
1195
+ xlDataLabelsShowPercent = 3 # from enum XlDataLabelsType
1196
+ xlDataLabelsShowValue = 2 # from enum XlDataLabelsType
1197
+
1198
+
1199
+ class DataSeriesDate:
1200
+ xlDay = 1 # from enum XlDataSeriesDate
1201
+ xlMonth = 3 # from enum XlDataSeriesDate
1202
+ xlWeekday = 2 # from enum XlDataSeriesDate
1203
+ xlYear = 4 # from enum XlDataSeriesDate
1204
+ xlAutoFill = 4 # from enum XlDataSeriesType
1205
+ xlChronological = 3 # from enum XlDataSeriesType
1206
+ xlDataSeriesLinear = -4132 # from enum XlDataSeriesType
1207
+ xlGrowth = 2 # from enum XlDataSeriesType
1208
+
1209
+
1210
+ class DeleteShiftDirection:
1211
+ xlShiftToLeft = -4159 # from enum XlDeleteShiftDirection
1212
+ xlShiftUp = -4162 # from enum XlDeleteShiftDirection
1213
+
1214
+
1215
+ class Direction:
1216
+ xlDown = -4121 # from enum XlDirection
1217
+ xlToLeft = -4159 # from enum XlDirection
1218
+ xlToRight = -4161 # from enum XlDirection
1219
+ xlUp = -4162 # from enum XlDirection
1220
+
1221
+
1222
+ directions = ("down", "left", "right", "up")
1223
+
1224
+
1225
+ class DisplayBlanksAs:
1226
+ xlInterpolated = 3 # from enum XlDisplayBlanksAs
1227
+ xlNotPlotted = 1 # from enum XlDisplayBlanksAs
1228
+ xlZero = 2 # from enum XlDisplayBlanksAs
1229
+
1230
+
1231
+ class DisplayDrawingObjects:
1232
+ xlDisplayShapes = -4104 # from enum XlDisplayDrawingObjects
1233
+ xlHide = 3 # from enum XlDisplayDrawingObjects
1234
+ xlPlaceholders = 2 # from enum XlDisplayDrawingObjects
1235
+
1236
+
1237
+ class DisplayUnit:
1238
+ xlHundredMillions = -8 # from enum XlDisplayUnit
1239
+ xlHundredThousands = -5 # from enum XlDisplayUnit
1240
+ xlHundreds = -2 # from enum XlDisplayUnit
1241
+ xlMillionMillions = -10 # from enum XlDisplayUnit
1242
+ xlMillions = -6 # from enum XlDisplayUnit
1243
+ xlTenMillions = -7 # from enum XlDisplayUnit
1244
+ xlTenThousands = -4 # from enum XlDisplayUnit
1245
+ xlThousandMillions = -9 # from enum XlDisplayUnit
1246
+ xlThousands = -3 # from enum XlDisplayUnit
1247
+
1248
+
1249
+ class DupeUnique:
1250
+ xlDuplicate = 1 # from enum XlDupeUnique
1251
+ xlUnique = 0 # from enum XlDupeUnique
1252
+
1253
+
1254
+ class DynamicFilterCriteria:
1255
+ xlFilterAboveAverage = 33 # from enum XlDynamicFilterCriteria
1256
+ xlFilterAllDatesInPeriodApril = 24 # from enum XlDynamicFilterCriteria
1257
+ xlFilterAllDatesInPeriodAugust = 28 # from enum XlDynamicFilterCriteria
1258
+ xlFilterAllDatesInPeriodDecember = 32 # from enum XlDynamicFilterCriteria
1259
+ xlFilterAllDatesInPeriodFebruray = 22 # from enum XlDynamicFilterCriteria
1260
+ xlFilterAllDatesInPeriodJanuary = 21 # from enum XlDynamicFilterCriteria
1261
+ xlFilterAllDatesInPeriodJuly = 27 # from enum XlDynamicFilterCriteria
1262
+ xlFilterAllDatesInPeriodJune = 26 # from enum XlDynamicFilterCriteria
1263
+ xlFilterAllDatesInPeriodMarch = 23 # from enum XlDynamicFilterCriteria
1264
+ xlFilterAllDatesInPeriodMay = 25 # from enum XlDynamicFilterCriteria
1265
+ xlFilterAllDatesInPeriodNovember = 31 # from enum XlDynamicFilterCriteria
1266
+ xlFilterAllDatesInPeriodOctober = 30 # from enum XlDynamicFilterCriteria
1267
+ xlFilterAllDatesInPeriodQuarter1 = 17 # from enum XlDynamicFilterCriteria
1268
+ xlFilterAllDatesInPeriodQuarter2 = 18 # from enum XlDynamicFilterCriteria
1269
+ xlFilterAllDatesInPeriodQuarter3 = 19 # from enum XlDynamicFilterCriteria
1270
+ xlFilterAllDatesInPeriodQuarter4 = 20 # from enum XlDynamicFilterCriteria
1271
+ xlFilterAllDatesInPeriodSeptember = 29 # from enum XlDynamicFilterCriteria
1272
+ xlFilterBelowAverage = 34 # from enum XlDynamicFilterCriteria
1273
+ xlFilterLastMonth = 8 # from enum XlDynamicFilterCriteria
1274
+ xlFilterLastQuarter = 11 # from enum XlDynamicFilterCriteria
1275
+ xlFilterLastWeek = 5 # from enum XlDynamicFilterCriteria
1276
+ xlFilterLastYear = 14 # from enum XlDynamicFilterCriteria
1277
+ xlFilterNextMonth = 9 # from enum XlDynamicFilterCriteria
1278
+ xlFilterNextQuarter = 12 # from enum XlDynamicFilterCriteria
1279
+ xlFilterNextWeek = 6 # from enum XlDynamicFilterCriteria
1280
+ xlFilterNextYear = 15 # from enum XlDynamicFilterCriteria
1281
+ xlFilterThisMonth = 7 # from enum XlDynamicFilterCriteria
1282
+ xlFilterThisQuarter = 10 # from enum XlDynamicFilterCriteria
1283
+ xlFilterThisWeek = 4 # from enum XlDynamicFilterCriteria
1284
+ xlFilterThisYear = 13 # from enum XlDynamicFilterCriteria
1285
+ xlFilterToday = 1 # from enum XlDynamicFilterCriteria
1286
+ xlFilterTomorrow = 3 # from enum XlDynamicFilterCriteria
1287
+ xlFilterYearToDate = 16 # from enum XlDynamicFilterCriteria
1288
+ xlFilterYesterday = 2 # from enum XlDynamicFilterCriteria
1289
+
1290
+
1291
+ class EditionFormat:
1292
+ xlBIFF = 2 # from enum XlEditionFormat
1293
+ xlPICT = 1 # from enum XlEditionFormat
1294
+ xlRTF = 4 # from enum XlEditionFormat
1295
+ xlVALU = 8 # from enum XlEditionFormat
1296
+
1297
+
1298
+ class EditionOptionsOption:
1299
+ xlAutomaticUpdate = 4 # from enum XlEditionOptionsOption
1300
+ xlCancel = 1 # from enum XlEditionOptionsOption
1301
+ xlChangeAttributes = 6 # from enum XlEditionOptionsOption
1302
+ xlManualUpdate = 5 # from enum XlEditionOptionsOption
1303
+ xlOpenSource = 3 # from enum XlEditionOptionsOption
1304
+ xlSelect = 3 # from enum XlEditionOptionsOption
1305
+ xlSendPublisher = 2 # from enum XlEditionOptionsOption
1306
+ xlUpdateSubscriber = 2 # from enum XlEditionOptionsOption
1307
+
1308
+
1309
+ class EditionType:
1310
+ xlPublisher = 1 # from enum XlEditionType
1311
+ xlSubscriber = 2 # from enum XlEditionType
1312
+
1313
+
1314
+ class EnableCancelKey:
1315
+ xlDisabled = 0 # from enum XlEnableCancelKey
1316
+ xlErrorHandler = 2 # from enum XlEnableCancelKey
1317
+ xlInterrupt = 1 # from enum XlEnableCancelKey
1318
+
1319
+
1320
+ class EnableSelection:
1321
+ xlNoRestrictions = 0 # from enum XlEnableSelection
1322
+ xlNoSelection = -4142 # from enum XlEnableSelection
1323
+ xlUnlockedCells = 1 # from enum XlEnableSelection
1324
+
1325
+
1326
+ class EndStyleCap:
1327
+ xlCap = 1 # from enum XlEndStyleCap
1328
+ xlNoCap = 2 # from enum XlEndStyleCap
1329
+
1330
+
1331
+ class ErrorBarDirection:
1332
+ xlX = -4168 # from enum XlErrorBarDirection
1333
+ xlY = 1 # from enum XlErrorBarDirection
1334
+
1335
+
1336
+ class ErrorBarInclude:
1337
+ xlErrorBarIncludeBoth = 1 # from enum XlErrorBarInclude
1338
+ xlErrorBarIncludeMinusValues = 3 # from enum XlErrorBarInclude
1339
+ xlErrorBarIncludeNone = -4142 # from enum XlErrorBarInclude
1340
+ xlErrorBarIncludePlusValues = 2 # from enum XlErrorBarInclude
1341
+
1342
+
1343
+ class ErrorBarType:
1344
+ xlErrorBarTypeCustom = -4114 # from enum XlErrorBarType
1345
+ xlErrorBarTypeFixedValue = 1 # from enum XlErrorBarType
1346
+ xlErrorBarTypePercent = 2 # from enum XlErrorBarType
1347
+ xlErrorBarTypeStDev = -4155 # from enum XlErrorBarType
1348
+ xlErrorBarTypeStError = 4 # from enum XlErrorBarType
1349
+
1350
+
1351
+ class ErrorChecks:
1352
+ xlEmptyCellReferences = 7 # from enum XlErrorChecks
1353
+ xlEvaluateToError = 1 # from enum XlErrorChecks
1354
+ xlInconsistentFormula = 4 # from enum XlErrorChecks
1355
+ xlInconsistentListFormula = 9 # from enum XlErrorChecks
1356
+ xlListDataValidation = 8 # from enum XlErrorChecks
1357
+ xlNumberAsText = 3 # from enum XlErrorChecks
1358
+ xlOmittedCells = 5 # from enum XlErrorChecks
1359
+ xlTextDate = 2 # from enum XlErrorChecks
1360
+ xlUnlockedFormulaCells = 6 # from enum XlErrorChecks
1361
+
1362
+
1363
+ class FileAccess:
1364
+ xlReadOnly = 3 # from enum XlFileAccess
1365
+ xlReadWrite = 2 # from enum XlFileAccess
1366
+
1367
+
1368
+ class FileFormat:
1369
+ xlAddIn = 18 # from enum XlFileFormat
1370
+ xlAddIn8 = 18 # from enum XlFileFormat
1371
+ xlCSV = 6 # from enum XlFileFormat
1372
+ xlCSVMSDOS = 24 # from enum XlFileFormat
1373
+ xlCSVMac = 22 # from enum XlFileFormat
1374
+ xlCSVWindows = 23 # from enum XlFileFormat
1375
+ xlCurrentPlatformText = -4158 # from enum XlFileFormat
1376
+ xlDBF2 = 7 # from enum XlFileFormat
1377
+ xlDBF3 = 8 # from enum XlFileFormat
1378
+ xlDBF4 = 11 # from enum XlFileFormat
1379
+ xlDIF = 9 # from enum XlFileFormat
1380
+ xlExcel12 = 50 # from enum XlFileFormat
1381
+ xlExcel2 = 16 # from enum XlFileFormat
1382
+ xlExcel2FarEast = 27 # from enum XlFileFormat
1383
+ xlExcel3 = 29 # from enum XlFileFormat
1384
+ xlExcel4 = 33 # from enum XlFileFormat
1385
+ xlExcel4Workbook = 35 # from enum XlFileFormat
1386
+ xlExcel5 = 39 # from enum XlFileFormat
1387
+ xlExcel7 = 39 # from enum XlFileFormat
1388
+ xlExcel8 = 56 # from enum XlFileFormat
1389
+ xlExcel9795 = 43 # from enum XlFileFormat
1390
+ xlHtml = 44 # from enum XlFileFormat
1391
+ xlIntlAddIn = 26 # from enum XlFileFormat
1392
+ xlIntlMacro = 25 # from enum XlFileFormat
1393
+ xlOpenDocumentSpreadsheet = 60 # from enum XlFileFormat
1394
+ xlOpenXMLAddIn = 55 # from enum XlFileFormat
1395
+ xlOpenXMLTemplate = 54 # from enum XlFileFormat
1396
+ xlOpenXMLTemplateMacroEnabled = 53 # from enum XlFileFormat
1397
+ xlOpenXMLWorkbook = 51 # from enum XlFileFormat
1398
+ xlOpenXMLWorkbookMacroEnabled = 52 # from enum XlFileFormat
1399
+ xlSYLK = 2 # from enum XlFileFormat
1400
+ xlTemplate = 17 # from enum XlFileFormat
1401
+ xlTemplate8 = 17 # from enum XlFileFormat
1402
+ xlTextMSDOS = 21 # from enum XlFileFormat
1403
+ xlTextMac = 19 # from enum XlFileFormat
1404
+ xlTextPrinter = 36 # from enum XlFileFormat
1405
+ xlTextWindows = 20 # from enum XlFileFormat
1406
+ xlUnicodeText = 42 # from enum XlFileFormat
1407
+ xlWJ2WD1 = 14 # from enum XlFileFormat
1408
+ xlWJ3 = 40 # from enum XlFileFormat
1409
+ xlWJ3FJ3 = 41 # from enum XlFileFormat
1410
+ xlWK1 = 5 # from enum XlFileFormat
1411
+ xlWK1ALL = 31 # from enum XlFileFormat
1412
+ xlWK1FMT = 30 # from enum XlFileFormat
1413
+ xlWK3 = 15 # from enum XlFileFormat
1414
+ xlWK3FM3 = 32 # from enum XlFileFormat
1415
+ xlWK4 = 38 # from enum XlFileFormat
1416
+ xlWKS = 4 # from enum XlFileFormat
1417
+ xlWQ1 = 34 # from enum XlFileFormat
1418
+ xlWebArchive = 45 # from enum XlFileFormat
1419
+ xlWorkbookDefault = 51 # from enum XlFileFormat
1420
+ xlWorkbookNormal = -4143 # from enum XlFileFormat
1421
+ xlWorks2FarEast = 28 # from enum XlFileFormat
1422
+ xlXMLSpreadsheet = 46 # from enum XlFileFormat
1423
+
1424
+
1425
+ class FileValidationPivotMode:
1426
+ xlFileValidationPivotDefault = 0 # from enum XlFileValidationPivotMode
1427
+ xlFileValidationPivotRun = 1 # from enum XlFileValidationPivotMode
1428
+ xlFileValidationPivotSkip = 2 # from enum XlFileValidationPivotMode
1429
+
1430
+
1431
+ class FillWith:
1432
+ xlFillWithAll = -4104 # from enum XlFillWith
1433
+ xlFillWithContents = 2 # from enum XlFillWith
1434
+ xlFillWithFormats = -4122 # from enum XlFillWith
1435
+
1436
+
1437
+ class FilterAction:
1438
+ xlFilterCopy = 2 # from enum XlFilterAction
1439
+ xlFilterInPlace = 1 # from enum XlFilterAction
1440
+
1441
+
1442
+ class FilterAllDatesInPeriod:
1443
+ xlFilterAllDatesInPeriodDay = 2 # from enum XlFilterAllDatesInPeriod
1444
+ xlFilterAllDatesInPeriodHour = 3 # from enum XlFilterAllDatesInPeriod
1445
+ xlFilterAllDatesInPeriodMinute = 4 # from enum XlFilterAllDatesInPeriod
1446
+ xlFilterAllDatesInPeriodMonth = 1 # from enum XlFilterAllDatesInPeriod
1447
+ xlFilterAllDatesInPeriodSecond = 5 # from enum XlFilterAllDatesInPeriod
1448
+ xlFilterAllDatesInPeriodYear = 0 # from enum XlFilterAllDatesInPeriod
1449
+
1450
+
1451
+ class FindLookIn:
1452
+ xlComments = -4144 # from enum XlFindLookIn
1453
+ xlFormulas = -4123 # from enum XlFindLookIn
1454
+ xlValues = -4163 # from enum XlFindLookIn
1455
+
1456
+
1457
+ class FixedFormatQuality:
1458
+ xlQualityMinimum = 1 # from enum XlFixedFormatQuality
1459
+ xlQualityStandard = 0 # from enum XlFixedFormatQuality
1460
+
1461
+
1462
+ class FixedFormatType:
1463
+ xlTypePDF = 0 # from enum XlFixedFormatType
1464
+ xlTypeXPS = 1 # from enum XlFixedFormatType
1465
+
1466
+
1467
+ class FormControl:
1468
+ xlButtonControl = 0 # from enum XlFormControl
1469
+ xlCheckBox = 1 # from enum XlFormControl
1470
+ xlDropDown = 2 # from enum XlFormControl
1471
+ xlEditBox = 3 # from enum XlFormControl
1472
+ xlGroupBox = 4 # from enum XlFormControl
1473
+ xlLabel = 5 # from enum XlFormControl
1474
+ xlListBox = 6 # from enum XlFormControl
1475
+ xlOptionButton = 7 # from enum XlFormControl
1476
+ xlScrollBar = 8 # from enum XlFormControl
1477
+ xlSpinner = 9 # from enum XlFormControl
1478
+
1479
+
1480
+ class FormatConditionOperator:
1481
+ xlBetween = 1 # from enum XlFormatConditionOperator
1482
+ xlEqual = 3 # from enum XlFormatConditionOperator
1483
+ xlGreater = 5 # from enum XlFormatConditionOperator
1484
+ xlGreaterEqual = 7 # from enum XlFormatConditionOperator
1485
+ xlLess = 6 # from enum XlFormatConditionOperator
1486
+ xlLessEqual = 8 # from enum XlFormatConditionOperator
1487
+ xlNotBetween = 2 # from enum XlFormatConditionOperator
1488
+ xlNotEqual = 4 # from enum XlFormatConditionOperator
1489
+
1490
+
1491
+ class FormatConditionType:
1492
+ xlAboveAverageCondition = 12 # from enum XlFormatConditionType
1493
+ xlBlanksCondition = 10 # from enum XlFormatConditionType
1494
+ xlCellValue = 1 # from enum XlFormatConditionType
1495
+ xlColorScale = 3 # from enum XlFormatConditionType
1496
+ xlDatabar = 4 # from enum XlFormatConditionType
1497
+ xlErrorsCondition = 16 # from enum XlFormatConditionType
1498
+ xlExpression = 2 # from enum XlFormatConditionType
1499
+ xlIconSets = 6 # from enum XlFormatConditionType
1500
+ xlNoBlanksCondition = 13 # from enum XlFormatConditionType
1501
+ xlNoErrorsCondition = 17 # from enum XlFormatConditionType
1502
+ xlTextString = 9 # from enum XlFormatConditionType
1503
+ xlTimePeriod = 11 # from enum XlFormatConditionType
1504
+ xlTop10 = 5 # from enum XlFormatConditionType
1505
+ xlUniqueValues = 8 # from enum XlFormatConditionType
1506
+
1507
+
1508
+ class FormatFilterTypes:
1509
+ xlFilterBottom = 0 # from enum XlFormatFilterTypes
1510
+ xlFilterBottomPercent = 2 # from enum XlFormatFilterTypes
1511
+ xlFilterTop = 1 # from enum XlFormatFilterTypes
1512
+ xlFilterTopPercent = 3 # from enum XlFormatFilterTypes
1513
+
1514
+
1515
+ class FormulaLabel:
1516
+ xlColumnLabels = 2 # from enum XlFormulaLabel
1517
+ xlMixedLabels = 3 # from enum XlFormulaLabel
1518
+ xlNoLabels = -4142 # from enum XlFormulaLabel
1519
+ xlRowLabels = 1 # from enum XlFormulaLabel
1520
+
1521
+
1522
+ class GenerateTableRefs:
1523
+ xlGenerateTableRefA1 = 0 # from enum XlGenerateTableRefs
1524
+ xlGenerateTableRefStruct = 1 # from enum XlGenerateTableRefs
1525
+
1526
+
1527
+ class GradientFillType:
1528
+ xlGradientFillLinear = 0 # from enum XlGradientFillType
1529
+ xlGradientFillPath = 1 # from enum XlGradientFillType
1530
+
1531
+
1532
+ class HAlign:
1533
+ xlHAlignCenter = -4108 # from enum XlHAlign
1534
+ xlHAlignCenterAcrossSelection = 7 # from enum XlHAlign
1535
+ xlHAlignDistributed = -4117 # from enum XlHAlign
1536
+ xlHAlignFill = 5 # from enum XlHAlign
1537
+ xlHAlignGeneral = 1 # from enum XlHAlign
1538
+ xlHAlignJustify = -4130 # from enum XlHAlign
1539
+ xlHAlignLeft = -4131 # from enum XlHAlign
1540
+ xlHAlignRight = -4152 # from enum XlHAlign
1541
+
1542
+
1543
+ class HebrewModes:
1544
+ xlHebrewFullScript = 0 # from enum XlHebrewModes
1545
+ xlHebrewMixedAuthorizedScript = 3 # from enum XlHebrewModes
1546
+ xlHebrewMixedScript = 2 # from enum XlHebrewModes
1547
+ xlHebrewPartialScript = 1 # from enum XlHebrewModes
1548
+
1549
+
1550
+ class HighlightChangesTime:
1551
+ xlAllChanges = 2 # from enum XlHighlightChangesTime
1552
+ xlNotYetReviewed = 3 # from enum XlHighlightChangesTime
1553
+ xlSinceMyLastSave = 1 # from enum XlHighlightChangesTime
1554
+
1555
+
1556
+ class HtmlType:
1557
+ xlHtmlCalc = 1 # from enum XlHtmlType
1558
+ xlHtmlChart = 3 # from enum XlHtmlType
1559
+ xlHtmlList = 2 # from enum XlHtmlType
1560
+ xlHtmlStatic = 0 # from enum XlHtmlType
1561
+
1562
+
1563
+ class IMEMode:
1564
+ xlIMEModeAlpha = 8 # from enum XlIMEMode
1565
+ xlIMEModeAlphaFull = 7 # from enum XlIMEMode
1566
+ xlIMEModeDisable = 3 # from enum XlIMEMode
1567
+ xlIMEModeHangul = 10 # from enum XlIMEMode
1568
+ xlIMEModeHangulFull = 9 # from enum XlIMEMode
1569
+ xlIMEModeHiragana = 4 # from enum XlIMEMode
1570
+ xlIMEModeKatakana = 5 # from enum XlIMEMode
1571
+ xlIMEModeKatakanaHalf = 6 # from enum XlIMEMode
1572
+ xlIMEModeNoControl = 0 # from enum XlIMEMode
1573
+ xlIMEModeOff = 2 # from enum XlIMEMode
1574
+ xlIMEModeOn = 1 # from enum XlIMEMode
1575
+
1576
+
1577
+ class Icon:
1578
+ xlIcon0Bars = 37 # from enum XlIcon
1579
+ xlIcon0FilledBoxes = 52 # from enum XlIcon
1580
+ xlIcon1Bar = 38 # from enum XlIcon
1581
+ xlIcon1FilledBox = 51 # from enum XlIcon
1582
+ xlIcon2Bars = 39 # from enum XlIcon
1583
+ xlIcon2FilledBoxes = 50 # from enum XlIcon
1584
+ xlIcon3Bars = 40 # from enum XlIcon
1585
+ xlIcon3FilledBoxes = 49 # from enum XlIcon
1586
+ xlIcon4Bars = 41 # from enum XlIcon
1587
+ xlIcon4FilledBoxes = 48 # from enum XlIcon
1588
+ xlIconBlackCircle = 32 # from enum XlIcon
1589
+ xlIconBlackCircleWithBorder = 13 # from enum XlIcon
1590
+ xlIconCircleWithOneWhiteQuarter = 33 # from enum XlIcon
1591
+ xlIconCircleWithThreeWhiteQuarters = 35 # from enum XlIcon
1592
+ xlIconCircleWithTwoWhiteQuarters = 34 # from enum XlIcon
1593
+ xlIconGoldStar = 42 # from enum XlIcon
1594
+ xlIconGrayCircle = 31 # from enum XlIcon
1595
+ xlIconGrayDownArrow = 6 # from enum XlIcon
1596
+ xlIconGrayDownInclineArrow = 28 # from enum XlIcon
1597
+ xlIconGraySideArrow = 5 # from enum XlIcon
1598
+ xlIconGrayUpArrow = 4 # from enum XlIcon
1599
+ xlIconGrayUpInclineArrow = 27 # from enum XlIcon
1600
+ xlIconGreenCheck = 22 # from enum XlIcon
1601
+ xlIconGreenCheckSymbol = 19 # from enum XlIcon
1602
+ xlIconGreenCircle = 10 # from enum XlIcon
1603
+ xlIconGreenFlag = 7 # from enum XlIcon
1604
+ xlIconGreenTrafficLight = 14 # from enum XlIcon
1605
+ xlIconGreenUpArrow = 1 # from enum XlIcon
1606
+ xlIconGreenUpTriangle = 45 # from enum XlIcon
1607
+ xlIconHalfGoldStar = 43 # from enum XlIcon
1608
+ xlIconNoCellIcon = -1 # from enum XlIcon
1609
+ xlIconPinkCircle = 30 # from enum XlIcon
1610
+ xlIconRedCircle = 29 # from enum XlIcon
1611
+ xlIconRedCircleWithBorder = 12 # from enum XlIcon
1612
+ xlIconRedCross = 24 # from enum XlIcon
1613
+ xlIconRedCrossSymbol = 21 # from enum XlIcon
1614
+ xlIconRedDiamond = 18 # from enum XlIcon
1615
+ xlIconRedDownArrow = 3 # from enum XlIcon
1616
+ xlIconRedDownTriangle = 47 # from enum XlIcon
1617
+ xlIconRedFlag = 9 # from enum XlIcon
1618
+ xlIconRedTrafficLight = 16 # from enum XlIcon
1619
+ xlIconSilverStar = 44 # from enum XlIcon
1620
+ xlIconWhiteCircleAllWhiteQuarters = 36 # from enum XlIcon
1621
+ xlIconYellowCircle = 11 # from enum XlIcon
1622
+ xlIconYellowDash = 46 # from enum XlIcon
1623
+ xlIconYellowDownInclineArrow = 26 # from enum XlIcon
1624
+ xlIconYellowExclamation = 23 # from enum XlIcon
1625
+ xlIconYellowExclamationSymbol = 20 # from enum XlIcon
1626
+ xlIconYellowFlag = 8 # from enum XlIcon
1627
+ xlIconYellowSideArrow = 2 # from enum XlIcon
1628
+ xlIconYellowTrafficLight = 15 # from enum XlIcon
1629
+ xlIconYellowTriangle = 17 # from enum XlIcon
1630
+ xlIconYellowUpInclineArrow = 25 # from enum XlIcon
1631
+
1632
+
1633
+ class IconSet:
1634
+ xl3Arrows = 1 # from enum XlIconSet
1635
+ xl3ArrowsGray = 2 # from enum XlIconSet
1636
+ xl3Flags = 3 # from enum XlIconSet
1637
+ xl3Signs = 6 # from enum XlIconSet
1638
+ xl3Stars = 18 # from enum XlIconSet
1639
+ xl3Symbols = 7 # from enum XlIconSet
1640
+ xl3Symbols2 = 8 # from enum XlIconSet
1641
+ xl3TrafficLights1 = 4 # from enum XlIconSet
1642
+ xl3TrafficLights2 = 5 # from enum XlIconSet
1643
+ xl3Triangles = 19 # from enum XlIconSet
1644
+ xl4Arrows = 9 # from enum XlIconSet
1645
+ xl4ArrowsGray = 10 # from enum XlIconSet
1646
+ xl4CRV = 12 # from enum XlIconSet
1647
+ xl4RedToBlack = 11 # from enum XlIconSet
1648
+ xl4TrafficLights = 13 # from enum XlIconSet
1649
+ xl5Arrows = 14 # from enum XlIconSet
1650
+ xl5ArrowsGray = 15 # from enum XlIconSet
1651
+ xl5Boxes = 20 # from enum XlIconSet
1652
+ xl5CRV = 16 # from enum XlIconSet
1653
+ xl5Quarters = 17 # from enum XlIconSet
1654
+ xlCustomSet = -1 # from enum XlIconSet
1655
+
1656
+
1657
+ class ImportDataAs:
1658
+ xlPivotTableReport = 1 # from enum XlImportDataAs
1659
+ xlQueryTable = 0 # from enum XlImportDataAs
1660
+ xlTable = 2 # from enum XlImportDataAs
1661
+
1662
+
1663
+ class InsertFormatOrigin:
1664
+ xlFormatFromLeftOrAbove = 0 # from enum XlInsertFormatOrigin
1665
+ xlFormatFromRightOrBelow = 1 # from enum XlInsertFormatOrigin
1666
+
1667
+
1668
+ class InsertShiftDirection:
1669
+ xlShiftDown = -4121 # from enum XlInsertShiftDirection
1670
+ xlShiftToRight = -4161 # from enum XlInsertShiftDirection
1671
+
1672
+
1673
+ class LayoutFormType:
1674
+ xlOutline = 1 # from enum XlLayoutFormType
1675
+ xlTabular = 0 # from enum XlLayoutFormType
1676
+
1677
+
1678
+ class LayoutRowType:
1679
+ xlCompactRow = 0 # from enum XlLayoutRowType
1680
+ xlOutlineRow = 2 # from enum XlLayoutRowType
1681
+ xlTabularRow = 1 # from enum XlLayoutRowType
1682
+
1683
+
1684
+ class LegendPosition:
1685
+ xlLegendPositionBottom = -4107 # from enum XlLegendPosition
1686
+ xlLegendPositionCorner = 2 # from enum XlLegendPosition
1687
+ xlLegendPositionCustom = -4161 # from enum XlLegendPosition
1688
+ xlLegendPositionLeft = -4131 # from enum XlLegendPosition
1689
+ xlLegendPositionRight = -4152 # from enum XlLegendPosition
1690
+ xlLegendPositionTop = -4160 # from enum XlLegendPosition
1691
+
1692
+
1693
+ class LineStyle:
1694
+ xlContinuous = 1 # from enum XlLineStyle
1695
+ xlDash = -4115 # from enum XlLineStyle
1696
+ xlDashDot = 4 # from enum XlLineStyle
1697
+ xlDashDotDot = 5 # from enum XlLineStyle
1698
+ xlDot = -4118 # from enum XlLineStyle
1699
+ xlDouble = -4119 # from enum XlLineStyle
1700
+ xlLineStyleNone = -4142 # from enum XlLineStyle
1701
+ xlSlantDashDot = 13 # from enum XlLineStyle
1702
+
1703
+
1704
+ class Link:
1705
+ xlExcelLinks = 1 # from enum XlLink
1706
+ xlOLELinks = 2 # from enum XlLink
1707
+ xlPublishers = 5 # from enum XlLink
1708
+ xlSubscribers = 6 # from enum XlLink
1709
+
1710
+
1711
+ class LinkInfo:
1712
+ xlEditionDate = 2 # from enum XlLinkInfo
1713
+ xlLinkInfoStatus = 3 # from enum XlLinkInfo
1714
+ xlUpdateState = 1 # from enum XlLinkInfo
1715
+
1716
+
1717
+ class LinkInfoType:
1718
+ xlLinkInfoOLELinks = 2 # from enum XlLinkInfoType
1719
+ xlLinkInfoPublishers = 5 # from enum XlLinkInfoType
1720
+ xlLinkInfoSubscribers = 6 # from enum XlLinkInfoType
1721
+
1722
+
1723
+ class LinkStatus:
1724
+ xlLinkStatusCopiedValues = 10 # from enum XlLinkStatus
1725
+ xlLinkStatusIndeterminate = 5 # from enum XlLinkStatus
1726
+ xlLinkStatusInvalidName = 7 # from enum XlLinkStatus
1727
+ xlLinkStatusMissingFile = 1 # from enum XlLinkStatus
1728
+ xlLinkStatusMissingSheet = 2 # from enum XlLinkStatus
1729
+ xlLinkStatusNotStarted = 6 # from enum XlLinkStatus
1730
+ xlLinkStatusOK = 0 # from enum XlLinkStatus
1731
+ xlLinkStatusOld = 3 # from enum XlLinkStatus
1732
+ xlLinkStatusSourceNotCalculated = 4 # from enum XlLinkStatus
1733
+ xlLinkStatusSourceNotOpen = 8 # from enum XlLinkStatus
1734
+ xlLinkStatusSourceOpen = 9 # from enum XlLinkStatus
1735
+
1736
+
1737
+ class LinkType:
1738
+ xlLinkTypeExcelLinks = 1 # from enum XlLinkType
1739
+ xlLinkTypeOLELinks = 2 # from enum XlLinkType
1740
+
1741
+
1742
+ class ListConflict:
1743
+ xlListConflictDialog = 0 # from enum XlListConflict
1744
+ xlListConflictDiscardAllConflicts = 2 # from enum XlListConflict
1745
+ xlListConflictError = 3 # from enum XlListConflict
1746
+ xlListConflictRetryAllConflicts = 1 # from enum XlListConflict
1747
+
1748
+
1749
+ class ListDataType:
1750
+ xlListDataTypeCheckbox = 9 # from enum XlListDataType
1751
+ xlListDataTypeChoice = 6 # from enum XlListDataType
1752
+ xlListDataTypeChoiceMulti = 7 # from enum XlListDataType
1753
+ xlListDataTypeCounter = 11 # from enum XlListDataType
1754
+ xlListDataTypeCurrency = 4 # from enum XlListDataType
1755
+ xlListDataTypeDateTime = 5 # from enum XlListDataType
1756
+ xlListDataTypeHyperLink = 10 # from enum XlListDataType
1757
+ xlListDataTypeListLookup = 8 # from enum XlListDataType
1758
+ xlListDataTypeMultiLineRichText = 12 # from enum XlListDataType
1759
+ xlListDataTypeMultiLineText = 2 # from enum XlListDataType
1760
+ xlListDataTypeNone = 0 # from enum XlListDataType
1761
+ xlListDataTypeNumber = 3 # from enum XlListDataType
1762
+ xlListDataTypeText = 1 # from enum XlListDataType
1763
+
1764
+
1765
+ class ListObjectSourceType:
1766
+ xlSrcExternal = 0 # from enum XlListObjectSourceType
1767
+ xlSrcQuery = 3 # from enum XlListObjectSourceType
1768
+ xlSrcRange = 1 # from enum XlListObjectSourceType
1769
+ xlSrcXml = 2 # from enum XlListObjectSourceType
1770
+
1771
+
1772
+ class LocationInTable:
1773
+ xlColumnHeader = -4110 # from enum XlLocationInTable
1774
+ xlColumnItem = 5 # from enum XlLocationInTable
1775
+ xlDataHeader = 3 # from enum XlLocationInTable
1776
+ xlDataItem = 7 # from enum XlLocationInTable
1777
+ xlPageHeader = 2 # from enum XlLocationInTable
1778
+ xlPageItem = 6 # from enum XlLocationInTable
1779
+ xlRowHeader = -4153 # from enum XlLocationInTable
1780
+ xlRowItem = 4 # from enum XlLocationInTable
1781
+ xlTableBody = 8 # from enum XlLocationInTable
1782
+
1783
+
1784
+ class LookAt:
1785
+ xlPart = 2 # from enum XlLookAt
1786
+ xlWhole = 1 # from enum XlLookAt
1787
+
1788
+
1789
+ class LookFor:
1790
+ xlLookForBlanks = 0 # from enum XlLookFor
1791
+ xlLookForErrors = 1 # from enum XlLookFor
1792
+ xlLookForFormulas = 2 # from enum XlLookFor
1793
+
1794
+
1795
+ class MSApplication:
1796
+ xlMicrosoftAccess = 4 # from enum XlMSApplication
1797
+ xlMicrosoftFoxPro = 5 # from enum XlMSApplication
1798
+ xlMicrosoftMail = 3 # from enum XlMSApplication
1799
+ xlMicrosoftPowerPoint = 2 # from enum XlMSApplication
1800
+ xlMicrosoftProject = 6 # from enum XlMSApplication
1801
+ xlMicrosoftSchedulePlus = 7 # from enum XlMSApplication
1802
+ xlMicrosoftWord = 1 # from enum XlMSApplication
1803
+
1804
+
1805
+ class MailSystem:
1806
+ xlMAPI = 1 # from enum XlMailSystem
1807
+ xlNoMailSystem = 0 # from enum XlMailSystem
1808
+ xlPowerTalk = 2 # from enum XlMailSystem
1809
+
1810
+
1811
+ class MarkerStyle:
1812
+ xlMarkerStyleAutomatic = -4105 # from enum XlMarkerStyle
1813
+ xlMarkerStyleCircle = 8 # from enum XlMarkerStyle
1814
+ xlMarkerStyleDash = -4115 # from enum XlMarkerStyle
1815
+ xlMarkerStyleDiamond = 2 # from enum XlMarkerStyle
1816
+ xlMarkerStyleDot = -4118 # from enum XlMarkerStyle
1817
+ xlMarkerStyleNone = -4142 # from enum XlMarkerStyle
1818
+ xlMarkerStylePicture = -4147 # from enum XlMarkerStyle
1819
+ xlMarkerStylePlus = 9 # from enum XlMarkerStyle
1820
+ xlMarkerStyleSquare = 1 # from enum XlMarkerStyle
1821
+ xlMarkerStyleStar = 5 # from enum XlMarkerStyle
1822
+ xlMarkerStyleTriangle = 3 # from enum XlMarkerStyle
1823
+ xlMarkerStyleX = -4168 # from enum XlMarkerStyle
1824
+
1825
+
1826
+ class MeasurementUnits:
1827
+ xlCentimeters = 1 # from enum XlMeasurementUnits
1828
+ xlInches = 0 # from enum XlMeasurementUnits
1829
+ xlMillimeters = 2 # from enum XlMeasurementUnits
1830
+
1831
+
1832
+ class MouseButton:
1833
+ xlNoButton = 0 # from enum XlMouseButton
1834
+ xlPrimaryButton = 1 # from enum XlMouseButton
1835
+ xlSecondaryButton = 2 # from enum XlMouseButton
1836
+
1837
+
1838
+ class MousePointer:
1839
+ xlDefault = -4143 # from enum XlMousePointer
1840
+ xlIBeam = 3 # from enum XlMousePointer
1841
+ xlNorthwestArrow = 1 # from enum XlMousePointer
1842
+ xlWait = 2 # from enum XlMousePointer
1843
+
1844
+
1845
+ class OLEType:
1846
+ xlOLEControl = 2 # from enum XlOLEType
1847
+ xlOLEEmbed = 1 # from enum XlOLEType
1848
+ xlOLELink = 0 # from enum XlOLEType
1849
+
1850
+
1851
+ class OLEVerb:
1852
+ xlVerbOpen = 2 # from enum XlOLEVerb
1853
+ xlVerbPrimary = 1 # from enum XlOLEVerb
1854
+
1855
+
1856
+ class OartHorizontalOverflow:
1857
+ xlOartHorizontalOverflowClip = 1 # from enum XlOartHorizontalOverflow
1858
+ xlOartHorizontalOverflowOverflow = 0 # from enum XlOartHorizontalOverflow
1859
+
1860
+
1861
+ class OartVerticalOverflow:
1862
+ xlOartVerticalOverflowClip = 1 # from enum XlOartVerticalOverflow
1863
+ xlOartVerticalOverflowEllipsis = 2 # from enum XlOartVerticalOverflow
1864
+ xlOartVerticalOverflowOverflow = 0 # from enum XlOartVerticalOverflow
1865
+
1866
+
1867
+ class ObjectSize:
1868
+ xlFitToPage = 2 # from enum XlObjectSize
1869
+ xlFullPage = 3 # from enum XlObjectSize
1870
+ xlScreenSize = 1 # from enum XlObjectSize
1871
+
1872
+
1873
+ class Order:
1874
+ xlDownThenOver = 1 # from enum XlOrder
1875
+ xlOverThenDown = 2 # from enum XlOrder
1876
+
1877
+
1878
+ class Orientation:
1879
+ xlDownward = -4170 # from enum XlOrientation
1880
+ xlHorizontal = -4128 # from enum XlOrientation
1881
+ xlUpward = -4171 # from enum XlOrientation
1882
+ xlVertical = -4166 # from enum XlOrientation
1883
+
1884
+
1885
+ class PTSelectionMode:
1886
+ xlBlanks = 4 # from enum XlPTSelectionMode
1887
+ xlButton = 15 # from enum XlPTSelectionMode
1888
+ xlDataAndLabel = 0 # from enum XlPTSelectionMode
1889
+ xlDataOnly = 2 # from enum XlPTSelectionMode
1890
+ xlFirstRow = 256 # from enum XlPTSelectionMode
1891
+ xlLabelOnly = 1 # from enum XlPTSelectionMode
1892
+ xlOrigin = 3 # from enum XlPTSelectionMode
1893
+
1894
+
1895
+ class PageBreak:
1896
+ xlPageBreakAutomatic = -4105 # from enum XlPageBreak
1897
+ xlPageBreakManual = -4135 # from enum XlPageBreak
1898
+ xlPageBreakNone = -4142 # from enum XlPageBreak
1899
+
1900
+
1901
+ class PageBreakExtent:
1902
+ xlPageBreakFull = 1 # from enum XlPageBreakExtent
1903
+ xlPageBreakPartial = 2 # from enum XlPageBreakExtent
1904
+
1905
+
1906
+ class PageOrientation:
1907
+ xlLandscape = 2 # from enum XlPageOrientation
1908
+ xlPortrait = 1 # from enum XlPageOrientation
1909
+
1910
+
1911
+ class PaperSize:
1912
+ xlPaper10x14 = 16 # from enum XlPaperSize
1913
+ xlPaper11x17 = 17 # from enum XlPaperSize
1914
+ xlPaperA3 = 8 # from enum XlPaperSize
1915
+ xlPaperA4 = 9 # from enum XlPaperSize
1916
+ xlPaperA4Small = 10 # from enum XlPaperSize
1917
+ xlPaperA5 = 11 # from enum XlPaperSize
1918
+ xlPaperB4 = 12 # from enum XlPaperSize
1919
+ xlPaperB5 = 13 # from enum XlPaperSize
1920
+ xlPaperCsheet = 24 # from enum XlPaperSize
1921
+ xlPaperDsheet = 25 # from enum XlPaperSize
1922
+ xlPaperEnvelope10 = 20 # from enum XlPaperSize
1923
+ xlPaperEnvelope11 = 21 # from enum XlPaperSize
1924
+ xlPaperEnvelope12 = 22 # from enum XlPaperSize
1925
+ xlPaperEnvelope14 = 23 # from enum XlPaperSize
1926
+ xlPaperEnvelope9 = 19 # from enum XlPaperSize
1927
+ xlPaperEnvelopeB4 = 33 # from enum XlPaperSize
1928
+ xlPaperEnvelopeB5 = 34 # from enum XlPaperSize
1929
+ xlPaperEnvelopeB6 = 35 # from enum XlPaperSize
1930
+ xlPaperEnvelopeC3 = 29 # from enum XlPaperSize
1931
+ xlPaperEnvelopeC4 = 30 # from enum XlPaperSize
1932
+ xlPaperEnvelopeC5 = 28 # from enum XlPaperSize
1933
+ xlPaperEnvelopeC6 = 31 # from enum XlPaperSize
1934
+ xlPaperEnvelopeC65 = 32 # from enum XlPaperSize
1935
+ xlPaperEnvelopeDL = 27 # from enum XlPaperSize
1936
+ xlPaperEnvelopeItaly = 36 # from enum XlPaperSize
1937
+ xlPaperEnvelopeMonarch = 37 # from enum XlPaperSize
1938
+ xlPaperEnvelopePersonal = 38 # from enum XlPaperSize
1939
+ xlPaperEsheet = 26 # from enum XlPaperSize
1940
+ xlPaperExecutive = 7 # from enum XlPaperSize
1941
+ xlPaperFanfoldLegalGerman = 41 # from enum XlPaperSize
1942
+ xlPaperFanfoldStdGerman = 40 # from enum XlPaperSize
1943
+ xlPaperFanfoldUS = 39 # from enum XlPaperSize
1944
+ xlPaperFolio = 14 # from enum XlPaperSize
1945
+ xlPaperLedger = 4 # from enum XlPaperSize
1946
+ xlPaperLegal = 5 # from enum XlPaperSize
1947
+ xlPaperLetter = 1 # from enum XlPaperSize
1948
+ xlPaperLetterSmall = 2 # from enum XlPaperSize
1949
+ xlPaperNote = 18 # from enum XlPaperSize
1950
+ xlPaperQuarto = 15 # from enum XlPaperSize
1951
+ xlPaperStatement = 6 # from enum XlPaperSize
1952
+ xlPaperTabloid = 3 # from enum XlPaperSize
1953
+ xlPaperUser = 256 # from enum XlPaperSize
1954
+
1955
+
1956
+ class ParameterDataType:
1957
+ xlParamTypeBigInt = -5 # from enum XlParameterDataType
1958
+ xlParamTypeBinary = -2 # from enum XlParameterDataType
1959
+ xlParamTypeBit = -7 # from enum XlParameterDataType
1960
+ xlParamTypeChar = 1 # from enum XlParameterDataType
1961
+ xlParamTypeDate = 9 # from enum XlParameterDataType
1962
+ xlParamTypeDecimal = 3 # from enum XlParameterDataType
1963
+ xlParamTypeDouble = 8 # from enum XlParameterDataType
1964
+ xlParamTypeFloat = 6 # from enum XlParameterDataType
1965
+ xlParamTypeInteger = 4 # from enum XlParameterDataType
1966
+ xlParamTypeLongVarBinary = -4 # from enum XlParameterDataType
1967
+ xlParamTypeLongVarChar = -1 # from enum XlParameterDataType
1968
+ xlParamTypeNumeric = 2 # from enum XlParameterDataType
1969
+ xlParamTypeReal = 7 # from enum XlParameterDataType
1970
+ xlParamTypeSmallInt = 5 # from enum XlParameterDataType
1971
+ xlParamTypeTime = 10 # from enum XlParameterDataType
1972
+ xlParamTypeTimestamp = 11 # from enum XlParameterDataType
1973
+ xlParamTypeTinyInt = -6 # from enum XlParameterDataType
1974
+ xlParamTypeUnknown = 0 # from enum XlParameterDataType
1975
+ xlParamTypeVarBinary = -3 # from enum XlParameterDataType
1976
+ xlParamTypeVarChar = 12 # from enum XlParameterDataType
1977
+ xlParamTypeWChar = -8 # from enum XlParameterDataType
1978
+
1979
+
1980
+ class ParameterType:
1981
+ xlConstant = 1 # from enum XlParameterType
1982
+ xlPrompt = 0 # from enum XlParameterType
1983
+ xlRange = 2 # from enum XlParameterType
1984
+
1985
+
1986
+ class PasteSpecialOperation:
1987
+ xlPasteSpecialOperationAdd = 2 # from enum XlPasteSpecialOperation
1988
+ xlPasteSpecialOperationDivide = 5 # from enum XlPasteSpecialOperation
1989
+ xlPasteSpecialOperationMultiply = 4 # from enum XlPasteSpecialOperation
1990
+ xlPasteSpecialOperationNone = -4142 # from enum XlPasteSpecialOperation
1991
+ xlPasteSpecialOperationSubtract = 3 # from enum XlPasteSpecialOperation
1992
+
1993
+
1994
+ class PasteType:
1995
+ xlPasteAll = -4104 # from enum XlPasteType
1996
+ xlPasteAllExceptBorders = 7 # from enum XlPasteType
1997
+ xlPasteAllMergingConditionalFormats = 14 # from enum XlPasteType
1998
+ xlPasteAllUsingSourceTheme = 13 # from enum XlPasteType
1999
+ xlPasteColumnWidths = 8 # from enum XlPasteType
2000
+ xlPasteComments = -4144 # from enum XlPasteType
2001
+ xlPasteFormats = -4122 # from enum XlPasteType
2002
+ xlPasteFormulas = -4123 # from enum XlPasteType
2003
+ xlPasteFormulasAndNumberFormats = 11 # from enum XlPasteType
2004
+ xlPasteValidation = 6 # from enum XlPasteType
2005
+ xlPasteValues = -4163 # from enum XlPasteType
2006
+ xlPasteValuesAndNumberFormats = 12 # from enum XlPasteType
2007
+
2008
+
2009
+ class Pattern:
2010
+ xlPatternAutomatic = -4105 # from enum XlPattern
2011
+ xlPatternChecker = 9 # from enum XlPattern
2012
+ xlPatternCrissCross = 16 # from enum XlPattern
2013
+ xlPatternDown = -4121 # from enum XlPattern
2014
+ xlPatternGray16 = 17 # from enum XlPattern
2015
+ xlPatternGray25 = -4124 # from enum XlPattern
2016
+ xlPatternGray50 = -4125 # from enum XlPattern
2017
+ xlPatternGray75 = -4126 # from enum XlPattern
2018
+ xlPatternGray8 = 18 # from enum XlPattern
2019
+ xlPatternGrid = 15 # from enum XlPattern
2020
+ xlPatternHorizontal = -4128 # from enum XlPattern
2021
+ xlPatternLightDown = 13 # from enum XlPattern
2022
+ xlPatternLightHorizontal = 11 # from enum XlPattern
2023
+ xlPatternLightUp = 14 # from enum XlPattern
2024
+ xlPatternLightVertical = 12 # from enum XlPattern
2025
+ xlPatternLinearGradient = 4000 # from enum XlPattern
2026
+ xlPatternNone = -4142 # from enum XlPattern
2027
+ xlPatternRectangularGradient = 4001 # from enum XlPattern
2028
+ xlPatternSemiGray75 = 10 # from enum XlPattern
2029
+ xlPatternSolid = 1 # from enum XlPattern
2030
+ xlPatternUp = -4162 # from enum XlPattern
2031
+ xlPatternVertical = -4166 # from enum XlPattern
2032
+
2033
+
2034
+ class PhoneticAlignment:
2035
+ xlPhoneticAlignCenter = 2 # from enum XlPhoneticAlignment
2036
+ xlPhoneticAlignDistributed = 3 # from enum XlPhoneticAlignment
2037
+ xlPhoneticAlignLeft = 1 # from enum XlPhoneticAlignment
2038
+ xlPhoneticAlignNoControl = 0 # from enum XlPhoneticAlignment
2039
+
2040
+
2041
+ class PhoneticCharacterType:
2042
+ xlHiragana = 2 # from enum XlPhoneticCharacterType
2043
+ xlKatakana = 1 # from enum XlPhoneticCharacterType
2044
+ xlKatakanaHalf = 0 # from enum XlPhoneticCharacterType
2045
+ xlNoConversion = 3 # from enum XlPhoneticCharacterType
2046
+
2047
+
2048
+ class PictureAppearance:
2049
+ xlPrinter = 2 # from enum XlPictureAppearance
2050
+ xlScreen = 1 # from enum XlPictureAppearance
2051
+
2052
+
2053
+ class PictureConvertorType:
2054
+ xlBMP = 1 # from enum XlPictureConvertorType
2055
+ xlCGM = 7 # from enum XlPictureConvertorType
2056
+ xlDRW = 4 # from enum XlPictureConvertorType
2057
+ xlDXF = 5 # from enum XlPictureConvertorType
2058
+ xlEPS = 8 # from enum XlPictureConvertorType
2059
+ xlHGL = 6 # from enum XlPictureConvertorType
2060
+ xlPCT = 13 # from enum XlPictureConvertorType
2061
+ xlPCX = 10 # from enum XlPictureConvertorType
2062
+ xlPIC = 11 # from enum XlPictureConvertorType
2063
+ xlPLT = 12 # from enum XlPictureConvertorType
2064
+ xlTIF = 9 # from enum XlPictureConvertorType
2065
+ xlWMF = 2 # from enum XlPictureConvertorType
2066
+ xlWPG = 3 # from enum XlPictureConvertorType
2067
+
2068
+
2069
+ class PieSliceIndex:
2070
+ xlCenterPoint = 5 # from enum XlPieSliceIndex
2071
+ xlInnerCenterPoint = 8 # from enum XlPieSliceIndex
2072
+ xlInnerClockwisePoint = 7 # from enum XlPieSliceIndex
2073
+ xlInnerCounterClockwisePoint = 9 # from enum XlPieSliceIndex
2074
+ xlMidClockwiseRadiusPoint = 4 # from enum XlPieSliceIndex
2075
+ xlMidCounterClockwiseRadiusPoint = 6 # from enum XlPieSliceIndex
2076
+ xlOuterCenterPoint = 2 # from enum XlPieSliceIndex
2077
+ xlOuterClockwisePoint = 3 # from enum XlPieSliceIndex
2078
+ xlOuterCounterClockwisePoint = 1 # from enum XlPieSliceIndex
2079
+
2080
+
2081
+ class PieSliceLocation:
2082
+ xlHorizontalCoordinate = 1 # from enum XlPieSliceLocation
2083
+ xlVerticalCoordinate = 2 # from enum XlPieSliceLocation
2084
+
2085
+
2086
+ class PivotCellType:
2087
+ xlPivotCellBlankCell = 9 # from enum XlPivotCellType
2088
+ xlPivotCellCustomSubtotal = 7 # from enum XlPivotCellType
2089
+ xlPivotCellDataField = 4 # from enum XlPivotCellType
2090
+ xlPivotCellDataPivotField = 8 # from enum XlPivotCellType
2091
+ xlPivotCellGrandTotal = 3 # from enum XlPivotCellType
2092
+ xlPivotCellPageFieldItem = 6 # from enum XlPivotCellType
2093
+ xlPivotCellPivotField = 5 # from enum XlPivotCellType
2094
+ xlPivotCellPivotItem = 1 # from enum XlPivotCellType
2095
+ xlPivotCellSubtotal = 2 # from enum XlPivotCellType
2096
+ xlPivotCellValue = 0 # from enum XlPivotCellType
2097
+
2098
+
2099
+ class PivotConditionScope:
2100
+ xlDataFieldScope = 2 # from enum XlPivotConditionScope
2101
+ xlFieldsScope = 1 # from enum XlPivotConditionScope
2102
+ xlSelectionScope = 0 # from enum XlPivotConditionScope
2103
+
2104
+
2105
+ class PivotFieldCalculation:
2106
+ xlDifferenceFrom = 2 # from enum XlPivotFieldCalculation
2107
+ xlIndex = 9 # from enum XlPivotFieldCalculation
2108
+ xlNoAdditionalCalculation = -4143 # from enum XlPivotFieldCalculation
2109
+ xlPercentDifferenceFrom = 4 # from enum XlPivotFieldCalculation
2110
+ xlPercentOf = 3 # from enum XlPivotFieldCalculation
2111
+ xlPercentOfColumn = 7 # from enum XlPivotFieldCalculation
2112
+ xlPercentOfParent = 12 # from enum XlPivotFieldCalculation
2113
+ xlPercentOfParentColumn = 11 # from enum XlPivotFieldCalculation
2114
+ xlPercentOfParentRow = 10 # from enum XlPivotFieldCalculation
2115
+ xlPercentOfRow = 6 # from enum XlPivotFieldCalculation
2116
+ xlPercentOfTotal = 8 # from enum XlPivotFieldCalculation
2117
+ xlPercentRunningTotal = 13 # from enum XlPivotFieldCalculation
2118
+ xlRankAscending = 14 # from enum XlPivotFieldCalculation
2119
+ xlRankDecending = 15 # from enum XlPivotFieldCalculation
2120
+ xlRunningTotal = 5 # from enum XlPivotFieldCalculation
2121
+
2122
+
2123
+ class PivotFieldDataType:
2124
+ xlDate = 2 # from enum XlPivotFieldDataType
2125
+ xlNumber = -4145 # from enum XlPivotFieldDataType
2126
+ xlText = -4158 # from enum XlPivotFieldDataType
2127
+
2128
+
2129
+ class PivotFieldOrientation:
2130
+ xlColumnField = 2 # from enum XlPivotFieldOrientation
2131
+ xlDataField = 4 # from enum XlPivotFieldOrientation
2132
+ xlHidden = 0 # from enum XlPivotFieldOrientation
2133
+ xlPageField = 3 # from enum XlPivotFieldOrientation
2134
+ xlRowField = 1 # from enum XlPivotFieldOrientation
2135
+
2136
+
2137
+ class PivotFieldRepeatLabels:
2138
+ xlDoNotRepeatLabels = 1 # from enum XlPivotFieldRepeatLabels
2139
+ xlRepeatLabels = 2 # from enum XlPivotFieldRepeatLabels
2140
+
2141
+
2142
+ class PivotFilterType:
2143
+ xlAfter = 33 # from enum XlPivotFilterType
2144
+ xlAfterOrEqualTo = 34 # from enum XlPivotFilterType
2145
+ xlAllDatesInPeriodApril = 60 # from enum XlPivotFilterType
2146
+ xlAllDatesInPeriodAugust = 64 # from enum XlPivotFilterType
2147
+ xlAllDatesInPeriodDecember = 68 # from enum XlPivotFilterType
2148
+ xlAllDatesInPeriodFebruary = 58 # from enum XlPivotFilterType
2149
+ xlAllDatesInPeriodJanuary = 57 # from enum XlPivotFilterType
2150
+ xlAllDatesInPeriodJuly = 63 # from enum XlPivotFilterType
2151
+ xlAllDatesInPeriodJune = 62 # from enum XlPivotFilterType
2152
+ xlAllDatesInPeriodMarch = 59 # from enum XlPivotFilterType
2153
+ xlAllDatesInPeriodMay = 61 # from enum XlPivotFilterType
2154
+ xlAllDatesInPeriodNovember = 67 # from enum XlPivotFilterType
2155
+ xlAllDatesInPeriodOctober = 66 # from enum XlPivotFilterType
2156
+ xlAllDatesInPeriodQuarter1 = 53 # from enum XlPivotFilterType
2157
+ xlAllDatesInPeriodQuarter2 = 54 # from enum XlPivotFilterType
2158
+ xlAllDatesInPeriodQuarter3 = 55 # from enum XlPivotFilterType
2159
+ xlAllDatesInPeriodQuarter4 = 56 # from enum XlPivotFilterType
2160
+ xlAllDatesInPeriodSeptember = 65 # from enum XlPivotFilterType
2161
+ xlBefore = 31 # from enum XlPivotFilterType
2162
+ xlBeforeOrEqualTo = 32 # from enum XlPivotFilterType
2163
+ xlBottomCount = 2 # from enum XlPivotFilterType
2164
+ xlBottomPercent = 4 # from enum XlPivotFilterType
2165
+ xlBottomSum = 6 # from enum XlPivotFilterType
2166
+ xlCaptionBeginsWith = 17 # from enum XlPivotFilterType
2167
+ xlCaptionContains = 21 # from enum XlPivotFilterType
2168
+ xlCaptionDoesNotBeginWith = 18 # from enum XlPivotFilterType
2169
+ xlCaptionDoesNotContain = 22 # from enum XlPivotFilterType
2170
+ xlCaptionDoesNotEndWith = 20 # from enum XlPivotFilterType
2171
+ xlCaptionDoesNotEqual = 16 # from enum XlPivotFilterType
2172
+ xlCaptionEndsWith = 19 # from enum XlPivotFilterType
2173
+ xlCaptionEquals = 15 # from enum XlPivotFilterType
2174
+ xlCaptionIsBetween = 27 # from enum XlPivotFilterType
2175
+ xlCaptionIsGreaterThan = 23 # from enum XlPivotFilterType
2176
+ xlCaptionIsGreaterThanOrEqualTo = 24 # from enum XlPivotFilterType
2177
+ xlCaptionIsLessThan = 25 # from enum XlPivotFilterType
2178
+ xlCaptionIsLessThanOrEqualTo = 26 # from enum XlPivotFilterType
2179
+ xlCaptionIsNotBetween = 28 # from enum XlPivotFilterType
2180
+ xlDateBetween = 35 # from enum XlPivotFilterType
2181
+ xlDateLastMonth = 45 # from enum XlPivotFilterType
2182
+ xlDateLastQuarter = 48 # from enum XlPivotFilterType
2183
+ xlDateLastWeek = 42 # from enum XlPivotFilterType
2184
+ xlDateLastYear = 51 # from enum XlPivotFilterType
2185
+ xlDateNextMonth = 43 # from enum XlPivotFilterType
2186
+ xlDateNextQuarter = 46 # from enum XlPivotFilterType
2187
+ xlDateNextWeek = 40 # from enum XlPivotFilterType
2188
+ xlDateNextYear = 49 # from enum XlPivotFilterType
2189
+ xlDateNotBetween = 36 # from enum XlPivotFilterType
2190
+ xlDateThisMonth = 44 # from enum XlPivotFilterType
2191
+ xlDateThisQuarter = 47 # from enum XlPivotFilterType
2192
+ xlDateThisWeek = 41 # from enum XlPivotFilterType
2193
+ xlDateThisYear = 50 # from enum XlPivotFilterType
2194
+ xlDateToday = 38 # from enum XlPivotFilterType
2195
+ xlDateTomorrow = 37 # from enum XlPivotFilterType
2196
+ xlDateYesterday = 39 # from enum XlPivotFilterType
2197
+ xlNotSpecificDate = 30 # from enum XlPivotFilterType
2198
+ xlSpecificDate = 29 # from enum XlPivotFilterType
2199
+ xlTopCount = 1 # from enum XlPivotFilterType
2200
+ xlTopPercent = 3 # from enum XlPivotFilterType
2201
+ xlTopSum = 5 # from enum XlPivotFilterType
2202
+ xlValueDoesNotEqual = 8 # from enum XlPivotFilterType
2203
+ xlValueEquals = 7 # from enum XlPivotFilterType
2204
+ xlValueIsBetween = 13 # from enum XlPivotFilterType
2205
+ xlValueIsGreaterThan = 9 # from enum XlPivotFilterType
2206
+ xlValueIsGreaterThanOrEqualTo = 10 # from enum XlPivotFilterType
2207
+ xlValueIsLessThan = 11 # from enum XlPivotFilterType
2208
+ xlValueIsLessThanOrEqualTo = 12 # from enum XlPivotFilterType
2209
+ xlValueIsNotBetween = 14 # from enum XlPivotFilterType
2210
+ xlYearToDate = 52 # from enum XlPivotFilterType
2211
+
2212
+
2213
+ class PivotFormatType:
2214
+ xlPTClassic = 20 # from enum XlPivotFormatType
2215
+ xlPTNone = 21 # from enum XlPivotFormatType
2216
+ xlReport1 = 0 # from enum XlPivotFormatType
2217
+ xlReport10 = 9 # from enum XlPivotFormatType
2218
+ xlReport2 = 1 # from enum XlPivotFormatType
2219
+ xlReport3 = 2 # from enum XlPivotFormatType
2220
+ xlReport4 = 3 # from enum XlPivotFormatType
2221
+ xlReport5 = 4 # from enum XlPivotFormatType
2222
+ xlReport6 = 5 # from enum XlPivotFormatType
2223
+ xlReport7 = 6 # from enum XlPivotFormatType
2224
+ xlReport8 = 7 # from enum XlPivotFormatType
2225
+ xlReport9 = 8 # from enum XlPivotFormatType
2226
+ xlTable1 = 10 # from enum XlPivotFormatType
2227
+ xlTable10 = 19 # from enum XlPivotFormatType
2228
+ xlTable2 = 11 # from enum XlPivotFormatType
2229
+ xlTable3 = 12 # from enum XlPivotFormatType
2230
+ xlTable4 = 13 # from enum XlPivotFormatType
2231
+ xlTable5 = 14 # from enum XlPivotFormatType
2232
+ xlTable6 = 15 # from enum XlPivotFormatType
2233
+ xlTable7 = 16 # from enum XlPivotFormatType
2234
+ xlTable8 = 17 # from enum XlPivotFormatType
2235
+ xlTable9 = 18 # from enum XlPivotFormatType
2236
+
2237
+
2238
+ class PivotLineType:
2239
+ xlPivotLineBlank = 3 # from enum XlPivotLineType
2240
+ xlPivotLineGrandTotal = 2 # from enum XlPivotLineType
2241
+ xlPivotLineRegular = 0 # from enum XlPivotLineType
2242
+ xlPivotLineSubtotal = 1 # from enum XlPivotLineType
2243
+
2244
+
2245
+ class PivotTableMissingItems:
2246
+ xlMissingItemsDefault = -1 # from enum XlPivotTableMissingItems
2247
+ xlMissingItemsMax = 32500 # from enum XlPivotTableMissingItems
2248
+ xlMissingItemsMax2 = 1048576 # from enum XlPivotTableMissingItems
2249
+ xlMissingItemsNone = 0 # from enum XlPivotTableMissingItems
2250
+
2251
+
2252
+ class PivotTableSourceType:
2253
+ xlConsolidation = 3 # from enum XlPivotTableSourceType
2254
+ xlDatabase = 1 # from enum XlPivotTableSourceType
2255
+ xlExternal = 2 # from enum XlPivotTableSourceType
2256
+ xlPivotTable = -4148 # from enum XlPivotTableSourceType
2257
+ xlScenario = 4 # from enum XlPivotTableSourceType
2258
+
2259
+
2260
+ class PivotTableVersionList:
2261
+ xlPivotTableVersion10 = 1 # from enum XlPivotTableVersionList
2262
+ xlPivotTableVersion11 = 2 # from enum XlPivotTableVersionList
2263
+ xlPivotTableVersion12 = 3 # from enum XlPivotTableVersionList
2264
+ xlPivotTableVersion14 = 4 # from enum XlPivotTableVersionList
2265
+ xlPivotTableVersion2000 = 0 # from enum XlPivotTableVersionList
2266
+ xlPivotTableVersionCurrent = -1 # from enum XlPivotTableVersionList
2267
+
2268
+
2269
+ class Placement:
2270
+ xlFreeFloating = 3 # from enum XlPlacement
2271
+ xlMove = 2 # from enum XlPlacement
2272
+ xlMoveAndSize = 1 # from enum XlPlacement
2273
+
2274
+
2275
+ class Platform:
2276
+ xlMSDOS = 3 # from enum XlPlatform
2277
+ xlMacintosh = 1 # from enum XlPlatform
2278
+ xlWindows = 2 # from enum XlPlatform
2279
+
2280
+
2281
+ class PortugueseReform:
2282
+ xlPortugueseBoth = 3 # from enum XlPortugueseReform
2283
+ xlPortuguesePostReform = 2 # from enum XlPortugueseReform
2284
+ xlPortuguesePreReform = 1 # from enum XlPortugueseReform
2285
+
2286
+
2287
+ class PrintErrors:
2288
+ xlPrintErrorsBlank = 1 # from enum XlPrintErrors
2289
+ xlPrintErrorsDash = 2 # from enum XlPrintErrors
2290
+ xlPrintErrorsDisplayed = 0 # from enum XlPrintErrors
2291
+ xlPrintErrorsNA = 3 # from enum XlPrintErrors
2292
+
2293
+
2294
+ class PrintLocation:
2295
+ xlPrintInPlace = 16 # from enum XlPrintLocation
2296
+ xlPrintNoComments = -4142 # from enum XlPrintLocation
2297
+ xlPrintSheetEnd = 1 # from enum XlPrintLocation
2298
+
2299
+
2300
+ class Priority:
2301
+ xlPriorityHigh = -4127 # from enum XlPriority
2302
+ xlPriorityLow = -4134 # from enum XlPriority
2303
+ xlPriorityNormal = -4143 # from enum XlPriority
2304
+
2305
+
2306
+ class PropertyDisplayedIn:
2307
+ xlDisplayPropertyInPivotTable = 1 # from enum XlPropertyDisplayedIn
2308
+ xlDisplayPropertyInPivotTableAndTooltip = 3 # from enum XlPropertyDisplayedIn
2309
+ xlDisplayPropertyInTooltip = 2 # from enum XlPropertyDisplayedIn
2310
+
2311
+
2312
+ class ProtectedViewCloseReason:
2313
+ xlProtectedViewCloseEdit = 1 # from enum XlProtectedViewCloseReason
2314
+ xlProtectedViewCloseForced = 2 # from enum XlProtectedViewCloseReason
2315
+ xlProtectedViewCloseNormal = 0 # from enum XlProtectedViewCloseReason
2316
+
2317
+
2318
+ class ProtectedViewWindowState:
2319
+ xlProtectedViewWindowMaximized = 2 # from enum XlProtectedViewWindowState
2320
+ xlProtectedViewWindowMinimized = 1 # from enum XlProtectedViewWindowState
2321
+ xlProtectedViewWindowNormal = 0 # from enum XlProtectedViewWindowState
2322
+
2323
+
2324
+ class QueryType:
2325
+ xlADORecordset = 7 # from enum XlQueryType
2326
+ xlDAORecordset = 2 # from enum XlQueryType
2327
+ xlODBCQuery = 1 # from enum XlQueryType
2328
+ xlOLEDBQuery = 5 # from enum XlQueryType
2329
+ xlTextImport = 6 # from enum XlQueryType
2330
+ xlWebQuery = 4 # from enum XlQueryType
2331
+
2332
+
2333
+ class RangeAutoFormat:
2334
+ xlRangeAutoFormat3DEffects1 = 13 # from enum XlRangeAutoFormat
2335
+ xlRangeAutoFormat3DEffects2 = 14 # from enum XlRangeAutoFormat
2336
+ xlRangeAutoFormatAccounting1 = 4 # from enum XlRangeAutoFormat
2337
+ xlRangeAutoFormatAccounting2 = 5 # from enum XlRangeAutoFormat
2338
+ xlRangeAutoFormatAccounting3 = 6 # from enum XlRangeAutoFormat
2339
+ xlRangeAutoFormatAccounting4 = 17 # from enum XlRangeAutoFormat
2340
+ xlRangeAutoFormatClassic1 = 1 # from enum XlRangeAutoFormat
2341
+ xlRangeAutoFormatClassic2 = 2 # from enum XlRangeAutoFormat
2342
+ xlRangeAutoFormatClassic3 = 3 # from enum XlRangeAutoFormat
2343
+ xlRangeAutoFormatClassicPivotTable = 31 # from enum XlRangeAutoFormat
2344
+ xlRangeAutoFormatColor1 = 7 # from enum XlRangeAutoFormat
2345
+ xlRangeAutoFormatColor2 = 8 # from enum XlRangeAutoFormat
2346
+ xlRangeAutoFormatColor3 = 9 # from enum XlRangeAutoFormat
2347
+ xlRangeAutoFormatList1 = 10 # from enum XlRangeAutoFormat
2348
+ xlRangeAutoFormatList2 = 11 # from enum XlRangeAutoFormat
2349
+ xlRangeAutoFormatList3 = 12 # from enum XlRangeAutoFormat
2350
+ xlRangeAutoFormatLocalFormat1 = 15 # from enum XlRangeAutoFormat
2351
+ xlRangeAutoFormatLocalFormat2 = 16 # from enum XlRangeAutoFormat
2352
+ xlRangeAutoFormatLocalFormat3 = 19 # from enum XlRangeAutoFormat
2353
+ xlRangeAutoFormatLocalFormat4 = 20 # from enum XlRangeAutoFormat
2354
+ xlRangeAutoFormatNone = -4142 # from enum XlRangeAutoFormat
2355
+ xlRangeAutoFormatPTNone = 42 # from enum XlRangeAutoFormat
2356
+ xlRangeAutoFormatReport1 = 21 # from enum XlRangeAutoFormat
2357
+ xlRangeAutoFormatReport10 = 30 # from enum XlRangeAutoFormat
2358
+ xlRangeAutoFormatReport2 = 22 # from enum XlRangeAutoFormat
2359
+ xlRangeAutoFormatReport3 = 23 # from enum XlRangeAutoFormat
2360
+ xlRangeAutoFormatReport4 = 24 # from enum XlRangeAutoFormat
2361
+ xlRangeAutoFormatReport5 = 25 # from enum XlRangeAutoFormat
2362
+ xlRangeAutoFormatReport6 = 26 # from enum XlRangeAutoFormat
2363
+ xlRangeAutoFormatReport7 = 27 # from enum XlRangeAutoFormat
2364
+ xlRangeAutoFormatReport8 = 28 # from enum XlRangeAutoFormat
2365
+ xlRangeAutoFormatReport9 = 29 # from enum XlRangeAutoFormat
2366
+ xlRangeAutoFormatSimple = -4154 # from enum XlRangeAutoFormat
2367
+ xlRangeAutoFormatTable1 = 32 # from enum XlRangeAutoFormat
2368
+ xlRangeAutoFormatTable10 = 41 # from enum XlRangeAutoFormat
2369
+ xlRangeAutoFormatTable2 = 33 # from enum XlRangeAutoFormat
2370
+ xlRangeAutoFormatTable3 = 34 # from enum XlRangeAutoFormat
2371
+ xlRangeAutoFormatTable4 = 35 # from enum XlRangeAutoFormat
2372
+ xlRangeAutoFormatTable5 = 36 # from enum XlRangeAutoFormat
2373
+ xlRangeAutoFormatTable6 = 37 # from enum XlRangeAutoFormat
2374
+ xlRangeAutoFormatTable7 = 38 # from enum XlRangeAutoFormat
2375
+ xlRangeAutoFormatTable8 = 39 # from enum XlRangeAutoFormat
2376
+ xlRangeAutoFormatTable9 = 40 # from enum XlRangeAutoFormat
2377
+
2378
+
2379
+ class RangeValueDataType:
2380
+ xlRangeValueDefault = 10 # from enum XlRangeValueDataType
2381
+ xlRangeValueMSPersistXML = 12 # from enum XlRangeValueDataType
2382
+ xlRangeValueXMLSpreadsheet = 11 # from enum XlRangeValueDataType
2383
+
2384
+
2385
+ class ReferenceStyle:
2386
+ xlA1 = 1 # from enum XlReferenceStyle
2387
+ xlR1C1 = -4150 # from enum XlReferenceStyle
2388
+
2389
+
2390
+ class ReferenceType:
2391
+ xlAbsRowRelColumn = 2 # from enum XlReferenceType
2392
+ xlAbsolute = 1 # from enum XlReferenceType
2393
+ xlRelRowAbsColumn = 3 # from enum XlReferenceType
2394
+ xlRelative = 4 # from enum XlReferenceType
2395
+
2396
+
2397
+ class RemoveDocInfoType:
2398
+ xlRDIAll = 99 # from enum XlRemoveDocInfoType
2399
+ xlRDIComments = 1 # from enum XlRemoveDocInfoType
2400
+ xlRDIContentType = 16 # from enum XlRemoveDocInfoType
2401
+ xlRDIDefinedNameComments = 18 # from enum XlRemoveDocInfoType
2402
+ xlRDIDocumentManagementPolicy = 15 # from enum XlRemoveDocInfoType
2403
+ xlRDIDocumentProperties = 8 # from enum XlRemoveDocInfoType
2404
+ xlRDIDocumentServerProperties = 14 # from enum XlRemoveDocInfoType
2405
+ xlRDIDocumentWorkspace = 10 # from enum XlRemoveDocInfoType
2406
+ xlRDIEmailHeader = 5 # from enum XlRemoveDocInfoType
2407
+ xlRDIInactiveDataConnections = 19 # from enum XlRemoveDocInfoType
2408
+ xlRDIInkAnnotations = 11 # from enum XlRemoveDocInfoType
2409
+ xlRDIPrinterPath = 20 # from enum XlRemoveDocInfoType
2410
+ xlRDIPublishInfo = 13 # from enum XlRemoveDocInfoType
2411
+ xlRDIRemovePersonalInformation = 4 # from enum XlRemoveDocInfoType
2412
+ xlRDIRoutingSlip = 6 # from enum XlRemoveDocInfoType
2413
+ xlRDIScenarioComments = 12 # from enum XlRemoveDocInfoType
2414
+ xlRDISendForReview = 7 # from enum XlRemoveDocInfoType
2415
+
2416
+
2417
+ class RgbColor:
2418
+ rgbAliceBlue = 16775408 # from enum XlRgbColor
2419
+ rgbAntiqueWhite = 14150650 # from enum XlRgbColor
2420
+ rgbAqua = 16776960 # from enum XlRgbColor
2421
+ rgbAquamarine = 13959039 # from enum XlRgbColor
2422
+ rgbAzure = 16777200 # from enum XlRgbColor
2423
+ rgbBeige = 14480885 # from enum XlRgbColor
2424
+ rgbBisque = 12903679 # from enum XlRgbColor
2425
+ rgbBlack = 0 # from enum XlRgbColor
2426
+ rgbBlanchedAlmond = 13495295 # from enum XlRgbColor
2427
+ rgbBlue = 16711680 # from enum XlRgbColor
2428
+ rgbBlueViolet = 14822282 # from enum XlRgbColor
2429
+ rgbBrown = 2763429 # from enum XlRgbColor
2430
+ rgbBurlyWood = 8894686 # from enum XlRgbColor
2431
+ rgbCadetBlue = 10526303 # from enum XlRgbColor
2432
+ rgbChartreuse = 65407 # from enum XlRgbColor
2433
+ rgbCoral = 5275647 # from enum XlRgbColor
2434
+ rgbCornflowerBlue = 15570276 # from enum XlRgbColor
2435
+ rgbCornsilk = 14481663 # from enum XlRgbColor
2436
+ rgbCrimson = 3937500 # from enum XlRgbColor
2437
+ rgbDarkBlue = 9109504 # from enum XlRgbColor
2438
+ rgbDarkCyan = 9145088 # from enum XlRgbColor
2439
+ rgbDarkGoldenrod = 755384 # from enum XlRgbColor
2440
+ rgbDarkGray = 11119017 # from enum XlRgbColor
2441
+ rgbDarkGreen = 25600 # from enum XlRgbColor
2442
+ rgbDarkGrey = 11119017 # from enum XlRgbColor
2443
+ rgbDarkKhaki = 7059389 # from enum XlRgbColor
2444
+ rgbDarkMagenta = 9109643 # from enum XlRgbColor
2445
+ rgbDarkOliveGreen = 3107669 # from enum XlRgbColor
2446
+ rgbDarkOrange = 36095 # from enum XlRgbColor
2447
+ rgbDarkOrchid = 13382297 # from enum XlRgbColor
2448
+ rgbDarkRed = 139 # from enum XlRgbColor
2449
+ rgbDarkSalmon = 8034025 # from enum XlRgbColor
2450
+ rgbDarkSeaGreen = 9419919 # from enum XlRgbColor
2451
+ rgbDarkSlateBlue = 9125192 # from enum XlRgbColor
2452
+ rgbDarkSlateGray = 5197615 # from enum XlRgbColor
2453
+ rgbDarkSlateGrey = 5197615 # from enum XlRgbColor
2454
+ rgbDarkTurquoise = 13749760 # from enum XlRgbColor
2455
+ rgbDarkViolet = 13828244 # from enum XlRgbColor
2456
+ rgbDeepPink = 9639167 # from enum XlRgbColor
2457
+ rgbDeepSkyBlue = 16760576 # from enum XlRgbColor
2458
+ rgbDimGray = 6908265 # from enum XlRgbColor
2459
+ rgbDimGrey = 6908265 # from enum XlRgbColor
2460
+ rgbDodgerBlue = 16748574 # from enum XlRgbColor
2461
+ rgbFireBrick = 2237106 # from enum XlRgbColor
2462
+ rgbFloralWhite = 15792895 # from enum XlRgbColor
2463
+ rgbForestGreen = 2263842 # from enum XlRgbColor
2464
+ rgbFuchsia = 16711935 # from enum XlRgbColor
2465
+ rgbGainsboro = 14474460 # from enum XlRgbColor
2466
+ rgbGhostWhite = 16775416 # from enum XlRgbColor
2467
+ rgbGold = 55295 # from enum XlRgbColor
2468
+ rgbGoldenrod = 2139610 # from enum XlRgbColor
2469
+ rgbGray = 8421504 # from enum XlRgbColor
2470
+ rgbGreen = 32768 # from enum XlRgbColor
2471
+ rgbGreenYellow = 3145645 # from enum XlRgbColor
2472
+ rgbGrey = 8421504 # from enum XlRgbColor
2473
+ rgbHoneydew = 15794160 # from enum XlRgbColor
2474
+ rgbHotPink = 11823615 # from enum XlRgbColor
2475
+ rgbIndianRed = 6053069 # from enum XlRgbColor
2476
+ rgbIndigo = 8519755 # from enum XlRgbColor
2477
+ rgbIvory = 15794175 # from enum XlRgbColor
2478
+ rgbKhaki = 9234160 # from enum XlRgbColor
2479
+ rgbLavender = 16443110 # from enum XlRgbColor
2480
+ rgbLavenderBlush = 16118015 # from enum XlRgbColor
2481
+ rgbLawnGreen = 64636 # from enum XlRgbColor
2482
+ rgbLemonChiffon = 13499135 # from enum XlRgbColor
2483
+ rgbLightBlue = 15128749 # from enum XlRgbColor
2484
+ rgbLightCoral = 8421616 # from enum XlRgbColor
2485
+ rgbLightCyan = 9145088 # from enum XlRgbColor
2486
+ rgbLightGoldenrodYellow = 13826810 # from enum XlRgbColor
2487
+ rgbLightGray = 13882323 # from enum XlRgbColor
2488
+ rgbLightGreen = 9498256 # from enum XlRgbColor
2489
+ rgbLightGrey = 13882323 # from enum XlRgbColor
2490
+ rgbLightPink = 12695295 # from enum XlRgbColor
2491
+ rgbLightSalmon = 8036607 # from enum XlRgbColor
2492
+ rgbLightSeaGreen = 11186720 # from enum XlRgbColor
2493
+ rgbLightSkyBlue = 16436871 # from enum XlRgbColor
2494
+ rgbLightSlateGray = 10061943 # from enum XlRgbColor
2495
+ rgbLightSlateGrey = 10061943 # from enum XlRgbColor
2496
+ rgbLightSteelBlue = 14599344 # from enum XlRgbColor
2497
+ rgbLightYellow = 14745599 # from enum XlRgbColor
2498
+ rgbLime = 65280 # from enum XlRgbColor
2499
+ rgbLimeGreen = 3329330 # from enum XlRgbColor
2500
+ rgbLinen = 15134970 # from enum XlRgbColor
2501
+ rgbMaroon = 128 # from enum XlRgbColor
2502
+ rgbMediumAquamarine = 11206502 # from enum XlRgbColor
2503
+ rgbMediumBlue = 13434880 # from enum XlRgbColor
2504
+ rgbMediumOrchid = 13850042 # from enum XlRgbColor
2505
+ rgbMediumPurple = 14381203 # from enum XlRgbColor
2506
+ rgbMediumSeaGreen = 7451452 # from enum XlRgbColor
2507
+ rgbMediumSlateBlue = 15624315 # from enum XlRgbColor
2508
+ rgbMediumSpringGreen = 10156544 # from enum XlRgbColor
2509
+ rgbMediumTurquoise = 13422920 # from enum XlRgbColor
2510
+ rgbMediumVioletRed = 8721863 # from enum XlRgbColor
2511
+ rgbMidnightBlue = 7346457 # from enum XlRgbColor
2512
+ rgbMintCream = 16449525 # from enum XlRgbColor
2513
+ rgbMistyRose = 14804223 # from enum XlRgbColor
2514
+ rgbMoccasin = 11920639 # from enum XlRgbColor
2515
+ rgbNavajoWhite = 11394815 # from enum XlRgbColor
2516
+ rgbNavy = 8388608 # from enum XlRgbColor
2517
+ rgbNavyBlue = 8388608 # from enum XlRgbColor
2518
+ rgbOldLace = 15136253 # from enum XlRgbColor
2519
+ rgbOlive = 32896 # from enum XlRgbColor
2520
+ rgbOliveDrab = 2330219 # from enum XlRgbColor
2521
+ rgbOrange = 42495 # from enum XlRgbColor
2522
+ rgbOrangeRed = 17919 # from enum XlRgbColor
2523
+ rgbOrchid = 14053594 # from enum XlRgbColor
2524
+ rgbPaleGoldenrod = 7071982 # from enum XlRgbColor
2525
+ rgbPaleGreen = 10025880 # from enum XlRgbColor
2526
+ rgbPaleTurquoise = 15658671 # from enum XlRgbColor
2527
+ rgbPaleVioletRed = 9662683 # from enum XlRgbColor
2528
+ rgbPapayaWhip = 14020607 # from enum XlRgbColor
2529
+ rgbPeachPuff = 12180223 # from enum XlRgbColor
2530
+ rgbPeru = 4163021 # from enum XlRgbColor
2531
+ rgbPink = 13353215 # from enum XlRgbColor
2532
+ rgbPlum = 14524637 # from enum XlRgbColor
2533
+ rgbPowderBlue = 15130800 # from enum XlRgbColor
2534
+ rgbPurple = 8388736 # from enum XlRgbColor
2535
+ rgbRed = 255 # from enum XlRgbColor
2536
+ rgbRosyBrown = 9408444 # from enum XlRgbColor
2537
+ rgbRoyalBlue = 14772545 # from enum XlRgbColor
2538
+ rgbSalmon = 7504122 # from enum XlRgbColor
2539
+ rgbSandyBrown = 6333684 # from enum XlRgbColor
2540
+ rgbSeaGreen = 5737262 # from enum XlRgbColor
2541
+ rgbSeashell = 15660543 # from enum XlRgbColor
2542
+ rgbSienna = 2970272 # from enum XlRgbColor
2543
+ rgbSilver = 12632256 # from enum XlRgbColor
2544
+ rgbSkyBlue = 15453831 # from enum XlRgbColor
2545
+ rgbSlateBlue = 13458026 # from enum XlRgbColor
2546
+ rgbSlateGray = 9470064 # from enum XlRgbColor
2547
+ rgbSlateGrey = 9470064 # from enum XlRgbColor
2548
+ rgbSnow = 16448255 # from enum XlRgbColor
2549
+ rgbSpringGreen = 8388352 # from enum XlRgbColor
2550
+ rgbSteelBlue = 11829830 # from enum XlRgbColor
2551
+ rgbTan = 9221330 # from enum XlRgbColor
2552
+ rgbTeal = 8421376 # from enum XlRgbColor
2553
+ rgbThistle = 14204888 # from enum XlRgbColor
2554
+ rgbTomato = 4678655 # from enum XlRgbColor
2555
+ rgbTurquoise = 13688896 # from enum XlRgbColor
2556
+ rgbViolet = 15631086 # from enum XlRgbColor
2557
+ rgbWheat = 11788021 # from enum XlRgbColor
2558
+ rgbWhite = 16777215 # from enum XlRgbColor
2559
+ rgbWhiteSmoke = 16119285 # from enum XlRgbColor
2560
+ rgbYellow = 65535 # from enum XlRgbColor
2561
+ rgbYellowGreen = 3329434 # from enum XlRgbColor
2562
+
2563
+
2564
+ class RobustConnect:
2565
+ xlAlways = 1 # from enum XlRobustConnect
2566
+ xlAsRequired = 0 # from enum XlRobustConnect
2567
+ xlNever = 2 # from enum XlRobustConnect
2568
+
2569
+
2570
+ class RoutingSlipDelivery:
2571
+ xlAllAtOnce = 2 # from enum XlRoutingSlipDelivery
2572
+ xlOneAfterAnother = 1 # from enum XlRoutingSlipDelivery
2573
+
2574
+
2575
+ class RoutingSlipStatus:
2576
+ xlNotYetRouted = 0 # from enum XlRoutingSlipStatus
2577
+ xlRoutingComplete = 2 # from enum XlRoutingSlipStatus
2578
+ xlRoutingInProgress = 1 # from enum XlRoutingSlipStatus
2579
+
2580
+
2581
+ class RowCol:
2582
+ xlColumns = 2 # from enum XlRowCol
2583
+ xlRows = 1 # from enum XlRowCol
2584
+
2585
+
2586
+ class RunAutoMacro:
2587
+ xlAutoActivate = 3 # from enum XlRunAutoMacro
2588
+ xlAutoClose = 2 # from enum XlRunAutoMacro
2589
+ xlAutoDeactivate = 4 # from enum XlRunAutoMacro
2590
+ xlAutoOpen = 1 # from enum XlRunAutoMacro
2591
+
2592
+
2593
+ class SaveAction:
2594
+ xlDoNotSaveChanges = 2 # from enum XlSaveAction
2595
+ xlSaveChanges = 1 # from enum XlSaveAction
2596
+
2597
+
2598
+ class SaveAsAccessMode:
2599
+ xlExclusive = 3 # from enum XlSaveAsAccessMode
2600
+ xlNoChange = 1 # from enum XlSaveAsAccessMode
2601
+ xlShared = 2 # from enum XlSaveAsAccessMode
2602
+
2603
+
2604
+ class SaveConflictResolution:
2605
+ xlLocalSessionChanges = 2 # from enum XlSaveConflictResolution
2606
+ xlOtherSessionChanges = 3 # from enum XlSaveConflictResolution
2607
+ xlUserResolution = 1 # from enum XlSaveConflictResolution
2608
+
2609
+
2610
+ class ScaleType:
2611
+ xlScaleLinear = -4132 # from enum XlScaleType
2612
+ xlScaleLogarithmic = -4133 # from enum XlScaleType
2613
+
2614
+
2615
+ class SearchDirection:
2616
+ xlNext = 1 # from enum XlSearchDirection
2617
+ xlPrevious = 2 # from enum XlSearchDirection
2618
+
2619
+
2620
+ class SearchOrder:
2621
+ xlByColumns = 2 # from enum XlSearchOrder
2622
+ xlByRows = 1 # from enum XlSearchOrder
2623
+
2624
+
2625
+ class SearchWithin:
2626
+ xlWithinSheet = 1 # from enum XlSearchWithin
2627
+ xlWithinWorkbook = 2 # from enum XlSearchWithin
2628
+
2629
+
2630
+ class SheetType:
2631
+ xlChart = -4109 # from enum XlSheetType
2632
+ xlDialogSheet = -4116 # from enum XlSheetType
2633
+ xlExcel4IntlMacroSheet = 4 # from enum XlSheetType
2634
+ xlExcel4MacroSheet = 3 # from enum XlSheetType
2635
+ xlWorksheet = -4167 # from enum XlSheetType
2636
+
2637
+
2638
+ class SheetVisibility:
2639
+ xlSheetHidden = 0 # from enum XlSheetVisibility
2640
+ xlSheetVeryHidden = 2 # from enum XlSheetVisibility
2641
+ xlSheetVisible = -1 # from enum XlSheetVisibility
2642
+
2643
+
2644
+ class SizeRepresents:
2645
+ xlSizeIsArea = 1 # from enum XlSizeRepresents
2646
+ xlSizeIsWidth = 2 # from enum XlSizeRepresents
2647
+
2648
+
2649
+ class SlicerCrossFilterType:
2650
+ xlSlicerCrossFilterShowItemsWithDataAtTop = 2 # from enum XlSlicerCrossFilterType
2651
+ xlSlicerCrossFilterShowItemsWithNoData = 3 # from enum XlSlicerCrossFilterType
2652
+ xlSlicerNoCrossFilter = 1 # from enum XlSlicerCrossFilterType
2653
+
2654
+
2655
+ class SlicerSort:
2656
+ xlSlicerSortAscending = 2 # from enum XlSlicerSort
2657
+ xlSlicerSortDataSourceOrder = 1 # from enum XlSlicerSort
2658
+ xlSlicerSortDescending = 3 # from enum XlSlicerSort
2659
+
2660
+
2661
+ class SmartTagControlType:
2662
+ xlSmartTagControlActiveX = 13 # from enum XlSmartTagControlType
2663
+ xlSmartTagControlButton = 6 # from enum XlSmartTagControlType
2664
+ xlSmartTagControlCheckbox = 9 # from enum XlSmartTagControlType
2665
+ xlSmartTagControlCombo = 12 # from enum XlSmartTagControlType
2666
+ xlSmartTagControlHelp = 3 # from enum XlSmartTagControlType
2667
+ xlSmartTagControlHelpURL = 4 # from enum XlSmartTagControlType
2668
+ xlSmartTagControlImage = 8 # from enum XlSmartTagControlType
2669
+ xlSmartTagControlLabel = 7 # from enum XlSmartTagControlType
2670
+ xlSmartTagControlLink = 2 # from enum XlSmartTagControlType
2671
+ xlSmartTagControlListbox = 11 # from enum XlSmartTagControlType
2672
+ xlSmartTagControlRadioGroup = 14 # from enum XlSmartTagControlType
2673
+ xlSmartTagControlSeparator = 5 # from enum XlSmartTagControlType
2674
+ xlSmartTagControlSmartTag = 1 # from enum XlSmartTagControlType
2675
+ xlSmartTagControlTextbox = 10 # from enum XlSmartTagControlType
2676
+
2677
+
2678
+ class SmartTagDisplayMode:
2679
+ xlButtonOnly = 2 # from enum XlSmartTagDisplayMode
2680
+ xlDisplayNone = 1 # from enum XlSmartTagDisplayMode
2681
+ xlIndicatorAndButton = 0 # from enum XlSmartTagDisplayMode
2682
+
2683
+
2684
+ class SortDataOption:
2685
+ xlSortNormal = 0 # from enum XlSortDataOption
2686
+ xlSortTextAsNumbers = 1 # from enum XlSortDataOption
2687
+
2688
+
2689
+ class SortMethod:
2690
+ xlPinYin = 1 # from enum XlSortMethod
2691
+ xlStroke = 2 # from enum XlSortMethod
2692
+
2693
+
2694
+ class SortMethodOld:
2695
+ xlCodePage = 2 # from enum XlSortMethodOld
2696
+ xlSyllabary = 1 # from enum XlSortMethodOld
2697
+
2698
+
2699
+ class SortOn:
2700
+ xlSortOnCellColor = 1 # from enum XlSortOn
2701
+ xlSortOnFontColor = 2 # from enum XlSortOn
2702
+ xlSortOnIcon = 3 # from enum XlSortOn
2703
+ xlSortOnValues = 0 # from enum XlSortOn
2704
+
2705
+
2706
+ class SortOrder:
2707
+ xlAscending = 1 # from enum XlSortOrder
2708
+ xlDescending = 2 # from enum XlSortOrder
2709
+
2710
+
2711
+ class SortOrientation:
2712
+ xlSortColumns = 1 # from enum XlSortOrientation
2713
+ xlSortRows = 2 # from enum XlSortOrientation
2714
+
2715
+
2716
+ class SortType:
2717
+ xlSortLabels = 2 # from enum XlSortType
2718
+ xlSortValues = 1 # from enum XlSortType
2719
+
2720
+
2721
+ class SourceType:
2722
+ xlSourceAutoFilter = 3 # from enum XlSourceType
2723
+ xlSourceChart = 5 # from enum XlSourceType
2724
+ xlSourcePivotTable = 6 # from enum XlSourceType
2725
+ xlSourcePrintArea = 2 # from enum XlSourceType
2726
+ xlSourceQuery = 7 # from enum XlSourceType
2727
+ xlSourceRange = 4 # from enum XlSourceType
2728
+ xlSourceSheet = 1 # from enum XlSourceType
2729
+ xlSourceWorkbook = 0 # from enum XlSourceType
2730
+
2731
+
2732
+ class SpanishModes:
2733
+ xlSpanishTuteoAndVoseo = 1 # from enum XlSpanishModes
2734
+ xlSpanishTuteoOnly = 0 # from enum XlSpanishModes
2735
+ xlSpanishVoseoOnly = 2 # from enum XlSpanishModes
2736
+
2737
+
2738
+ class SparkScale:
2739
+ xlSparkScaleCustom = 3 # from enum XlSparkScale
2740
+ xlSparkScaleGroup = 1 # from enum XlSparkScale
2741
+ xlSparkScaleSingle = 2 # from enum XlSparkScale
2742
+
2743
+
2744
+ class SparkType:
2745
+ xlSparkColumn = 2 # from enum XlSparkType
2746
+ xlSparkColumnStacked100 = 3 # from enum XlSparkType
2747
+ xlSparkLine = 1 # from enum XlSparkType
2748
+
2749
+
2750
+ class SparklineRowCol:
2751
+ xlSparklineColumnsSquare = 2 # from enum XlSparklineRowCol
2752
+ xlSparklineNonSquare = 0 # from enum XlSparklineRowCol
2753
+ xlSparklineRowsSquare = 1 # from enum XlSparklineRowCol
2754
+
2755
+
2756
+ class SpeakDirection:
2757
+ xlSpeakByColumns = 1 # from enum XlSpeakDirection
2758
+ xlSpeakByRows = 0 # from enum XlSpeakDirection
2759
+
2760
+
2761
+ class SpecialCellsValue:
2762
+ xlErrors = 16 # from enum XlSpecialCellsValue
2763
+ xlLogical = 4 # from enum XlSpecialCellsValue
2764
+ xlNumbers = 1 # from enum XlSpecialCellsValue
2765
+ xlTextValues = 2 # from enum XlSpecialCellsValue
2766
+
2767
+
2768
+ class StdColorScale:
2769
+ xlColorScaleBlackWhite = 3 # from enum XlStdColorScale
2770
+ xlColorScaleGYR = 2 # from enum XlStdColorScale
2771
+ xlColorScaleRYG = 1 # from enum XlStdColorScale
2772
+ xlColorScaleWhiteBlack = 4 # from enum XlStdColorScale
2773
+
2774
+
2775
+ class SubscribeToFormat:
2776
+ xlSubscribeToPicture = -4147 # from enum XlSubscribeToFormat
2777
+ xlSubscribeToText = -4158 # from enum XlSubscribeToFormat
2778
+
2779
+
2780
+ class SubtotalLocationType:
2781
+ xlAtBottom = 2 # from enum XlSubtototalLocationType
2782
+ xlAtTop = 1 # from enum XlSubtototalLocationType
2783
+
2784
+
2785
+ class SummaryColumn:
2786
+ xlSummaryOnLeft = -4131 # from enum XlSummaryColumn
2787
+ xlSummaryOnRight = -4152 # from enum XlSummaryColumn
2788
+
2789
+
2790
+ class SummaryReportType:
2791
+ xlStandardSummary = 1 # from enum XlSummaryReportType
2792
+ xlSummaryPivotTable = -4148 # from enum XlSummaryReportType
2793
+
2794
+
2795
+ class SummaryRow:
2796
+ xlSummaryAbove = 0 # from enum XlSummaryRow
2797
+ xlSummaryBelow = 1 # from enum XlSummaryRow
2798
+
2799
+
2800
+ class TabPosition:
2801
+ xlTabPositionFirst = 0 # from enum XlTabPosition
2802
+ xlTabPositionLast = 1 # from enum XlTabPosition
2803
+
2804
+
2805
+ class TableStyleElementType:
2806
+ xlBlankRow = 19 # from enum XlTableStyleElementType
2807
+ xlColumnStripe1 = 7 # from enum XlTableStyleElementType
2808
+ xlColumnStripe2 = 8 # from enum XlTableStyleElementType
2809
+ xlColumnSubheading1 = 20 # from enum XlTableStyleElementType
2810
+ xlColumnSubheading2 = 21 # from enum XlTableStyleElementType
2811
+ xlColumnSubheading3 = 22 # from enum XlTableStyleElementType
2812
+ xlFirstColumn = 3 # from enum XlTableStyleElementType
2813
+ xlFirstHeaderCell = 9 # from enum XlTableStyleElementType
2814
+ xlFirstTotalCell = 11 # from enum XlTableStyleElementType
2815
+ xlGrandTotalColumn = 4 # from enum XlTableStyleElementType
2816
+ xlGrandTotalRow = 2 # from enum XlTableStyleElementType
2817
+ xlHeaderRow = 1 # from enum XlTableStyleElementType
2818
+ xlLastColumn = 4 # from enum XlTableStyleElementType
2819
+ xlLastHeaderCell = 10 # from enum XlTableStyleElementType
2820
+ xlLastTotalCell = 12 # from enum XlTableStyleElementType
2821
+ xlPageFieldLabels = 26 # from enum XlTableStyleElementType
2822
+ xlPageFieldValues = 27 # from enum XlTableStyleElementType
2823
+ xlRowStripe1 = 5 # from enum XlTableStyleElementType
2824
+ xlRowStripe2 = 6 # from enum XlTableStyleElementType
2825
+ xlRowSubheading1 = 23 # from enum XlTableStyleElementType
2826
+ xlRowSubheading2 = 24 # from enum XlTableStyleElementType
2827
+ xlRowSubheading3 = 25 # from enum XlTableStyleElementType
2828
+ xlSlicerHoveredSelectedItemWithData = 33 # from enum XlTableStyleElementType
2829
+ xlSlicerHoveredSelectedItemWithNoData = 35 # from enum XlTableStyleElementType
2830
+ xlSlicerHoveredUnselectedItemWithData = 32 # from enum XlTableStyleElementType
2831
+ xlSlicerHoveredUnselectedItemWithNoData = 34 # from enum XlTableStyleElementType
2832
+ xlSlicerSelectedItemWithData = 30 # from enum XlTableStyleElementType
2833
+ xlSlicerSelectedItemWithNoData = 31 # from enum XlTableStyleElementType
2834
+ xlSlicerUnselectedItemWithData = 28 # from enum XlTableStyleElementType
2835
+ xlSlicerUnselectedItemWithNoData = 29 # from enum XlTableStyleElementType
2836
+ xlSubtotalColumn1 = 13 # from enum XlTableStyleElementType
2837
+ xlSubtotalColumn2 = 14 # from enum XlTableStyleElementType
2838
+ xlSubtotalColumn3 = 15 # from enum XlTableStyleElementType
2839
+ xlSubtotalRow1 = 16 # from enum XlTableStyleElementType
2840
+ xlSubtotalRow2 = 17 # from enum XlTableStyleElementType
2841
+ xlSubtotalRow3 = 18 # from enum XlTableStyleElementType
2842
+ xlTotalRow = 2 # from enum XlTableStyleElementType
2843
+ xlWholeTable = 0 # from enum XlTableStyleElementType
2844
+
2845
+
2846
+ class TextParsingType:
2847
+ xlDelimited = 1 # from enum XlTextParsingType
2848
+ xlFixedWidth = 2 # from enum XlTextParsingType
2849
+
2850
+
2851
+ class TextQualifier:
2852
+ xlTextQualifierDoubleQuote = 1 # from enum XlTextQualifier
2853
+ xlTextQualifierNone = -4142 # from enum XlTextQualifier
2854
+ xlTextQualifierSingleQuote = 2 # from enum XlTextQualifier
2855
+
2856
+
2857
+ class TextVisualLayoutType:
2858
+ xlTextVisualLTR = 1 # from enum XlTextVisualLayoutType
2859
+ xlTextVisualRTL = 2 # from enum XlTextVisualLayoutType
2860
+
2861
+
2862
+ class ThemeColor:
2863
+ xlThemeColorAccent1 = 5 # from enum XlThemeColor
2864
+ xlThemeColorAccent2 = 6 # from enum XlThemeColor
2865
+ xlThemeColorAccent3 = 7 # from enum XlThemeColor
2866
+ xlThemeColorAccent4 = 8 # from enum XlThemeColor
2867
+ xlThemeColorAccent5 = 9 # from enum XlThemeColor
2868
+ xlThemeColorAccent6 = 10 # from enum XlThemeColor
2869
+ xlThemeColorDark1 = 1 # from enum XlThemeColor
2870
+ xlThemeColorDark2 = 3 # from enum XlThemeColor
2871
+ xlThemeColorFollowedHyperlink = 12 # from enum XlThemeColor
2872
+ xlThemeColorHyperlink = 11 # from enum XlThemeColor
2873
+ xlThemeColorLight1 = 2 # from enum XlThemeColor
2874
+ xlThemeColorLight2 = 4 # from enum XlThemeColor
2875
+
2876
+
2877
+ class ThemeFont:
2878
+ xlThemeFontMajor = 1 # from enum XlThemeFont
2879
+ xlThemeFontMinor = 2 # from enum XlThemeFont
2880
+ xlThemeFontNone = 0 # from enum XlThemeFont
2881
+
2882
+
2883
+ class ThreadMode:
2884
+ xlThreadModeAutomatic = 0 # from enum XlThreadMode
2885
+ xlThreadModeManual = 1 # from enum XlThreadMode
2886
+
2887
+
2888
+ class TickLabelOrientation:
2889
+ xlTickLabelOrientationAutomatic = -4105 # from enum XlTickLabelOrientation
2890
+ xlTickLabelOrientationDownward = -4170 # from enum XlTickLabelOrientation
2891
+ xlTickLabelOrientationHorizontal = -4128 # from enum XlTickLabelOrientation
2892
+ xlTickLabelOrientationUpward = -4171 # from enum XlTickLabelOrientation
2893
+ xlTickLabelOrientationVertical = -4166 # from enum XlTickLabelOrientation
2894
+ xlTickLabelPositionHigh = -4127 # from enum XlTickLabelPosition
2895
+ xlTickLabelPositionLow = -4134 # from enum XlTickLabelPosition
2896
+ xlTickLabelPositionNextToAxis = 4 # from enum XlTickLabelPosition
2897
+ xlTickLabelPositionNone = -4142 # from enum XlTickLabelPosition
2898
+
2899
+
2900
+ class TickMark:
2901
+ xlTickMarkCross = 4 # from enum XlTickMark
2902
+ xlTickMarkInside = 2 # from enum XlTickMark
2903
+ xlTickMarkNone = -4142 # from enum XlTickMark
2904
+ xlTickMarkOutside = 3 # from enum XlTickMark
2905
+
2906
+
2907
+ class TimePeriods:
2908
+ xlLast7Days = 2 # from enum XlTimePeriods
2909
+ xlLastMonth = 5 # from enum XlTimePeriods
2910
+ xlLastWeek = 4 # from enum XlTimePeriods
2911
+ xlNextMonth = 8 # from enum XlTimePeriods
2912
+ xlNextWeek = 7 # from enum XlTimePeriods
2913
+ xlThisMonth = 9 # from enum XlTimePeriods
2914
+ xlThisWeek = 3 # from enum XlTimePeriods
2915
+ xlToday = 0 # from enum XlTimePeriods
2916
+ xlTomorrow = 6 # from enum XlTimePeriods
2917
+ xlYesterday = 1 # from enum XlTimePeriods
2918
+
2919
+
2920
+ class TimeUnit:
2921
+ xlDays = 0 # from enum XlTimeUnit
2922
+ xlMonths = 1 # from enum XlTimeUnit
2923
+ xlYears = 2 # from enum XlTimeUnit
2924
+
2925
+
2926
+ class ToolbarProtection:
2927
+ xlNoButtonChanges = 1 # from enum XlToolbarProtection
2928
+ xlNoChanges = 4 # from enum XlToolbarProtection
2929
+ xlNoDockingChanges = 3 # from enum XlToolbarProtection
2930
+ xlNoShapeChanges = 2 # from enum XlToolbarProtection
2931
+ xlToolbarProtectionNone = -4143 # from enum XlToolbarProtection
2932
+
2933
+
2934
+ class TopBottom:
2935
+ xlTop10Bottom = 0 # from enum XlTopBottom
2936
+ xlTop10Top = 1 # from enum XlTopBottom
2937
+
2938
+
2939
+ class TotalsCalculation:
2940
+ xlTotalsCalculationAverage = 2 # from enum XlTotalsCalculation
2941
+ xlTotalsCalculationCount = 3 # from enum XlTotalsCalculation
2942
+ xlTotalsCalculationCountNums = 4 # from enum XlTotalsCalculation
2943
+ xlTotalsCalculationCustom = 9 # from enum XlTotalsCalculation
2944
+ xlTotalsCalculationMax = 6 # from enum XlTotalsCalculation
2945
+ xlTotalsCalculationMin = 5 # from enum XlTotalsCalculation
2946
+ xlTotalsCalculationNone = 0 # from enum XlTotalsCalculation
2947
+ xlTotalsCalculationStdDev = 7 # from enum XlTotalsCalculation
2948
+ xlTotalsCalculationSum = 1 # from enum XlTotalsCalculation
2949
+ xlTotalsCalculationVar = 8 # from enum XlTotalsCalculation
2950
+
2951
+
2952
+ class TrendlineType:
2953
+ xlExponential = 5 # from enum XlTrendlineType
2954
+ xlLinear = -4132 # from enum XlTrendlineType
2955
+ xlLogarithmic = -4133 # from enum XlTrendlineType
2956
+ xlMovingAvg = 6 # from enum XlTrendlineType
2957
+ xlPolynomial = 3 # from enum XlTrendlineType
2958
+ xlPower = 4 # from enum XlTrendlineType
2959
+
2960
+
2961
+ class UnderlineStyle:
2962
+ xlUnderlineStyleDouble = -4119 # from enum XlUnderlineStyle
2963
+ xlUnderlineStyleDoubleAccounting = 5 # from enum XlUnderlineStyle
2964
+ xlUnderlineStyleNone = -4142 # from enum XlUnderlineStyle
2965
+ xlUnderlineStyleSingle = 2 # from enum XlUnderlineStyle
2966
+ xlUnderlineStyleSingleAccounting = 4 # from enum XlUnderlineStyle
2967
+
2968
+
2969
+ class UpdateLinks:
2970
+ xlUpdateLinksAlways = 3 # from enum XlUpdateLinks
2971
+ xlUpdateLinksNever = 2 # from enum XlUpdateLinks
2972
+ xlUpdateLinksUserSetting = 1 # from enum XlUpdateLinks
2973
+
2974
+
2975
+ class VAlign:
2976
+ xlVAlignBottom = -4107 # from enum XlVAlign
2977
+ xlVAlignCenter = -4108 # from enum XlVAlign
2978
+ xlVAlignDistributed = -4117 # from enum XlVAlign
2979
+ xlVAlignJustify = -4130 # from enum XlVAlign
2980
+ xlVAlignTop = -4160 # from enum XlVAlign
2981
+
2982
+
2983
+ class WBATemplate:
2984
+ xlWBATChart = -4109 # from enum XlWBATemplate
2985
+ xlWBATExcel4IntlMacroSheet = 4 # from enum XlWBATemplate
2986
+ xlWBATExcel4MacroSheet = 3 # from enum XlWBATemplate
2987
+ xlWBATWorksheet = -4167 # from enum XlWBATemplate
2988
+
2989
+
2990
+ class WebFormatting:
2991
+ xlWebFormattingAll = 1 # from enum XlWebFormatting
2992
+ xlWebFormattingNone = 3 # from enum XlWebFormatting
2993
+ xlWebFormattingRTF = 2 # from enum XlWebFormatting
2994
+
2995
+
2996
+ class WebSelectionType:
2997
+ xlAllTables = 2 # from enum XlWebSelectionType
2998
+ xlEntirePage = 1 # from enum XlWebSelectionType
2999
+ xlSpecifiedTables = 3 # from enum XlWebSelectionType
3000
+
3001
+
3002
+ class WindowState:
3003
+ xlMaximized = -4137 # from enum XlWindowState
3004
+ xlMinimized = -4140 # from enum XlWindowState
3005
+ xlNormal = -4143 # from enum XlWindowState
3006
+
3007
+
3008
+ class WindowType:
3009
+ xlChartAsWindow = 5 # from enum XlWindowType
3010
+ xlChartInPlace = 4 # from enum XlWindowType
3011
+ xlClipboard = 3 # from enum XlWindowType
3012
+ xlInfo = -4129 # from enum XlWindowType
3013
+ xlWorkbook = 1 # from enum XlWindowType
3014
+
3015
+
3016
+ class WindowView:
3017
+ xlNormalView = 1 # from enum XlWindowView
3018
+ xlPageBreakPreview = 2 # from enum XlWindowView
3019
+ xlPageLayoutView = 3 # from enum XlWindowView
3020
+
3021
+
3022
+ class XlmMacroType:
3023
+ xlCommand = 2 # from enum XlXLMMacroType
3024
+ xlFunction = 1 # from enum XlXLMMacroType
3025
+ xlNotXLM = 3 # from enum XlXLMMacroType
3026
+
3027
+
3028
+ class XmlExportResult:
3029
+ xlXmlExportSuccess = 0 # from enum XlXmlExportResult
3030
+ xlXmlExportValidationFailed = 1 # from enum XlXmlExportResult
3031
+ xlXmlImportElementsTruncated = 1 # from enum XlXmlImportResult
3032
+
3033
+
3034
+ class XmlImportResult:
3035
+ xlXmlImportSuccess = 0 # from enum XlXmlImportResult
3036
+ xlXmlImportValidationFailed = 2 # from enum XlXmlImportResult
3037
+
3038
+
3039
+ class XmlLoadOption:
3040
+ xlXmlLoadImportToList = 2 # from enum XlXmlLoadOption
3041
+ xlXmlLoadMapXml = 3 # from enum XlXmlLoadOption
3042
+ xlXmlLoadOpenXml = 1 # from enum XlXmlLoadOption
3043
+ xlXmlLoadPromptUser = 0 # from enum XlXmlLoadOption
3044
+
3045
+
3046
+ class YesNoGuess:
3047
+ xlGuess = 0 # from enum XlYesNoGuess
3048
+ xlNo = 2 # from enum XlYesNoGuess
3049
+ xlYes = 1 # from enum XlYesNoGuess
3050
+
3051
+
3052
+ shape_types = [
3053
+ "auto_shape",
3054
+ "callout",
3055
+ "canvas",
3056
+ "chart",
3057
+ "comment",
3058
+ "content_app",
3059
+ "diagram",
3060
+ "embedded_ole_object",
3061
+ "form_control",
3062
+ "free_form",
3063
+ "group",
3064
+ "igx_graphic",
3065
+ "ink",
3066
+ "ink_comment",
3067
+ "line",
3068
+ "linked_ole_object",
3069
+ "linked_picture",
3070
+ "media",
3071
+ "ole_control_object",
3072
+ "picture",
3073
+ "placeholder",
3074
+ "script_anchor",
3075
+ "shape_type_mixed",
3076
+ "table",
3077
+ "text_box",
3078
+ "text_effect",
3079
+ "web_video",
3080
+ ]