spire-xls 15.5.0__py3-none-macosx_10_7_universal.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 (703) hide show
  1. spire/__init__.py +0 -0
  2. spire/xls/AddInFunctionsCollection.py +29 -0
  3. spire/xls/AddtionalFormatWrapper.py +976 -0
  4. spire/xls/AlertStyleType.py +18 -0
  5. spire/xls/ArcShapeCollection.py +70 -0
  6. spire/xls/AutoFiltersCollection.py +527 -0
  7. spire/xls/AutoFitterOptions.py +66 -0
  8. spire/xls/AutoFormatOptions.py +23 -0
  9. spire/xls/AutoFormatType.py +32 -0
  10. spire/xls/AutoSortScope.py +25 -0
  11. spire/xls/Average.py +29 -0
  12. spire/xls/AverageType.py +25 -0
  13. spire/xls/AxisLineIdentifierType.py +19 -0
  14. spire/xls/AxisTextDirectionType.py +18 -0
  15. spire/xls/AxisType.py +18 -0
  16. spire/xls/AxisTypes.py +18 -0
  17. spire/xls/BaseFormatType.py +17 -0
  18. spire/xls/BordersCollection.py +158 -0
  19. spire/xls/BordersCollectionArrayWrapper.py +95 -0
  20. spire/xls/BordersLineType.py +23 -0
  21. spire/xls/BubbleSizeType.py +17 -0
  22. spire/xls/BuiltInDocumentProperties.py +12 -0
  23. spire/xls/BuiltInPropertyType.py +50 -0
  24. spire/xls/BuiltInStyles.py +66 -0
  25. spire/xls/ButtonShapeCollection.py +70 -0
  26. spire/xls/CategoryType.py +18 -0
  27. spire/xls/CellBaseStyle.py +26 -0
  28. spire/xls/CellBorder.py +154 -0
  29. spire/xls/CellDataType.py +23 -0
  30. spire/xls/CellFormatType.py +21 -0
  31. spire/xls/CellRange.py +915 -0
  32. spire/xls/CellStyle.py +85 -0
  33. spire/xls/CellStyleFlag.py +432 -0
  34. spire/xls/CellStyleObject.py +617 -0
  35. spire/xls/CellValueChangedEventArgs.py +75 -0
  36. spire/xls/CellValueChangedEventHandler.py +52 -0
  37. spire/xls/Chart.py +404 -0
  38. spire/xls/ChartArea.py +61 -0
  39. spire/xls/ChartBackgroundMode.py +18 -0
  40. spire/xls/ChartBaseUnitType.py +18 -0
  41. spire/xls/ChartBorder.py +12 -0
  42. spire/xls/ChartCategoryAxis.py +93 -0
  43. spire/xls/ChartDataLabels.py +42 -0
  44. spire/xls/ChartDataPoint.py +42 -0
  45. spire/xls/ChartDataPointsCollection.py +75 -0
  46. spire/xls/ChartDataTable.py +12 -0
  47. spire/xls/ChartDisplayUnitType.py +26 -0
  48. spire/xls/ChartDropBar.py +12 -0
  49. spire/xls/ChartFormat.py +72 -0
  50. spire/xls/ChartFormatCollection.py +59 -0
  51. spire/xls/ChartGridLine.py +27 -0
  52. spire/xls/ChartInterior.py +12 -0
  53. spire/xls/ChartLegend.py +42 -0
  54. spire/xls/ChartLegendEntriesColl.py +128 -0
  55. spire/xls/ChartLegendEntry.py +27 -0
  56. spire/xls/ChartLinePatternType.py +24 -0
  57. spire/xls/ChartLineWeightType.py +19 -0
  58. spire/xls/ChartMarkerType.py +27 -0
  59. spire/xls/ChartPageSetup.py +12 -0
  60. spire/xls/ChartParagraphType.py +18 -0
  61. spire/xls/ChartPieType.py +18 -0
  62. spire/xls/ChartPlotArea.py +53 -0
  63. spire/xls/ChartPlotEmptyType.py +18 -0
  64. spire/xls/ChartSerie.py +142 -0
  65. spire/xls/ChartSerieDataFormat.py +56 -0
  66. spire/xls/ChartSeries.py +154 -0
  67. spire/xls/ChartSeriesAxis.py +72 -0
  68. spire/xls/ChartShadow.py +235 -0
  69. spire/xls/ChartSheet.py +285 -0
  70. spire/xls/ChartTextArea.py +782 -0
  71. spire/xls/ChartTitle.py +12 -0
  72. spire/xls/ChartValueAxis.py +92 -0
  73. spire/xls/ChartWallOrFloor.py +12 -0
  74. spire/xls/ChartsCollection.py +113 -0
  75. spire/xls/CheckBoxCollection.py +70 -0
  76. spire/xls/CheckState.py +18 -0
  77. spire/xls/CollectionBase.py +184 -0
  78. spire/xls/CollectionChangeEventArgs.py +36 -0
  79. spire/xls/CollectionExtended.py +92 -0
  80. spire/xls/ColorConditionValue.py +91 -0
  81. spire/xls/ColorFilter.py +45 -0
  82. spire/xls/ColorScale.py +172 -0
  83. spire/xls/ColorType.py +18 -0
  84. spire/xls/ComboBoxCollection.py +70 -0
  85. spire/xls/CommentHAlignType.py +21 -0
  86. spire/xls/CommentVAlignType.py +20 -0
  87. spire/xls/CommentsCollection.py +109 -0
  88. spire/xls/CommentsRange.py +578 -0
  89. spire/xls/CommonWrapper.py +40 -0
  90. spire/xls/ComparisonOperatorType.py +24 -0
  91. spire/xls/CompoundLineType.py +18 -0
  92. spire/xls/CondFormatCollectionWrapper.py +125 -0
  93. spire/xls/ConditionValue.py +82 -0
  94. spire/xls/ConditionValuePosition.py +16 -0
  95. spire/xls/ConditionValueType.py +20 -0
  96. spire/xls/ConditionalFormat.py +14 -0
  97. spire/xls/ConditionalFormatScope.py +16 -0
  98. spire/xls/ConditionalFormatType.py +33 -0
  99. spire/xls/ConditionalFormatWrapper.py +986 -0
  100. spire/xls/ConditionalFormats.py +55 -0
  101. spire/xls/ConditionalTopNType.py +17 -0
  102. spire/xls/ConnectionDataSourceType.py +26 -0
  103. spire/xls/ConverterSetting.py +347 -0
  104. spire/xls/CopyRangeOptions.py +23 -0
  105. spire/xls/CustomFilter.py +147 -0
  106. spire/xls/CustomFilterCollection.py +113 -0
  107. spire/xls/DBConnection.py +198 -0
  108. spire/xls/DVAspect.py +15 -0
  109. spire/xls/DataBar.py +220 -0
  110. spire/xls/DataBarAxisPosition.py +16 -0
  111. spire/xls/DataBarBorder.py +47 -0
  112. spire/xls/DataBarBorderType.py +15 -0
  113. spire/xls/DataBarFillType.py +15 -0
  114. spire/xls/DataBarNegativeColorType.py +15 -0
  115. spire/xls/DataConnections.py +25 -0
  116. spire/xls/DataLabelPositionType.py +26 -0
  117. spire/xls/DataMarkerDirection.py +17 -0
  118. spire/xls/DataSorter.py +154 -0
  119. spire/xls/DataSourceType.py +19 -0
  120. spire/xls/DateTimeGroupItem.py +132 -0
  121. spire/xls/DateTimeGroupingType.py +19 -0
  122. spire/xls/DeleteOption.py +15 -0
  123. spire/xls/DocumentProperty.py +304 -0
  124. spire/xls/DropLineStyleType.py +18 -0
  125. spire/xls/DynamicFilter.py +71 -0
  126. spire/xls/DynamicFilterType.py +48 -0
  127. spire/xls/EncryptedKeyInfo.py +12 -0
  128. spire/xls/ErrorBarIncludeType.py +19 -0
  129. spire/xls/ErrorBarType.py +20 -0
  130. spire/xls/Excel2016Charttype.py +20 -0
  131. spire/xls/ExcelAddInFunction.py +12 -0
  132. spire/xls/ExcelCalculationMode.py +18 -0
  133. spire/xls/ExcelChartType.py +96 -0
  134. spire/xls/ExcelClearOptions.py +18 -0
  135. spire/xls/ExcelColors.py +121 -0
  136. spire/xls/ExcelComboType.py +22 -0
  137. spire/xls/ExcelComment.py +27 -0
  138. spire/xls/ExcelCommentObject.py +618 -0
  139. spire/xls/ExcelFindOptions.py +16 -0
  140. spire/xls/ExcelFont.py +310 -0
  141. spire/xls/ExcelGradient.py +174 -0
  142. spire/xls/ExcelHorizontalAlignment.py +21 -0
  143. spire/xls/ExcelInterior.py +128 -0
  144. spire/xls/ExcelPatternType.py +52 -0
  145. spire/xls/ExcelPicture.py +12 -0
  146. spire/xls/ExcelQuartileCalculation.py +17 -0
  147. spire/xls/ExcelSaveType.py +15 -0
  148. spire/xls/ExcelShapeType.py +41 -0
  149. spire/xls/ExcelSheetType.py +20 -0
  150. spire/xls/ExcelTotalsCalculation.py +23 -0
  151. spire/xls/ExcelTreeMapLabelOption.py +18 -0
  152. spire/xls/ExcelVersion.py +24 -0
  153. spire/xls/ExcelVerticalAlignment.py +21 -0
  154. spire/xls/ExpandCollapseFlags.py +18 -0
  155. spire/xls/ExportTableOptions.py +74 -0
  156. spire/xls/ExternalConnection.py +147 -0
  157. spire/xls/ExternalLink.py +58 -0
  158. spire/xls/ExternalLinkCollection.py +25 -0
  159. spire/xls/FileFormat.py +40 -0
  160. spire/xls/FillPictureType.py +16 -0
  161. spire/xls/FilterColumn.py +258 -0
  162. spire/xls/FilterConditionType.py +21 -0
  163. spire/xls/FilterDataType.py +22 -0
  164. spire/xls/FilterOperatorType.py +20 -0
  165. spire/xls/FilterType.py +20 -0
  166. spire/xls/FindType.py +19 -0
  167. spire/xls/Font.py +376 -0
  168. spire/xls/FontArrayWrapper.py +265 -0
  169. spire/xls/FontUnderlineType.py +20 -0
  170. spire/xls/FontVertialAlignmentType.py +20 -0
  171. spire/xls/FontWrapper.py +450 -0
  172. spire/xls/FontsCollection.py +87 -0
  173. spire/xls/Format3D.py +235 -0
  174. spire/xls/GeomertyAdjustValue.py +63 -0
  175. spire/xls/GeomertyAdjustValueFormulaType.py +30 -0
  176. spire/xls/GeomertyAdjustValuesCollection.py +39 -0
  177. spire/xls/GetText.py +15 -0
  178. spire/xls/GoalSeek.py +65 -0
  179. spire/xls/GoalSeekResult.py +57 -0
  180. spire/xls/GradientArrayWrapper.py +188 -0
  181. spire/xls/GradientColorType.py +18 -0
  182. spire/xls/GradientPatternType.py +64 -0
  183. spire/xls/GradientPresetType.py +39 -0
  184. spire/xls/GradientStops.py +146 -0
  185. spire/xls/GradientStyleType.py +21 -0
  186. spire/xls/GradientTextureType.py +40 -0
  187. spire/xls/GradientType.py +17 -0
  188. spire/xls/GradientVariantsType.py +19 -0
  189. spire/xls/GroupBoxCollection.py +70 -0
  190. spire/xls/GroupByType.py +15 -0
  191. spire/xls/GroupShape.py +21 -0
  192. spire/xls/GroupShapeCollection.py +46 -0
  193. spire/xls/HPageBreak.py +32 -0
  194. spire/xls/HPageBreaksCollection.py +108 -0
  195. spire/xls/HTMLOptions.py +144 -0
  196. spire/xls/HistogramAxisFormat.py +30 -0
  197. spire/xls/HorizontalAlignType.py +23 -0
  198. spire/xls/HttpContentType.py +18 -0
  199. spire/xls/HyperLink.py +32 -0
  200. spire/xls/HyperLinkType.py +20 -0
  201. spire/xls/HyperLinksCollection.py +72 -0
  202. spire/xls/IAddInFunction.py +22 -0
  203. spire/xls/IAddInFunctions.py +50 -0
  204. spire/xls/IArcShape.py +259 -0
  205. spire/xls/IArcShapes.py +50 -0
  206. spire/xls/IAutoFilter.py +167 -0
  207. spire/xls/IAutoFilterCondition.py +123 -0
  208. spire/xls/IAutoFilters.py +49 -0
  209. spire/xls/IBorder.py +116 -0
  210. spire/xls/IBorders.py +106 -0
  211. spire/xls/IBuiltInDocumentProperties.py +579 -0
  212. spire/xls/IButtonShape.py +12 -0
  213. spire/xls/IButtonShapes.py +50 -0
  214. spire/xls/IChart.py +1368 -0
  215. spire/xls/IChartAxis.py +722 -0
  216. spire/xls/IChartBorder.py +220 -0
  217. spire/xls/IChartCategoryAxis.py +410 -0
  218. spire/xls/IChartDataLabels.py +457 -0
  219. spire/xls/IChartDataPoint.py +131 -0
  220. spire/xls/IChartDataPoints.py +31 -0
  221. spire/xls/IChartDataTable.py +197 -0
  222. spire/xls/IChartDropBar.py +12 -0
  223. spire/xls/IChartErrorBars.py +373 -0
  224. spire/xls/IChartFillBorder.py +303 -0
  225. spire/xls/IChartFormat.py +571 -0
  226. spire/xls/IChartFrameFormat.py +93 -0
  227. spire/xls/IChartGridLine.py +107 -0
  228. spire/xls/IChartInterior.py +278 -0
  229. spire/xls/IChartLegend.py +499 -0
  230. spire/xls/IChartLegendEntries.py +30 -0
  231. spire/xls/IChartLegendEntry.py +178 -0
  232. spire/xls/IChartPageSetup.py +56 -0
  233. spire/xls/IChartSerie.py +779 -0
  234. spire/xls/IChartSerieDataFormat.py +566 -0
  235. spire/xls/IChartSeries.py +39 -0
  236. spire/xls/IChartSeriesAxis.py +128 -0
  237. spire/xls/IChartShape.py +92 -0
  238. spire/xls/IChartShapes.py +39 -0
  239. spire/xls/IChartTextArea.py +197 -0
  240. spire/xls/IChartTrendLine.py +548 -0
  241. spire/xls/IChartTrendLines.py +79 -0
  242. spire/xls/IChartValueAxis.py +518 -0
  243. spire/xls/IChartWallOrFloor.py +32 -0
  244. spire/xls/ICharts.py +70 -0
  245. spire/xls/ICheckBox.py +96 -0
  246. spire/xls/ICheckBoxes.py +50 -0
  247. spire/xls/ICloneParent.py +28 -0
  248. spire/xls/IColorConditionValue.py +31 -0
  249. spire/xls/IColorScale.py +32 -0
  250. spire/xls/ICombinedRange.py +87 -0
  251. spire/xls/IComboBoxShape.py +95 -0
  252. spire/xls/IComboBoxes.py +50 -0
  253. spire/xls/IComment.py +85 -0
  254. spire/xls/ICommentShape.py +12 -0
  255. spire/xls/IComments.py +50 -0
  256. spire/xls/IConditionValue.py +68 -0
  257. spire/xls/IConditionalFormat.py +606 -0
  258. spire/xls/IConditionalFormats.py +48 -0
  259. spire/xls/IConditionalFormatsCollection.py +134 -0
  260. spire/xls/ICustomDocumentProperties.py +128 -0
  261. spire/xls/IDataBar.py +105 -0
  262. spire/xls/IDataSort.py +95 -0
  263. spire/xls/IDataValidation.py +421 -0
  264. spire/xls/IDataValidationCollection.py +132 -0
  265. spire/xls/IDataValidationTable.py +68 -0
  266. spire/xls/IDigitalSignature.py +99 -0
  267. spire/xls/IDigitalSignatures.py +29 -0
  268. spire/xls/IDocumentProperty.py +226 -0
  269. spire/xls/IErrorIndicator.py +31 -0
  270. spire/xls/IExcelApplication.py +22 -0
  271. spire/xls/IExtendIndex.py +21 -0
  272. spire/xls/IExtendedFormat.py +530 -0
  273. spire/xls/IFont.py +271 -0
  274. spire/xls/IFormat3D.py +252 -0
  275. spire/xls/IGeomPath.py +23 -0
  276. spire/xls/IGeomPathInfo.py +112 -0
  277. spire/xls/IGeomPathShape.py +30 -0
  278. spire/xls/IGlow.py +85 -0
  279. spire/xls/IGradient.py +174 -0
  280. spire/xls/IGroupBox.py +67 -0
  281. spire/xls/IGroupBoxes.py +50 -0
  282. spire/xls/IHPageBreak.py +22 -0
  283. spire/xls/IHPageBreaks.py +31 -0
  284. spire/xls/IHyperLink.py +118 -0
  285. spire/xls/IHyperLinks.py +48 -0
  286. spire/xls/IIconSet.py +96 -0
  287. spire/xls/IInterior.py +117 -0
  288. spire/xls/IInternalAddtionalFormat.py +238 -0
  289. spire/xls/IInternalFont.py +31 -0
  290. spire/xls/IInternalWorksheet.py +132 -0
  291. spire/xls/ILabelShape.py +49 -0
  292. spire/xls/ILabelShapes.py +50 -0
  293. spire/xls/ILineShape.py +305 -0
  294. spire/xls/ILines.py +50 -0
  295. spire/xls/IListBox.py +86 -0
  296. spire/xls/IListBoxes.py +50 -0
  297. spire/xls/IListObject.py +493 -0
  298. spire/xls/IListObjectColumn.py +222 -0
  299. spire/xls/IListObjects.py +31 -0
  300. spire/xls/IMarkersDesigner.py +113 -0
  301. spire/xls/IMigrantRange.py +21 -0
  302. spire/xls/INameRanges.py +162 -0
  303. spire/xls/INamedObject.py +22 -0
  304. spire/xls/INamedRange.py +162 -0
  305. spire/xls/INumberFormat.py +77 -0
  306. spire/xls/IOleObject.py +176 -0
  307. spire/xls/IOleObjects.py +32 -0
  308. spire/xls/IOptimizedUpdate.py +28 -0
  309. spire/xls/IOvalShape.py +154 -0
  310. spire/xls/IOvalShapes.py +50 -0
  311. spire/xls/IPageSetup.py +195 -0
  312. spire/xls/IPageSetupBase.py +642 -0
  313. spire/xls/IPictureShape.py +99 -0
  314. spire/xls/IPictures.py +250 -0
  315. spire/xls/IPivotCache.py +41 -0
  316. spire/xls/IPivotCaches.py +39 -0
  317. spire/xls/IPivotCalculatedFields.py +50 -0
  318. spire/xls/IPivotDataField.py +68 -0
  319. spire/xls/IPivotDataFields.py +50 -0
  320. spire/xls/IPivotField.py +291 -0
  321. spire/xls/IPivotFields.py +41 -0
  322. spire/xls/IPivotTable.py +393 -0
  323. spire/xls/IPivotTableOptions.py +428 -0
  324. spire/xls/IPivotTables.py +68 -0
  325. spire/xls/IPropertyData.py +70 -0
  326. spire/xls/IPrstGeomShape.py +71 -0
  327. spire/xls/IPrstGeomShapes.py +81 -0
  328. spire/xls/IRadioButton.py +105 -0
  329. spire/xls/IRadioButtons.py +71 -0
  330. spire/xls/IRectangleShape.py +60 -0
  331. spire/xls/IRectangleShapes.py +50 -0
  332. spire/xls/IReflectionEffect.py +138 -0
  333. spire/xls/IRichTextString.py +93 -0
  334. spire/xls/IScrollBarShape.py +140 -0
  335. spire/xls/IScrollBarShapes.py +50 -0
  336. spire/xls/IShadow.py +244 -0
  337. spire/xls/IShape.py +409 -0
  338. spire/xls/IShapeFill.py +522 -0
  339. spire/xls/IShapeLineFormat.py +331 -0
  340. spire/xls/IShapes.py +270 -0
  341. spire/xls/ISortColumn.py +96 -0
  342. spire/xls/ISortColumns.py +70 -0
  343. spire/xls/ISortedRule.py +112 -0
  344. spire/xls/ISparkline.py +68 -0
  345. spire/xls/ISparklineGroup.py +428 -0
  346. spire/xls/ISparklines.py +72 -0
  347. spire/xls/ISpinnerShape.py +102 -0
  348. spire/xls/ISpinnerShapes.py +50 -0
  349. spire/xls/IStyle.py +50 -0
  350. spire/xls/IStyles.py +69 -0
  351. spire/xls/ITabSheet.py +302 -0
  352. spire/xls/ITabSheets.py +57 -0
  353. spire/xls/ITextBox.py +116 -0
  354. spire/xls/ITextBoxLinkShape.py +40 -0
  355. spire/xls/ITextBoxShape.py +22 -0
  356. spire/xls/ITextBoxes.py +61 -0
  357. spire/xls/ITextFrame.py +120 -0
  358. spire/xls/IVPageBreak.py +22 -0
  359. spire/xls/IVPageBreaks.py +31 -0
  360. spire/xls/IWorkbook.py +1806 -0
  361. spire/xls/IWorksheet.py +2694 -0
  362. spire/xls/IWorksheetGroup.py +48 -0
  363. spire/xls/IWorksheets.py +159 -0
  364. spire/xls/IXLSRange.py +2479 -0
  365. spire/xls/IXLSRanges.py +35 -0
  366. spire/xls/IconSet.py +103 -0
  367. spire/xls/IconSetType.py +35 -0
  368. spire/xls/IgnoreErrorType.py +24 -0
  369. spire/xls/ImageFormatType.py +18 -0
  370. spire/xls/ImageLocationTypes.py +15 -0
  371. spire/xls/ImageType.py +17 -0
  372. spire/xls/ImportObjectOptions.py +89 -0
  373. spire/xls/InsertMoveOption.py +15 -0
  374. spire/xls/InsertOptionsType.py +16 -0
  375. spire/xls/InteriorArrayWrapper.py +126 -0
  376. spire/xls/LOGFONT.py +140 -0
  377. spire/xls/LabelShapeCollection.py +71 -0
  378. spire/xls/LegendPositionType.py +21 -0
  379. spire/xls/LegendSpacingType.py +18 -0
  380. spire/xls/LineCollection.py +85 -0
  381. spire/xls/LineShapeType.py +17 -0
  382. spire/xls/LineStyleType.py +29 -0
  383. spire/xls/ListBoxCollection.py +71 -0
  384. spire/xls/ListObjectCollection.py +45 -0
  385. spire/xls/MarkerDesigner.py +172 -0
  386. spire/xls/MeasureUnits.py +21 -0
  387. spire/xls/MsoPathInfo.py +38 -0
  388. spire/xls/MsoPathType.py +21 -0
  389. spire/xls/MultipleFilterCollection.py +166 -0
  390. spire/xls/NegativeBarFormat.py +82 -0
  391. spire/xls/OColor.py +165 -0
  392. spire/xls/OLEDBCommandType.py +19 -0
  393. spire/xls/OdsPageBackground.py +129 -0
  394. spire/xls/OdsPageBackgroundImagePositionType.py +22 -0
  395. spire/xls/OdsPageBackgroundImageType.py +16 -0
  396. spire/xls/OdsPageBackgroundType.py +16 -0
  397. spire/xls/OleLinkType.py +15 -0
  398. spire/xls/OleObjectType.py +51 -0
  399. spire/xls/OrderBy.py +19 -0
  400. spire/xls/OrderType.py +17 -0
  401. spire/xls/OvalShapeCollection.py +70 -0
  402. spire/xls/PageBreakExtentType.py +17 -0
  403. spire/xls/PageBreakType.py +18 -0
  404. spire/xls/PageColRow.py +48 -0
  405. spire/xls/PageOrientationType.py +17 -0
  406. spire/xls/PageSetup.py +14 -0
  407. spire/xls/PagesOrderType.py +17 -0
  408. spire/xls/PaperSizeEntry.py +30 -0
  409. spire/xls/PaperSizeType.py +135 -0
  410. spire/xls/PathFillMode.py +19 -0
  411. spire/xls/PdfConformanceLevel.py +20 -0
  412. spire/xls/PicStretch.py +104 -0
  413. spire/xls/PicTile.py +72 -0
  414. spire/xls/PicturesCollection.py +532 -0
  415. spire/xls/PivotAutoFomatTypes.py +35 -0
  416. spire/xls/PivotBuiltInStyles.py +97 -0
  417. spire/xls/PivotCache.py +12 -0
  418. spire/xls/PivotCachesCollection.py +12 -0
  419. spire/xls/PivotCalculatedFieldsCollection.py +38 -0
  420. spire/xls/PivotConditionalFormat.py +54 -0
  421. spire/xls/PivotConditionalFormatCollection.py +38 -0
  422. spire/xls/PivotDataField.py +118 -0
  423. spire/xls/PivotDataFields.py +104 -0
  424. spire/xls/PivotDataType.py +21 -0
  425. spire/xls/PivotField.py +12 -0
  426. spire/xls/PivotFieldFormatType.py +28 -0
  427. spire/xls/PivotFieldSortType.py +16 -0
  428. spire/xls/PivotGroupByTypes.py +23 -0
  429. spire/xls/PivotItem.py +161 -0
  430. spire/xls/PivotItemType.py +28 -0
  431. spire/xls/PivotLabelFilterType.py +27 -0
  432. spire/xls/PivotPageAreaFieldsOrderType.py +15 -0
  433. spire/xls/PivotReportFilter.py +92 -0
  434. spire/xls/PivotReportFilters.py +63 -0
  435. spire/xls/PivotStyle.py +79 -0
  436. spire/xls/PivotTable.py +12 -0
  437. spire/xls/PivotTableElement.py +38 -0
  438. spire/xls/PivotTableFields.py +85 -0
  439. spire/xls/PivotTableLayoutType.py +16 -0
  440. spire/xls/PivotTableStyle.py +63 -0
  441. spire/xls/PivotTablesCollection.py +12 -0
  442. spire/xls/PivotValueFilterType.py +21 -0
  443. spire/xls/PresetTextEffect.py +43 -0
  444. spire/xls/PrintCommentType.py +18 -0
  445. spire/xls/PrintErrorsType.py +19 -0
  446. spire/xls/PrintingPageType.py +16 -0
  447. spire/xls/PropertyType.py +31 -0
  448. spire/xls/PrstGeomShapeCollection.py +126 -0
  449. spire/xls/PrstGeomShapeType.py +201 -0
  450. spire/xls/QueryTableCollection.py +25 -0
  451. spire/xls/QueryTableXls.py +42 -0
  452. spire/xls/RTFCommentArray.py +112 -0
  453. spire/xls/RTFStringArray.py +112 -0
  454. spire/xls/RadioButtonCollection.py +137 -0
  455. spire/xls/RangeRichTextString.py +42 -0
  456. spire/xls/RangesCollection.py +537 -0
  457. spire/xls/ReadingOrderType.py +18 -0
  458. spire/xls/RectangleCollection.py +71 -0
  459. spire/xls/RectangleShapeType.py +22 -0
  460. spire/xls/RectangleStyleType.py +17 -0
  461. spire/xls/ReferRangeArea.py +88 -0
  462. spire/xls/RelationShip.py +15 -0
  463. spire/xls/RenameStrategy.py +16 -0
  464. spire/xls/ResizeBehaveType.py +18 -0
  465. spire/xls/RichText.py +49 -0
  466. spire/xls/RichTextObject.py +133 -0
  467. spire/xls/RichTextShape.py +168 -0
  468. spire/xls/RichTextString.py +126 -0
  469. spire/xls/RtfTags.py +30 -0
  470. spire/xls/RtfTextWriter.py +629 -0
  471. spire/xls/SaveShapeTypeOption.py +310 -0
  472. spire/xls/ScrollBarCollection.py +71 -0
  473. spire/xls/SelectionType.py +16 -0
  474. spire/xls/ShapeArrowLengthType.py +18 -0
  475. spire/xls/ShapeArrowStyleType.py +21 -0
  476. spire/xls/ShapeArrowWidthType.py +18 -0
  477. spire/xls/ShapeCollectionBase.py +87 -0
  478. spire/xls/ShapeDashLineStyleType.py +23 -0
  479. spire/xls/ShapeFillType.py +22 -0
  480. spire/xls/ShapeGeomPath.py +26 -0
  481. spire/xls/ShapeGlow.py +91 -0
  482. spire/xls/ShapeLayerChangeType.py +19 -0
  483. spire/xls/ShapeLineStyleType.py +20 -0
  484. spire/xls/ShapeReflection.py +131 -0
  485. spire/xls/ShapeSegmentPath.py +26 -0
  486. spire/xls/SheetProtectionType.py +33 -0
  487. spire/xls/SortColumn.py +120 -0
  488. spire/xls/SortColumns.py +185 -0
  489. spire/xls/SortComparsionType.py +19 -0
  490. spire/xls/SortOrientationType.py +17 -0
  491. spire/xls/SortedWayType.py +18 -0
  492. spire/xls/Sparkline.py +70 -0
  493. spire/xls/SparklineCollection.py +112 -0
  494. spire/xls/SparklineEmptyCells.py +16 -0
  495. spire/xls/SparklineGroup.py +523 -0
  496. spire/xls/SparklineGroupCollection.py +71 -0
  497. spire/xls/SparklineType.py +18 -0
  498. spire/xls/SpartlineVerticalAxisType.py +16 -0
  499. spire/xls/SpinnerShapeCollection.py +70 -0
  500. spire/xls/SplitType.py +19 -0
  501. spire/xls/StrikeThroughStyle.py +17 -0
  502. spire/xls/StringUtil.py +12 -0
  503. spire/xls/StyleArrayWrapper.py +621 -0
  504. spire/xls/StyleDefineType.py +15 -0
  505. spire/xls/StylesCollection.py +141 -0
  506. spire/xls/SubtotalTypes.py +26 -0
  507. spire/xls/TRangeValueType.py +19 -0
  508. spire/xls/TableBuiltInStyles.py +75 -0
  509. spire/xls/TextBoxCollection.py +70 -0
  510. spire/xls/TextBoxShapeBase.py +140 -0
  511. spire/xls/TextDirection.py +20 -0
  512. spire/xls/TextDirectionType.py +16 -0
  513. spire/xls/TextRotationType.py +19 -0
  514. spire/xls/TextSaveOptions.py +85 -0
  515. spire/xls/TextVerticalValue.py +19 -0
  516. spire/xls/ThemeColorType.py +27 -0
  517. spire/xls/TickLabelPositionType.py +19 -0
  518. spire/xls/TickMarkType.py +19 -0
  519. spire/xls/TimePeriodType.py +23 -0
  520. spire/xls/Top10Filter.py +75 -0
  521. spire/xls/TopBottom.py +44 -0
  522. spire/xls/TopBottomType.py +19 -0
  523. spire/xls/TopFormatType.py +18 -0
  524. spire/xls/TrendLineType.py +21 -0
  525. spire/xls/UnderlineStyle.py +32 -0
  526. spire/xls/UnknownVariableAction.py +18 -0
  527. spire/xls/UtilityMethods.py +55 -0
  528. spire/xls/VPageBreak.py +34 -0
  529. spire/xls/VPageBreaksCollection.py +96 -0
  530. spire/xls/Validation.py +33 -0
  531. spire/xls/ValidationComparisonOperator.py +23 -0
  532. spire/xls/VariableTypeAction.py +19 -0
  533. spire/xls/VerticalAlignType.py +20 -0
  534. spire/xls/ViewMode.py +18 -0
  535. spire/xls/WebQueryConnection.py +224 -0
  536. spire/xls/Workbook.py +3152 -0
  537. spire/xls/WorkbookObjectsCollection.py +25 -0
  538. spire/xls/Worksheet.py +1319 -0
  539. spire/xls/WorksheetChartsCollection.py +83 -0
  540. spire/xls/WorksheetConditionalFormats.py +12 -0
  541. spire/xls/WorksheetCopyType.py +31 -0
  542. spire/xls/WorksheetVisibility.py +18 -0
  543. spire/xls/WorksheetsCollection.py +341 -0
  544. spire/xls/WriteProtection.py +64 -0
  545. spire/xls/XLSXBorderJoinType.py +19 -0
  546. spire/xls/XLSXChartBevelType.py +26 -0
  547. spire/xls/XLSXChartLightingType.py +40 -0
  548. spire/xls/XLSXChartMaterialType.py +32 -0
  549. spire/xls/XLSXChartPrespectiveType.py +21 -0
  550. spire/xls/XLSXChartShadowInnerType.py +25 -0
  551. spire/xls/XLSXChartShadowOuterType.py +25 -0
  552. spire/xls/XLSXPivotItemType.py +28 -0
  553. spire/xls/XlsAddInFunction.py +78 -0
  554. spire/xls/XlsAddInFunctionsCollection.py +101 -0
  555. spire/xls/XlsArcShape.py +331 -0
  556. spire/xls/XlsAutoFiltersCollection.py +119 -0
  557. spire/xls/XlsBitmapShape.py +297 -0
  558. spire/xls/XlsBorder.py +172 -0
  559. spire/xls/XlsBorderArrayWrapper.py +116 -0
  560. spire/xls/XlsBordersCollection.py +101 -0
  561. spire/xls/XlsBuiltInDocumentProperties.py +639 -0
  562. spire/xls/XlsButtonShape.py +137 -0
  563. spire/xls/XlsChart.py +1510 -0
  564. spire/xls/XlsChartAxis.py +564 -0
  565. spire/xls/XlsChartBorder.py +165 -0
  566. spire/xls/XlsChartCategoryAxis.py +656 -0
  567. spire/xls/XlsChartDataLabelArea.py +387 -0
  568. spire/xls/XlsChartDataLabels.py +811 -0
  569. spire/xls/XlsChartDataPoint.py +108 -0
  570. spire/xls/XlsChartDataPointsCollection.py +120 -0
  571. spire/xls/XlsChartDataTable.py +393 -0
  572. spire/xls/XlsChartDropBar.py +301 -0
  573. spire/xls/XlsChartFill.py +571 -0
  574. spire/xls/XlsChartFormat.py +1069 -0
  575. spire/xls/XlsChartFormatCollection.py +162 -0
  576. spire/xls/XlsChartFrameFormat.py +614 -0
  577. spire/xls/XlsChartGridLine.py +171 -0
  578. spire/xls/XlsChartInterior.py +240 -0
  579. spire/xls/XlsChartLegend.py +355 -0
  580. spire/xls/XlsChartLegendArea.py +419 -0
  581. spire/xls/XlsChartLegendEntry.py +156 -0
  582. spire/xls/XlsChartPageSetup.py +56 -0
  583. spire/xls/XlsChartPlotArea.py +12 -0
  584. spire/xls/XlsChartSerie.py +589 -0
  585. spire/xls/XlsChartSerieDataFormat.py +1008 -0
  586. spire/xls/XlsChartSeries.py +111 -0
  587. spire/xls/XlsChartSeriesAxis.py +212 -0
  588. spire/xls/XlsChartShape.py +1142 -0
  589. spire/xls/XlsChartTitleArea.py +392 -0
  590. spire/xls/XlsChartValueAxis.py +317 -0
  591. spire/xls/XlsChartWallOrFloor.py +319 -0
  592. spire/xls/XlsChartsCollection.py +89 -0
  593. spire/xls/XlsCheckBoxShape.py +156 -0
  594. spire/xls/XlsComboBoxShape.py +128 -0
  595. spire/xls/XlsComment.py +234 -0
  596. spire/xls/XlsCommentsCollection.py +87 -0
  597. spire/xls/XlsConditionValue.py +111 -0
  598. spire/xls/XlsConditionalFormat.py +1119 -0
  599. spire/xls/XlsConditionalFormats.py +590 -0
  600. spire/xls/XlsDataValidationCollection.py +159 -0
  601. spire/xls/XlsDataValidationTable.py +105 -0
  602. spire/xls/XlsDocumentProperty.py +370 -0
  603. spire/xls/XlsEventArgs.py +93 -0
  604. spire/xls/XlsEventHandler.py +52 -0
  605. spire/xls/XlsFill.py +139 -0
  606. spire/xls/XlsFont.py +364 -0
  607. spire/xls/XlsFontStyle.py +12 -0
  608. spire/xls/XlsFontsCollection.py +51 -0
  609. spire/xls/XlsGradient.py +185 -0
  610. spire/xls/XlsGradientStop.py +85 -0
  611. spire/xls/XlsGroupBoxShape.py +88 -0
  612. spire/xls/XlsHPageBreak.py +105 -0
  613. spire/xls/XlsHPageBreaksCollection.py +85 -0
  614. spire/xls/XlsHeaderFooterShapeCollection.py +57 -0
  615. spire/xls/XlsHyperLink.py +229 -0
  616. spire/xls/XlsHyperLinksCollection.py +102 -0
  617. spire/xls/XlsLabelShape.py +73 -0
  618. spire/xls/XlsLineShape.py +367 -0
  619. spire/xls/XlsListBoxShape.py +124 -0
  620. spire/xls/XlsName.py +1871 -0
  621. spire/xls/XlsObject.py +36 -0
  622. spire/xls/XlsOvalShape.py +176 -0
  623. spire/xls/XlsPageSetup.py +220 -0
  624. spire/xls/XlsPageSetupBase.py +1354 -0
  625. spire/xls/XlsPicturesCollection.py +365 -0
  626. spire/xls/XlsPivotCache.py +401 -0
  627. spire/xls/XlsPivotCacheField.py +209 -0
  628. spire/xls/XlsPivotCachesCollection.py +124 -0
  629. spire/xls/XlsPivotField.py +885 -0
  630. spire/xls/XlsPivotTable.py +905 -0
  631. spire/xls/XlsPivotTablesCollection.py +131 -0
  632. spire/xls/XlsPrstGeomShape.py +97 -0
  633. spire/xls/XlsRadioButtonShape.py +188 -0
  634. spire/xls/XlsRange.py +3193 -0
  635. spire/xls/XlsRangesCollection.py +1566 -0
  636. spire/xls/XlsRectangleShape.py +174 -0
  637. spire/xls/XlsScrollBarShape.py +146 -0
  638. spire/xls/XlsShape.py +967 -0
  639. spire/xls/XlsShapeFill.py +627 -0
  640. spire/xls/XlsShapeLineFormat.py +341 -0
  641. spire/xls/XlsSpinnerShape.py +116 -0
  642. spire/xls/XlsStyle.py +106 -0
  643. spire/xls/XlsStylesCollection.py +73 -0
  644. spire/xls/XlsTextBoxShape.py +480 -0
  645. spire/xls/XlsVPageBreak.py +98 -0
  646. spire/xls/XlsVPageBreaksCollection.py +84 -0
  647. spire/xls/XlsValidation.py +520 -0
  648. spire/xls/XlsValidationWrapper.py +397 -0
  649. spire/xls/XlsWorkbook.py +1947 -0
  650. spire/xls/XlsWorkbookObjectsCollection.py +94 -0
  651. spire/xls/XlsWorksheet.py +4352 -0
  652. spire/xls/XlsWorksheetBase.py +1273 -0
  653. spire/xls/XlsWorksheetChartsCollection.py +25 -0
  654. spire/xls/XlsWorksheetConditionalFormats.py +215 -0
  655. spire/xls/XlsWorksheetsCollection.py +416 -0
  656. spire/xls/XmlOpenType.py +14 -0
  657. spire/xls/__init__.py +723 -0
  658. spire/xls/common/Boolean.py +192 -0
  659. spire/xls/common/Byte.py +256 -0
  660. spire/xls/common/Char.py +740 -0
  661. spire/xls/common/Color.py +2187 -0
  662. spire/xls/common/Common.py +150 -0
  663. spire/xls/common/CultureInfo.py +565 -0
  664. spire/xls/common/DateTime.py +1147 -0
  665. spire/xls/common/Double.py +438 -0
  666. spire/xls/common/EmfType.py +23 -0
  667. spire/xls/common/Encoding.py +928 -0
  668. spire/xls/common/FontStyle.py +25 -0
  669. spire/xls/common/GraphicsUnit.py +27 -0
  670. spire/xls/common/ICollection.py +70 -0
  671. spire/xls/common/IDictionary.py +122 -0
  672. spire/xls/common/IEnumerable.py +41 -0
  673. spire/xls/common/IEnumerator.py +60 -0
  674. spire/xls/common/IList.py +145 -0
  675. spire/xls/common/Int16.py +272 -0
  676. spire/xls/common/Int32.py +280 -0
  677. spire/xls/common/Int64.py +256 -0
  678. spire/xls/common/License.py +175 -0
  679. spire/xls/common/PixelFormat.py +43 -0
  680. spire/xls/common/Point.py +298 -0
  681. spire/xls/common/PointF.py +274 -0
  682. spire/xls/common/Rectangle.py +449 -0
  683. spire/xls/common/RectangleF.py +436 -0
  684. spire/xls/common/Regex.py +962 -0
  685. spire/xls/common/RegexOptions.py +29 -0
  686. spire/xls/common/Single.py +416 -0
  687. spire/xls/common/Size.py +271 -0
  688. spire/xls/common/SizeF.py +259 -0
  689. spire/xls/common/SpireObject.py +79 -0
  690. spire/xls/common/Stream.py +550 -0
  691. spire/xls/common/String.py +1878 -0
  692. spire/xls/common/TimeSpan.py +872 -0
  693. spire/xls/common/UInt16.py +272 -0
  694. spire/xls/common/UInt32.py +272 -0
  695. spire/xls/common/UInt64.py +272 -0
  696. spire/xls/common/__init__.py +316 -0
  697. spire/xls/lib/Spire.Xls.Base.dylib +0 -0
  698. spire/xls/lib/__init__.py +0 -0
  699. spire/xls/lib/libSkiaSharp.dylib +0 -0
  700. spire_xls-15.5.0.dist-info/METADATA +197 -0
  701. spire_xls-15.5.0.dist-info/RECORD +703 -0
  702. spire_xls-15.5.0.dist-info/WHEEL +5 -0
  703. spire_xls-15.5.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1069 @@
