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