1
+ from enum import Enum
2
+ from plum import dispatch
3
+ from typing import TypeVar,Union,Generic,List,Tuple
4
+ from spire.xls.common import *
5
+ from spire.xls import *
6
+ from ctypes import *
7
+ import abc
8
+
9
+ class XlsChartFormat ( XlsObject, IChartFormat, ICloneParent) :
10
+ """
11
+
12
+ """
13
+ @property
14
+ def IsPrimaryAxis(self)->bool:
15
+ """
16
+
17
+ """
18
+ GetDllLibXls().XlsChartFormat_get_IsPrimaryAxis.argtypes=[c_void_p]
19
+ GetDllLibXls().XlsChartFormat_get_IsPrimaryAxis.restype=c_bool
20
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsPrimaryAxis, self.Ptr)
21
+ return ret
22
+
23
+ @property
24
+ def IsSeriesName(self)->bool:
25
+ """
26
+
27
+ """
28
+ GetDllLibXls().XlsChartFormat_get_IsSeriesName.argtypes=[c_void_p]
29
+ GetDllLibXls().XlsChartFormat_get_IsSeriesName.restype=c_bool
30
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsSeriesName, self.Ptr)
31
+ return ret
32
+
33
+ @IsSeriesName.setter
34
+ def IsSeriesName(self, value:bool):
35
+ GetDllLibXls().XlsChartFormat_set_IsSeriesName.argtypes=[c_void_p, c_bool]
36
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsSeriesName, self.Ptr, value)
37
+
38
+ @property
39
+ def IsShowLeaderLines(self)->bool:
40
+ """
41
+
42
+ """
43
+ GetDllLibXls().XlsChartFormat_get_IsShowLeaderLines.argtypes=[c_void_p]
44
+ GetDllLibXls().XlsChartFormat_get_IsShowLeaderLines.restype=c_bool
45
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsShowLeaderLines, self.Ptr)
46
+ return ret
47
+
48
+ @IsShowLeaderLines.setter
49
+ def IsShowLeaderLines(self, value:bool):
50
+ GetDllLibXls().XlsChartFormat_set_IsShowLeaderLines.argtypes=[c_void_p, c_bool]
51
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsShowLeaderLines, self.Ptr, value)
52
+
53
+ @property
54
+ def IsSmoothed(self)->bool:
55
+ """
56
+ <summary>
57
+ If true - format has smothed line; otherwise false. Read-only.
58
+ </summary>
59
+ """
60
+ GetDllLibXls().XlsChartFormat_get_IsSmoothed.argtypes=[c_void_p]
61
+ GetDllLibXls().XlsChartFormat_get_IsSmoothed.restype=c_bool
62
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsSmoothed, self.Ptr)
63
+ return ret
64
+
65
+ @property
66
+ def IsStacked(self)->bool:
67
+ """
68
+
69
+ """
70
+ GetDllLibXls().XlsChartFormat_get_IsStacked.argtypes=[c_void_p]
71
+ GetDllLibXls().XlsChartFormat_get_IsStacked.restype=c_bool
72
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsStacked, self.Ptr)
73
+ return ret
74
+
75
+ @IsStacked.setter
76
+ def IsStacked(self, value:bool):
77
+ GetDllLibXls().XlsChartFormat_set_IsStacked.argtypes=[c_void_p, c_bool]
78
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsStacked, self.Ptr, value)
79
+
80
+ @property
81
+
82
+ def LineStyle(self)->'DropLineStyleType':
83
+ """
84
+
85
+ """
86
+ GetDllLibXls().XlsChartFormat_get_LineStyle.argtypes=[c_void_p]
87
+ GetDllLibXls().XlsChartFormat_get_LineStyle.restype=c_int
88
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_LineStyle, self.Ptr)
89
+ objwraped = DropLineStyleType(ret)
90
+ return objwraped
91
+
92
+ @LineStyle.setter
93
+ def LineStyle(self, value:'DropLineStyleType'):
94
+ GetDllLibXls().XlsChartFormat_set_LineStyle.argtypes=[c_void_p, c_int]
95
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_LineStyle, self.Ptr, value.value)
96
+
97
+ @property
98
+ def NumSplitValue(self)->int:
99
+ """
100
+
101
+ """
102
+ GetDllLibXls().XlsChartFormat_get_NumSplitValue.argtypes=[c_void_p]
103
+ GetDllLibXls().XlsChartFormat_get_NumSplitValue.restype=c_int
104
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_NumSplitValue, self.Ptr)
105
+ return ret
106
+
107
+ @NumSplitValue.setter
108
+ def NumSplitValue(self, value:int):
109
+ GetDllLibXls().XlsChartFormat_set_NumSplitValue.argtypes=[c_void_p, c_int]
110
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_NumSplitValue, self.Ptr, value)
111
+
112
+ @property
113
+ def Perspective(self)->int:
114
+ """
115
+ <summary>
116
+ Returns or sets the perspective for the 3-D chart view.( 0 - 100 )
117
+ </summary>
118
+ """
119
+ GetDllLibXls().XlsChartFormat_get_Perspective.argtypes=[c_void_p]
120
+ GetDllLibXls().XlsChartFormat_get_Perspective.restype=c_int
121
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_Perspective, self.Ptr)
122
+ return ret
123
+
124
+ @Perspective.setter
125
+ def Perspective(self, value:int):
126
+ GetDllLibXls().XlsChartFormat_set_Perspective.argtypes=[c_void_p, c_int]
127
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_Perspective, self.Ptr, value)
128
+
129
+ @property
130
+
131
+ def PieChartType(self)->'ChartPieType':
132
+ """
133
+
134
+ """
135
+ GetDllLibXls().XlsChartFormat_get_PieChartType.argtypes=[c_void_p]
136
+ GetDllLibXls().XlsChartFormat_get_PieChartType.restype=c_int
137
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_PieChartType, self.Ptr)
138
+ objwraped = ChartPieType(ret)
139
+ return objwraped
140
+
141
+ @PieChartType.setter
142
+ def PieChartType(self, value:'ChartPieType'):
143
+ GetDllLibXls().XlsChartFormat_set_PieChartType.argtypes=[c_void_p, c_int]
144
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_PieChartType, self.Ptr, value.value)
145
+
146
+ @property
147
+ def RightAngleAxes(self)->bool:
148
+ """
149
+ <summary>
150
+ True if the chart axes are at right angles, independent of chart rotation or elevation.
151
+ </summary>
152
+ """
153
+ GetDllLibXls().XlsChartFormat_get_RightAngleAxes.argtypes=[c_void_p]
154
+ GetDllLibXls().XlsChartFormat_get_RightAngleAxes.restype=c_bool
155
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_RightAngleAxes, self.Ptr)
156
+ return ret
157
+
158
+ @RightAngleAxes.setter
159
+ def RightAngleAxes(self, value:bool):
160
+ GetDllLibXls().XlsChartFormat_set_RightAngleAxes.argtypes=[c_void_p, c_bool]
161
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_RightAngleAxes, self.Ptr, value)
162
+
163
+ @property
164
+ def Rotation(self)->int:
165
+ """
166
+ <summary>
167
+ Returns or sets the rotation of the 3-D chart view
168
+ (the rotation of the plot area around the z-axis, in degrees).(0 to 360 degrees).
169
+ </summary>
170
+ """
171
+ GetDllLibXls().XlsChartFormat_get_Rotation.argtypes=[c_void_p]
172
+ GetDllLibXls().XlsChartFormat_get_Rotation.restype=c_int
173
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_Rotation, self.Ptr)
174
+ return ret
175
+
176
+ @Rotation.setter
177
+ def Rotation(self, value:int):
178
+ GetDllLibXls().XlsChartFormat_set_Rotation.argtypes=[c_void_p, c_int]
179
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_Rotation, self.Ptr, value)
180
+
181
+ @property
182
+ def ShowAsPercentsBar(self)->bool:
183
+ """
184
+
185
+ """
186
+ GetDllLibXls().XlsChartFormat_get_ShowAsPercentsBar.argtypes=[c_void_p]
187
+ GetDllLibXls().XlsChartFormat_get_ShowAsPercentsBar.restype=c_bool
188
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_ShowAsPercentsBar, self.Ptr)
189
+ return ret
190
+
191
+ @ShowAsPercentsBar.setter
192
+ def ShowAsPercentsBar(self, value:bool):
193
+ GetDllLibXls().XlsChartFormat_set_ShowAsPercentsBar.argtypes=[c_void_p, c_bool]
194
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_ShowAsPercentsBar, self.Ptr, value)
195
+
196
+ @property
197
+ def ShowAsPercentsLine(self)->bool:
198
+ """
199
+
200
+ """
201
+ GetDllLibXls().XlsChartFormat_get_ShowAsPercentsLine.argtypes=[c_void_p]
202
+ GetDllLibXls().XlsChartFormat_get_ShowAsPercentsLine.restype=c_bool
203
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_ShowAsPercentsLine, self.Ptr)
204
+ return ret
205
+
206
+ @ShowAsPercentsLine.setter
207
+ def ShowAsPercentsLine(self, value:bool):
208
+ GetDllLibXls().XlsChartFormat_set_ShowAsPercentsLine.argtypes=[c_void_p, c_bool]
209
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_ShowAsPercentsLine, self.Ptr, value)
210
+
211
+ @property
212
+ def SplitPercent(self)->int:
213
+ """
214
+
215
+ """
216
+ GetDllLibXls().XlsChartFormat_get_SplitPercent.argtypes=[c_void_p]
217
+ GetDllLibXls().XlsChartFormat_get_SplitPercent.restype=c_int
218
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_SplitPercent, self.Ptr)
219
+ return ret
220
+
221
+ @SplitPercent.setter
222
+ def SplitPercent(self, value:int):
223
+ GetDllLibXls().XlsChartFormat_set_SplitPercent.argtypes=[c_void_p, c_int]
224
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_SplitPercent, self.Ptr, value)
225
+
226
+ @property
227
+ def StackValuesBar(self)->bool:
228
+ """
229
+
230
+ """
231
+ GetDllLibXls().XlsChartFormat_get_StackValuesBar.argtypes=[c_void_p]
232
+ GetDllLibXls().XlsChartFormat_get_StackValuesBar.restype=c_bool
233
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_StackValuesBar, self.Ptr)
234
+ return ret
235
+
236
+ @StackValuesBar.setter
237
+ def StackValuesBar(self, value:bool):
238
+ GetDllLibXls().XlsChartFormat_set_StackValuesBar.argtypes=[c_void_p, c_bool]
239
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_StackValuesBar, self.Ptr, value)
240
+
241
+ @property
242
+ def StackValuesLine(self)->bool:
243
+ """
244
+
245
+ """
246
+ GetDllLibXls().XlsChartFormat_get_StackValuesLine.argtypes=[c_void_p]
247
+ GetDllLibXls().XlsChartFormat_get_StackValuesLine.restype=c_bool
248
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_StackValuesLine, self.Ptr)
249
+ return ret
250
+
251
+ @StackValuesLine.setter
252
+ def StackValuesLine(self, value:bool):
253
+ GetDllLibXls().XlsChartFormat_set_StackValuesLine.argtypes=[c_void_p, c_bool]
254
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_StackValuesLine, self.Ptr, value)
255
+
256
+ @property
257
+ def UseDefaultSplitValue(self)->bool:
258
+ """
259
+
260
+ """
261
+ GetDllLibXls().XlsChartFormat_get_UseDefaultSplitValue.argtypes=[c_void_p]
262
+ GetDllLibXls().XlsChartFormat_get_UseDefaultSplitValue.restype=c_bool
263
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_UseDefaultSplitValue, self.Ptr)
264
+ return ret
265
+
266
+ @UseDefaultSplitValue.setter
267
+ def UseDefaultSplitValue(self, value:bool):
268
+ GetDllLibXls().XlsChartFormat_set_UseDefaultSplitValue.argtypes=[c_void_p, c_bool]
269
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_UseDefaultSplitValue, self.Ptr, value)
270
+
271
+ @property
272
+ def WallsAndGridlines2D(self)->bool:
273
+ """
274
+
275
+ """
276
+ GetDllLibXls().XlsChartFormat_get_WallsAndGridlines2D.argtypes=[c_void_p]
277
+ GetDllLibXls().XlsChartFormat_get_WallsAndGridlines2D.restype=c_bool
278
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_WallsAndGridlines2D, self.Ptr)
279
+ return ret
280
+
281
+ @WallsAndGridlines2D.setter
282
+ def WallsAndGridlines2D(self, value:bool):
283
+ GetDllLibXls().XlsChartFormat_set_WallsAndGridlines2D.argtypes=[c_void_p, c_bool]
284
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_WallsAndGridlines2D, self.Ptr, value)
285
+
286
+
287
+ def Clone(self ,parent:'SpireObject')->'SpireObject':
288
+ """
289
+
290
+ """
291
+ intPtrparent:c_void_p = parent.Ptr
292
+
293
+ GetDllLibXls().XlsChartFormat_Clone.argtypes=[c_void_p ,c_void_p]
294
+ GetDllLibXls().XlsChartFormat_Clone.restype=c_void_p
295
+ intPtr = CallCFunction(GetDllLibXls().XlsChartFormat_Clone, self.Ptr, intPtrparent)
296
+ ret = None if intPtr==None else SpireObject(intPtr)
297
+ return ret
298
+
299
+
300
+ @property
301
+ def IsVaryColor(self)->bool:
302
+ """
303
+
304
+ """
305
+ GetDllLibXls().XlsChartFormat_get_IsVaryColor.argtypes=[c_void_p]
306
+ GetDllLibXls().XlsChartFormat_get_IsVaryColor.restype=c_bool
307
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsVaryColor, self.Ptr)
308
+ return ret
309
+
310
+ @IsVaryColor.setter
311
+ def IsVaryColor(self, value:bool):
312
+ GetDllLibXls().XlsChartFormat_set_IsVaryColor.argtypes=[c_void_p, c_bool]
313
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsVaryColor, self.Ptr, value)
314
+
315
+ @property
316
+ def IsVeryColor(self)->bool:
317
+ """
318
+
319
+ """
320
+ GetDllLibXls().XlsChartFormat_get_IsVeryColor.argtypes=[c_void_p]
321
+ GetDllLibXls().XlsChartFormat_get_IsVeryColor.restype=c_bool
322
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsVeryColor, self.Ptr)
323
+ return ret
324
+
325
+ @IsVeryColor.setter
326
+ def IsVeryColor(self, value:bool):
327
+ GetDllLibXls().XlsChartFormat_set_IsVeryColor.argtypes=[c_void_p, c_bool]
328
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsVeryColor, self.Ptr, value)
329
+
330
+ @property
331
+ def Overlap(self)->int:
332
+ """
333
+
334
+ """
335
+ GetDllLibXls().XlsChartFormat_get_Overlap.argtypes=[c_void_p]
336
+ GetDllLibXls().XlsChartFormat_get_Overlap.restype=c_int
337
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_Overlap, self.Ptr)
338
+ return ret
339
+
340
+ @Overlap.setter
341
+ def Overlap(self, value:int):
342
+ GetDllLibXls().XlsChartFormat_set_Overlap.argtypes=[c_void_p, c_int]
343
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_Overlap, self.Ptr, value)
344
+
345
+ @property
346
+ def GapWidth(self)->int:
347
+ """
348
+
349
+ """
350
+ GetDllLibXls().XlsChartFormat_get_GapWidth.argtypes=[c_void_p]
351
+ GetDllLibXls().XlsChartFormat_get_GapWidth.restype=c_int
352
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_GapWidth, self.Ptr)
353
+ return ret
354
+
355
+ @GapWidth.setter
356
+ def GapWidth(self, value:int):
357
+ GetDllLibXls().XlsChartFormat_set_GapWidth.argtypes=[c_void_p, c_int]
358
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_GapWidth, self.Ptr, value)
359
+
360
+ @property
361
+ def FirstSliceAngle(self)->int:
362
+ """
363
+
364
+ """
365
+ GetDllLibXls().XlsChartFormat_get_FirstSliceAngle.argtypes=[c_void_p]
366
+ GetDllLibXls().XlsChartFormat_get_FirstSliceAngle.restype=c_int
367
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_FirstSliceAngle, self.Ptr)
368
+ return ret
369
+
370
+ @FirstSliceAngle.setter
371
+ def FirstSliceAngle(self, value:int):
372
+ GetDllLibXls().XlsChartFormat_set_FirstSliceAngle.argtypes=[c_void_p, c_int]
373
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_FirstSliceAngle, self.Ptr, value)
374
+
375
+ @property
376
+ def DoughnutHoleSize(self)->int:
377
+ """
378
+
379
+ """
380
+ GetDllLibXls().XlsChartFormat_get_DoughnutHoleSize.argtypes=[c_void_p]
381
+ GetDllLibXls().XlsChartFormat_get_DoughnutHoleSize.restype=c_int
382
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_DoughnutHoleSize, self.Ptr)
383
+ return ret
384
+
385
+ @DoughnutHoleSize.setter
386
+ def DoughnutHoleSize(self, value:int):
387
+ GetDllLibXls().XlsChartFormat_set_DoughnutHoleSize.argtypes=[c_void_p, c_int]
388
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_DoughnutHoleSize, self.Ptr, value)
389
+
390
+ @property
391
+ def BubbleScale(self)->int:
392
+ """
393
+
394
+ """
395
+ GetDllLibXls().XlsChartFormat_get_BubbleScale.argtypes=[c_void_p]
396
+ GetDllLibXls().XlsChartFormat_get_BubbleScale.restype=c_int
397
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_BubbleScale, self.Ptr)
398
+ return ret
399
+
400
+ @BubbleScale.setter
401
+ def BubbleScale(self, value:int):
402
+ GetDllLibXls().XlsChartFormat_set_BubbleScale.argtypes=[c_void_p, c_int]
403
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_BubbleScale, self.Ptr, value)
404
+
405
+ @property
406
+
407
+ def SizeRepresents(self)->'BubbleSizeType':
408
+ """
409
+
410
+ """
411
+ GetDllLibXls().XlsChartFormat_get_SizeRepresents.argtypes=[c_void_p]
412
+ GetDllLibXls().XlsChartFormat_get_SizeRepresents.restype=c_int
413
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_SizeRepresents, self.Ptr)
414
+ objwraped = BubbleSizeType(ret)
415
+ return objwraped
416
+
417
+ @SizeRepresents.setter
418
+ def SizeRepresents(self, value:'BubbleSizeType'):
419
+ GetDllLibXls().XlsChartFormat_set_SizeRepresents.argtypes=[c_void_p, c_int]
420
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_SizeRepresents, self.Ptr, value.value)
421
+
422
+ @property
423
+ def ShowNegativeBubbles(self)->bool:
424
+ """
425
+
426
+ """
427
+ GetDllLibXls().XlsChartFormat_get_ShowNegativeBubbles.argtypes=[c_void_p]
428
+ GetDllLibXls().XlsChartFormat_get_ShowNegativeBubbles.restype=c_bool
429
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_ShowNegativeBubbles, self.Ptr)
430
+ return ret
431
+
432
+ @ShowNegativeBubbles.setter
433
+ def ShowNegativeBubbles(self, value:bool):
434
+ GetDllLibXls().XlsChartFormat_set_ShowNegativeBubbles.argtypes=[c_void_p, c_bool]
435
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_ShowNegativeBubbles, self.Ptr, value)
436
+
437
+ @property
438
+ def HasRadarAxisLabels(self)->bool:
439
+ """
440
+
441
+ """
442
+ GetDllLibXls().XlsChartFormat_get_HasRadarAxisLabels.argtypes=[c_void_p]
443
+ GetDllLibXls().XlsChartFormat_get_HasRadarAxisLabels.restype=c_bool
444
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasRadarAxisLabels, self.Ptr)
445
+ return ret
446
+
447
+ @HasRadarAxisLabels.setter
448
+ def HasRadarAxisLabels(self, value:bool):
449
+ GetDllLibXls().XlsChartFormat_set_HasRadarAxisLabels.argtypes=[c_void_p, c_bool]
450
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasRadarAxisLabels, self.Ptr, value)
451
+
452
+ @property
453
+
454
+ def SplitType(self)->'SplitType':
455
+ """
456
+
457
+ """
458
+ GetDllLibXls().XlsChartFormat_get_SplitType.argtypes=[c_void_p]
459
+ GetDllLibXls().XlsChartFormat_get_SplitType.restype=c_int
460
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_SplitType, self.Ptr)
461
+ objwraped = SplitType(ret)
462
+ return objwraped
463
+
464
+ @SplitType.setter
465
+ def SplitType(self, value:'SplitType'):
466
+ GetDllLibXls().XlsChartFormat_set_SplitType.argtypes=[c_void_p, c_int]
467
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_SplitType, self.Ptr, value.value)
468
+
469
+ @property
470
+ def SplitValue(self)->int:
471
+ """
472
+
473
+ """
474
+ GetDllLibXls().XlsChartFormat_get_SplitValue.argtypes=[c_void_p]
475
+ GetDllLibXls().XlsChartFormat_get_SplitValue.restype=c_int
476
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_SplitValue, self.Ptr)
477
+ return ret
478
+
479
+ @SplitValue.setter
480
+ def SplitValue(self, value:int):
481
+ GetDllLibXls().XlsChartFormat_set_SplitValue.argtypes=[c_void_p, c_int]
482
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_SplitValue, self.Ptr, value)
483
+
484
+ @property
485
+ def PieSecondSize(self)->int:
486
+ """
487
+
488
+ """
489
+ GetDllLibXls().XlsChartFormat_get_PieSecondSize.argtypes=[c_void_p]
490
+ GetDllLibXls().XlsChartFormat_get_PieSecondSize.restype=c_int
491
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_PieSecondSize, self.Ptr)
492
+ return ret
493
+
494
+ @PieSecondSize.setter
495
+ def PieSecondSize(self, value:int):
496
+ GetDllLibXls().XlsChartFormat_set_PieSecondSize.argtypes=[c_void_p, c_int]
497
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_PieSecondSize, self.Ptr, value)
498
+
499
+ @property
500
+
501
+ def FirstDropBar(self)->'IChartDropBar':
502
+ """
503
+
504
+ """
505
+ GetDllLibXls().XlsChartFormat_get_FirstDropBar.argtypes=[c_void_p]
506
+ GetDllLibXls().XlsChartFormat_get_FirstDropBar.restype=c_void_p
507
+ intPtr = CallCFunction(GetDllLibXls().XlsChartFormat_get_FirstDropBar, self.Ptr)
508
+ ret = None if intPtr==None else IChartDropBar(intPtr)
509
+ return ret
510
+
511
+
512
+ @property
513
+
514
+ def SecondDropBar(self)->'IChartDropBar':
515
+ """
516
+
517
+ """
518
+ GetDllLibXls().XlsChartFormat_get_SecondDropBar.argtypes=[c_void_p]
519
+ GetDllLibXls().XlsChartFormat_get_SecondDropBar.restype=c_void_p
520
+ intPtr = CallCFunction(GetDllLibXls().XlsChartFormat_get_SecondDropBar, self.Ptr)
521
+ ret = None if intPtr==None else IChartDropBar(intPtr)
522
+ return ret
523
+
524
+
525
+ @property
526
+
527
+ def PieSeriesLine(self)->'IChartBorder':
528
+ """
529
+
530
+ """
531
+ GetDllLibXls().XlsChartFormat_get_PieSeriesLine.argtypes=[c_void_p]
532
+ GetDllLibXls().XlsChartFormat_get_PieSeriesLine.restype=c_void_p
533
+ intPtr = CallCFunction(GetDllLibXls().XlsChartFormat_get_PieSeriesLine, self.Ptr)
534
+ ret = None if intPtr==None else IChartBorder(intPtr)
535
+ return ret
536
+
537
+
538
+ @property
539
+
540
+ def DataFormatOrNull(self)->'XlsChartSerieDataFormat':
541
+ """
542
+
543
+ """
544
+ GetDllLibXls().XlsChartFormat_get_DataFormatOrNull.argtypes=[c_void_p]
545
+ GetDllLibXls().XlsChartFormat_get_DataFormatOrNull.restype=c_void_p
546
+ intPtr = CallCFunction(GetDllLibXls().XlsChartFormat_get_DataFormatOrNull, self.Ptr)
547
+ ret = None if intPtr==None else XlsChartSerieDataFormat(intPtr)
548
+ return ret
549
+
550
+
551
+ @property
552
+
553
+ def Delimiter(self)->str:
554
+ """
555
+
556
+ """
557
+ GetDllLibXls().XlsChartFormat_get_Delimiter.argtypes=[c_void_p]
558
+ GetDllLibXls().XlsChartFormat_get_Delimiter.restype=c_void_p
559
+ ret = PtrToStr(CallCFunction(GetDllLibXls().XlsChartFormat_get_Delimiter, self.Ptr))
560
+ return ret
561
+
562
+
563
+ @Delimiter.setter
564
+ def Delimiter(self, value:str):
565
+ GetDllLibXls().XlsChartFormat_set_Delimiter.argtypes=[c_void_p, c_wchar_p]
566
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_Delimiter, self.Ptr, value)
567
+
568
+ @property
569
+ def DelimiterLength(self)->int:
570
+ """
571
+
572
+ """
573
+ GetDllLibXls().XlsChartFormat_get_DelimiterLength.argtypes=[c_void_p]
574
+ GetDllLibXls().XlsChartFormat_get_DelimiterLength.restype=c_int
575
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_DelimiterLength, self.Ptr)
576
+ return ret
577
+
578
+ @property
579
+ def DepthPercent(self)->int:
580
+ """
581
+ <summary>
582
+ Returns or sets the depth of a 3-D chart as a percentage of the chart width
583
+ (between 20 and 2000 percent).
584
+ </summary>
585
+ """
586
+ GetDllLibXls().XlsChartFormat_get_DepthPercent.argtypes=[c_void_p]
587
+ GetDllLibXls().XlsChartFormat_get_DepthPercent.restype=c_int
588
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_DepthPercent, self.Ptr)
589
+ return ret
590
+
591
+ @DepthPercent.setter
592
+ def DepthPercent(self, value:int):
593
+ GetDllLibXls().XlsChartFormat_set_DepthPercent.argtypes=[c_void_p, c_int]
594
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_DepthPercent, self.Ptr, value)
595
+
596
+ @property
597
+ def DrawingZOrder(self)->int:
598
+ """
599
+ <summary>
600
+ Drawing order (0 = bottom of the z-order).
601
+ </summary>
602
+ """
603
+ GetDllLibXls().XlsChartFormat_get_DrawingZOrder.argtypes=[c_void_p]
604
+ GetDllLibXls().XlsChartFormat_get_DrawingZOrder.restype=c_int
605
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_DrawingZOrder, self.Ptr)
606
+ return ret
607
+
608
+ @DrawingZOrder.setter
609
+ def DrawingZOrder(self, value:int):
610
+ GetDllLibXls().XlsChartFormat_set_DrawingZOrder.argtypes=[c_void_p, c_int]
611
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_DrawingZOrder, self.Ptr, value)
612
+
613
+ @property
614
+ def Elevation(self)->int:
615
+ """
616
+ <summary>
617
+ Gets or sets the elevation of the 3-D chart view, in degrees (0 to +90 degrees).
618
+ </summary>
619
+ """
620
+ GetDllLibXls().XlsChartFormat_get_Elevation.argtypes=[c_void_p]
621
+ GetDllLibXls().XlsChartFormat_get_Elevation.restype=c_int
622
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_Elevation, self.Ptr)
623
+ return ret
624
+
625
+ @Elevation.setter
626
+ def Elevation(self, value:int):
627
+ GetDllLibXls().XlsChartFormat_set_Elevation.argtypes=[c_void_p, c_int]
628
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_Elevation, self.Ptr, value)
629
+
630
+ @property
631
+ def AutoScaling(self)->bool:
632
+ """
633
+ <summary>
634
+ True if Microsoft Excel scales a 3-D chart so that it's closer in size to the equivalent 2-D chart..
635
+ </summary>
636
+ """
637
+ GetDllLibXls().XlsChartFormat_get_AutoScaling.argtypes=[c_void_p]
638
+ GetDllLibXls().XlsChartFormat_get_AutoScaling.restype=c_bool
639
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_AutoScaling, self.Ptr)
640
+ return ret
641
+
642
+ @AutoScaling.setter
643
+ def AutoScaling(self, value:bool):
644
+ GetDllLibXls().XlsChartFormat_set_AutoScaling.argtypes=[c_void_p, c_bool]
645
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_AutoScaling, self.Ptr, value)
646
+
647
+ @property
648
+ def Gap(self)->int:
649
+ """
650
+
651
+ """
652
+ GetDllLibXls().XlsChartFormat_get_Gap.argtypes=[c_void_p]
653
+ GetDllLibXls().XlsChartFormat_get_Gap.restype=c_int
654
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_Gap, self.Ptr)
655
+ return ret
656
+
657
+ @Gap.setter
658
+ def Gap(self, value:int):
659
+ GetDllLibXls().XlsChartFormat_set_Gap.argtypes=[c_void_p, c_int]
660
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_Gap, self.Ptr, value)
661
+
662
+ @property
663
+ def GapDepth(self)->int:
664
+ """
665
+ <summary>
666
+ Returns or sets the distance between the data series in a 3-D chart, as a percentage of the marker width.( 0 - 500 )
667
+ </summary>
668
+ """
669
+ GetDllLibXls().XlsChartFormat_get_GapDepth.argtypes=[c_void_p]
670
+ GetDllLibXls().XlsChartFormat_get_GapDepth.restype=c_int
671
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_GapDepth, self.Ptr)
672
+ return ret
673
+
674
+ @GapDepth.setter
675
+ def GapDepth(self, value:int):
676
+ GetDllLibXls().XlsChartFormat_set_GapDepth.argtypes=[c_void_p, c_int]
677
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_GapDepth, self.Ptr, value)
678
+
679
+ @property
680
+ def HasShadowBar(self)->bool:
681
+ """
682
+
683
+ """
684
+ GetDllLibXls().XlsChartFormat_get_HasShadowBar.argtypes=[c_void_p]
685
+ GetDllLibXls().XlsChartFormat_get_HasShadowBar.restype=c_bool
686
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasShadowBar, self.Ptr)
687
+ return ret
688
+
689
+ @HasShadowBar.setter
690
+ def HasShadowBar(self, value:bool):
691
+ GetDllLibXls().XlsChartFormat_set_HasShadowBar.argtypes=[c_void_p, c_bool]
692
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasShadowBar, self.Ptr, value)
693
+
694
+ @property
695
+ def HasShadowBoppop(self)->bool:
696
+ """
697
+
698
+ """
699
+ GetDllLibXls().XlsChartFormat_get_HasShadowBoppop.argtypes=[c_void_p]
700
+ GetDllLibXls().XlsChartFormat_get_HasShadowBoppop.restype=c_bool
701
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasShadowBoppop, self.Ptr)
702
+ return ret
703
+
704
+ @HasShadowBoppop.setter
705
+ def HasShadowBoppop(self, value:bool):
706
+ GetDllLibXls().XlsChartFormat_set_HasShadowBoppop.argtypes=[c_void_p, c_bool]
707
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasShadowBoppop, self.Ptr, value)
708
+
709
+ @property
710
+ def HasShadowLine(self)->bool:
711
+ """
712
+ <summary>
713
+ True if this line has a shadow.
714
+ </summary>
715
+ """
716
+ GetDllLibXls().XlsChartFormat_get_HasShadowLine.argtypes=[c_void_p]
717
+ GetDllLibXls().XlsChartFormat_get_HasShadowLine.restype=c_bool
718
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasShadowLine, self.Ptr)
719
+ return ret
720
+
721
+ @HasShadowLine.setter
722
+ def HasShadowLine(self, value:bool):
723
+ GetDllLibXls().XlsChartFormat_set_HasShadowLine.argtypes=[c_void_p, c_bool]
724
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasShadowLine, self.Ptr, value)
725
+
726
+ @property
727
+ def HasShadowPie(self)->bool:
728
+ """
729
+ <summary>
730
+ True if this pie has a shadow.
731
+ </summary>
732
+ """
733
+ GetDllLibXls().XlsChartFormat_get_HasShadowPie.argtypes=[c_void_p]
734
+ GetDllLibXls().XlsChartFormat_get_HasShadowPie.restype=c_bool
735
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasShadowPie, self.Ptr)
736
+ return ret
737
+
738
+ @HasShadowPie.setter
739
+ def HasShadowPie(self, value:bool):
740
+ GetDllLibXls().XlsChartFormat_set_HasShadowPie.argtypes=[c_void_p, c_bool]
741
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasShadowPie, self.Ptr, value)
742
+
743
+ @property
744
+ def HasShadowRadar(self)->bool:
745
+ """
746
+ <summary>
747
+ True if this radar series has a shadow.
748
+ </summary>
749
+ """
750
+ GetDllLibXls().XlsChartFormat_get_HasShadowRadar.argtypes=[c_void_p]
751
+ GetDllLibXls().XlsChartFormat_get_HasShadowRadar.restype=c_bool
752
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasShadowRadar, self.Ptr)
753
+ return ret
754
+
755
+ @HasShadowRadar.setter
756
+ def HasShadowRadar(self, value:bool):
757
+ GetDllLibXls().XlsChartFormat_set_HasShadowRadar.argtypes=[c_void_p, c_bool]
758
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasShadowRadar, self.Ptr, value)
759
+
760
+ @property
761
+ def HasShadowScatter(self)->bool:
762
+ """
763
+ <summary>
764
+ True if bubble series has a shadow.
765
+ </summary>
766
+ """
767
+ GetDllLibXls().XlsChartFormat_get_HasShadowScatter.argtypes=[c_void_p]
768
+ GetDllLibXls().XlsChartFormat_get_HasShadowScatter.restype=c_bool
769
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasShadowScatter, self.Ptr)
770
+ return ret
771
+
772
+ @HasShadowScatter.setter
773
+ def HasShadowScatter(self, value:bool):
774
+ GetDllLibXls().XlsChartFormat_set_HasShadowScatter.argtypes=[c_void_p, c_bool]
775
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasShadowScatter, self.Ptr, value)
776
+
777
+ @property
778
+ def HasValue(self)->bool:
779
+ """
780
+
781
+ """
782
+ GetDllLibXls().XlsChartFormat_get_HasValue.argtypes=[c_void_p]
783
+ GetDllLibXls().XlsChartFormat_get_HasValue.restype=c_bool
784
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasValue, self.Ptr)
785
+ return ret
786
+
787
+ @HasValue.setter
788
+ def HasValue(self, value:bool):
789
+ GetDllLibXls().XlsChartFormat_set_HasValue.argtypes=[c_void_p, c_bool]
790
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasValue, self.Ptr, value)
791
+
792
+ @property
793
+ def HasWedgeCallout(self)->bool:
794
+ """
795
+
796
+ """
797
+ GetDllLibXls().XlsChartFormat_get_HasWedgeCallout.argtypes=[c_void_p]
798
+ GetDllLibXls().XlsChartFormat_get_HasWedgeCallout.restype=c_bool
799
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HasWedgeCallout, self.Ptr)
800
+ return ret
801
+
802
+ @HasWedgeCallout.setter
803
+ def HasWedgeCallout(self, value:bool):
804
+ GetDllLibXls().XlsChartFormat_set_HasWedgeCallout.argtypes=[c_void_p, c_bool]
805
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HasWedgeCallout, self.Ptr, value)
806
+
807
+ @property
808
+ def HeightPercent(self)->int:
809
+ """
810
+ <summary>
811
+ Returns or sets the height of a 3-D chart as a percentage of the chart width
812
+ </summary>
813
+ """
814
+ GetDllLibXls().XlsChartFormat_get_HeightPercent.argtypes=[c_void_p]
815
+ GetDllLibXls().XlsChartFormat_get_HeightPercent.restype=c_int
816
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_HeightPercent, self.Ptr)
817
+ return ret
818
+
819
+ @HeightPercent.setter
820
+ def HeightPercent(self, value:int):
821
+ GetDllLibXls().XlsChartFormat_set_HeightPercent.argtypes=[c_void_p, c_int]
822
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_HeightPercent, self.Ptr, value)
823
+
824
+ @property
825
+ def Is3D(self)->bool:
826
+ """
827
+ <summary>
828
+ If true - serie 3D; otherwise serie 2D. Read-only.
829
+ </summary>
830
+ """
831
+ GetDllLibXls().XlsChartFormat_get_Is3D.argtypes=[c_void_p]
832
+ GetDllLibXls().XlsChartFormat_get_Is3D.restype=c_bool
833
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_Is3D, self.Ptr)
834
+ return ret
835
+
836
+ @property
837
+ def Is3DPhongShade(self)->bool:
838
+ """
839
+ <summary>
840
+ True if this surface chart has shading.
841
+ </summary>
842
+ """
843
+ GetDllLibXls().XlsChartFormat_get_Is3DPhongShade.argtypes=[c_void_p]
844
+ GetDllLibXls().XlsChartFormat_get_Is3DPhongShade.restype=c_bool
845
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_Is3DPhongShade, self.Ptr)
846
+ return ret
847
+
848
+ @Is3DPhongShade.setter
849
+ def Is3DPhongShade(self, value:bool):
850
+ GetDllLibXls().XlsChartFormat_set_Is3DPhongShade.argtypes=[c_void_p, c_bool]
851
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_Is3DPhongShade, self.Ptr, value)
852
+
853
+ @property
854
+ def IsAreaShadowed(self)->bool:
855
+ """
856
+ <summary>
857
+ This area has a shadow.
858
+ </summary>
859
+ """
860
+ GetDllLibXls().XlsChartFormat_get_IsAreaShadowed.argtypes=[c_void_p]
861
+ GetDllLibXls().XlsChartFormat_get_IsAreaShadowed.restype=c_bool
862
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsAreaShadowed, self.Ptr)
863
+ return ret
864
+
865
+ @IsAreaShadowed.setter
866
+ def IsAreaShadowed(self, value:bool):
867
+ GetDllLibXls().XlsChartFormat_set_IsAreaShadowed.argtypes=[c_void_p, c_bool]
868
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsAreaShadowed, self.Ptr, value)
869
+
870
+ @property
871
+ def IsBubbles(self)->bool:
872
+ """
873
+
874
+ """
875
+ GetDllLibXls().XlsChartFormat_get_IsBubbles.argtypes=[c_void_p]
876
+ GetDllLibXls().XlsChartFormat_get_IsBubbles.restype=c_bool
877
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsBubbles, self.Ptr)
878
+ return ret
879
+
880
+ @IsBubbles.setter
881
+ def IsBubbles(self, value:bool):
882
+ GetDllLibXls().XlsChartFormat_set_IsBubbles.argtypes=[c_void_p, c_bool]
883
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsBubbles, self.Ptr, value)
884
+
885
+ @property
886
+ def IsBubbleSize(self)->bool:
887
+ """
888
+
889
+ """
890
+ GetDllLibXls().XlsChartFormat_get_IsBubbleSize.argtypes=[c_void_p]
891
+ GetDllLibXls().XlsChartFormat_get_IsBubbleSize.restype=c_bool
892
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsBubbleSize, self.Ptr)
893
+ return ret
894
+
895
+ @IsBubbleSize.setter
896
+ def IsBubbleSize(self, value:bool):
897
+ GetDllLibXls().XlsChartFormat_set_IsBubbleSize.argtypes=[c_void_p, c_bool]
898
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsBubbleSize, self.Ptr, value)
899
+
900
+ @property
901
+ def IsCategoryBrokenDown(self)->bool:
902
+ """
903
+
904
+ """
905
+ GetDllLibXls().XlsChartFormat_get_IsCategoryBrokenDown.argtypes=[c_void_p]
906
+ GetDllLibXls().XlsChartFormat_get_IsCategoryBrokenDown.restype=c_bool
907
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsCategoryBrokenDown, self.Ptr)
908
+ return ret
909
+
910
+ @IsCategoryBrokenDown.setter
911
+ def IsCategoryBrokenDown(self, value:bool):
912
+ GetDllLibXls().XlsChartFormat_set_IsCategoryBrokenDown.argtypes=[c_void_p, c_bool]
913
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsCategoryBrokenDown, self.Ptr, value)
914
+
915
+ @property
916
+ def IsCategoryName(self)->bool:
917
+ """
918
+
919
+ """
920
+ GetDllLibXls().XlsChartFormat_get_IsCategoryName.argtypes=[c_void_p]
921
+ GetDllLibXls().XlsChartFormat_get_IsCategoryName.restype=c_bool
922
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsCategoryName, self.Ptr)
923
+ return ret
924
+
925
+ @IsCategoryName.setter
926
+ def IsCategoryName(self, value:bool):
927
+ GetDllLibXls().XlsChartFormat_set_IsCategoryName.argtypes=[c_void_p, c_bool]
928
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsCategoryName, self.Ptr, value)
929
+
930
+ @property
931
+ def IsChartChartLine(self)->bool:
932
+ """
933
+
934
+ """
935
+ GetDllLibXls().XlsChartFormat_get_IsChartChartLine.argtypes=[c_void_p]
936
+ GetDllLibXls().XlsChartFormat_get_IsChartChartLine.restype=c_bool
937
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsChartChartLine, self.Ptr)
938
+ return ret
939
+
940
+ @property
941
+ def IsChartLineFormat(self)->bool:
942
+ """
943
+ <summary>
944
+ If true - format contains series line. Read-only.
945
+ </summary>
946
+ """
947
+ GetDllLibXls().XlsChartFormat_get_IsChartLineFormat.argtypes=[c_void_p]
948
+ GetDllLibXls().XlsChartFormat_get_IsChartLineFormat.restype=c_bool
949
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsChartLineFormat, self.Ptr)
950
+ return ret
951
+
952
+ @property
953
+ def IsClustered(self)->bool:
954
+ """
955
+
956
+ """
957
+ GetDllLibXls().XlsChartFormat_get_IsClustered.argtypes=[c_void_p]
958
+ GetDllLibXls().XlsChartFormat_get_IsClustered.restype=c_bool
959
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsClustered, self.Ptr)
960
+ return ret
961
+
962
+ @IsClustered.setter
963
+ def IsClustered(self, value:bool):
964
+ GetDllLibXls().XlsChartFormat_set_IsClustered.argtypes=[c_void_p, c_bool]
965
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsClustered, self.Ptr, value)
966
+
967
+ @property
968
+ def IsDefaultElevation(self)->bool:
969
+ """
970
+ <summary>
971
+ Indicates whether elevation has default value.
972
+ </summary>
973
+ """
974
+ GetDllLibXls().XlsChartFormat_get_IsDefaultElevation.argtypes=[c_void_p]
975
+ GetDllLibXls().XlsChartFormat_get_IsDefaultElevation.restype=c_bool
976
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsDefaultElevation, self.Ptr)
977
+ return ret
978
+
979
+ @property
980
+ def IsDefaultRotation(self)->bool:
981
+ """
982
+ <summary>
983
+ Indicates whether rotation has default value.
984
+ </summary>
985
+ """
986
+ GetDllLibXls().XlsChartFormat_get_IsDefaultRotation.argtypes=[c_void_p]
987
+ GetDllLibXls().XlsChartFormat_get_IsDefaultRotation.restype=c_bool
988
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsDefaultRotation, self.Ptr)
989
+ return ret
990
+
991
+ @property
992
+ def IsDropBar(self)->bool:
993
+ """
994
+ <summary>
995
+ If true - format contains drop bar record. Read-only.
996
+ </summary>
997
+ """
998
+ GetDllLibXls().XlsChartFormat_get_IsDropBar.argtypes=[c_void_p]
999
+ GetDllLibXls().XlsChartFormat_get_IsDropBar.restype=c_bool
1000
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsDropBar, self.Ptr)
1001
+ return ret
1002
+
1003
+ @property
1004
+ def IsFillSurface(self)->bool:
1005
+ """
1006
+
1007
+ """
1008
+ GetDllLibXls().XlsChartFormat_get_IsFillSurface.argtypes=[c_void_p]
1009
+ GetDllLibXls().XlsChartFormat_get_IsFillSurface.restype=c_bool
1010
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsFillSurface, self.Ptr)
1011
+ return ret
1012
+
1013
+ @IsFillSurface.setter
1014
+ def IsFillSurface(self, value:bool):
1015
+ GetDllLibXls().XlsChartFormat_set_IsFillSurface.argtypes=[c_void_p, c_bool]
1016
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsFillSurface, self.Ptr, value)
1017
+
1018
+ @property
1019
+ def IsHorizontalBar(self)->bool:
1020
+ """
1021
+
1022
+ """
1023
+ GetDllLibXls().XlsChartFormat_get_IsHorizontalBar.argtypes=[c_void_p]
1024
+ GetDllLibXls().XlsChartFormat_get_IsHorizontalBar.restype=c_bool
1025
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsHorizontalBar, self.Ptr)
1026
+ return ret
1027
+
1028
+ @IsHorizontalBar.setter
1029
+ def IsHorizontalBar(self, value:bool):
1030
+ GetDllLibXls().XlsChartFormat_set_IsHorizontalBar.argtypes=[c_void_p, c_bool]
1031
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsHorizontalBar, self.Ptr, value)
1032
+
1033
+ @property
1034
+ def IsLine(self)->bool:
1035
+ """
1036
+
1037
+ """
1038
+ GetDllLibXls().XlsChartFormat_get_IsLine.argtypes=[c_void_p]
1039
+ GetDllLibXls().XlsChartFormat_get_IsLine.restype=c_bool
1040
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsLine, self.Ptr)
1041
+ return ret
1042
+
1043
+ @property
1044
+ def IsMarker(self)->bool:
1045
+ """
1046
+ <summary>
1047
+ If true - format has marker; otherwise false. Read-only.
1048
+ </summary>
1049
+ """
1050
+ GetDllLibXls().XlsChartFormat_get_IsMarker.argtypes=[c_void_p]
1051
+ GetDllLibXls().XlsChartFormat_get_IsMarker.restype=c_bool
1052
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsMarker, self.Ptr)
1053
+ return ret
1054
+
1055
+ @property
1056
+ def IsPercentage(self)->bool:
1057
+ """
1058
+
1059
+ """
1060
+ GetDllLibXls().XlsChartFormat_get_IsPercentage.argtypes=[c_void_p]
1061
+ GetDllLibXls().XlsChartFormat_get_IsPercentage.restype=c_bool
1062
+ ret = CallCFunction(GetDllLibXls().XlsChartFormat_get_IsPercentage, self.Ptr)
1063
+ return ret
1064
+
1065
+ @IsPercentage.setter
1066
+ def IsPercentage(self, value:bool):
1067
+ GetDllLibXls().XlsChartFormat_set_IsPercentage.argtypes=[c_void_p, c_bool]
1068
+ CallCFunction(GetDllLibXls().XlsChartFormat_set_IsPercentage, self.Ptr, value)
1069
+