spire-presentation 10.6.4__py3-none-win_amd64.whl → 10.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 (441) hide show
  1. spire/presentation/ActiveSlide.py +52 -44
  2. spire/presentation/AppException.py +3 -3
  3. spire/presentation/AudioCD.py +7 -12
  4. spire/presentation/AudioPlayMode.py +7 -3
  5. spire/presentation/AudioVolumeType.py +8 -3
  6. spire/presentation/BaseShapeLocking.py +7 -6
  7. spire/presentation/Camera.py +44 -21
  8. spire/presentation/ClickHyperlink.py +127 -91
  9. spire/presentation/Comment.py +75 -36
  10. spire/presentation/ConnectorLocking.py +3 -3
  11. spire/presentation/DefaultTextRangeProperties.py +58 -99
  12. spire/presentation/Direction.py +5 -3
  13. spire/presentation/Field.py +18 -8
  14. spire/presentation/FieldType.py +45 -47
  15. spire/presentation/FileFormat.py +23 -3
  16. spire/presentation/FontAlignmentType.py +9 -3
  17. spire/presentation/FontCollectionIndex.py +6 -3
  18. spire/presentation/FontScheme.py +12 -13
  19. spire/presentation/FormatAndVersion.py +32 -3
  20. spire/presentation/GroupShape.py +11 -13
  21. spire/presentation/GroupShapeLocking.py +6 -17
  22. spire/presentation/HyperlinkActionType.py +19 -3
  23. spire/presentation/IActivePresentation.py +5 -3
  24. spire/presentation/IActiveSlide.py +4 -4
  25. spire/presentation/IAudio.py +51 -116
  26. spire/presentation/IAudioData.py +11 -33
  27. spire/presentation/IAutoShape.py +186 -124
  28. spire/presentation/ICommentAuthor.py +20 -8
  29. spire/presentation/IDigitalSignature.py +13 -34
  30. spire/presentation/IDigitalSignatures.py +2 -3
  31. spire/presentation/IDocumentProperty.py +41 -86
  32. spire/presentation/IEmbedImage.py +167 -114
  33. spire/presentation/ILayout.py +40 -17
  34. spire/presentation/IMasterSlide.py +67 -58
  35. spire/presentation/INoteMasterSlide.py +25 -41
  36. spire/presentation/IOleObject.py +216 -141
  37. spire/presentation/IShape.py +185 -146
  38. spire/presentation/ISlide.py +212 -153
  39. spire/presentation/ITextFrameProperties.py +203 -96
  40. spire/presentation/IVideo.py +280 -153
  41. spire/presentation/ImportDataFormat.py +6 -3
  42. spire/presentation/KnownColors.py +2 -3
  43. spire/presentation/LightRig.py +40 -23
  44. spire/presentation/LightingDirectionType.py +3 -3
  45. spire/presentation/LineCapStyle.py +7 -3
  46. spire/presentation/LineDashStyleType.py +16 -3
  47. spire/presentation/LineEndLength.py +7 -3
  48. spire/presentation/LineEndType.py +10 -3
  49. spire/presentation/LineEndWidth.py +7 -3
  50. spire/presentation/LineFillFormat.py +38 -19
  51. spire/presentation/LineJoinType.py +7 -3
  52. spire/presentation/LinearGradientFill.py +22 -8
  53. spire/presentation/LocaleFonts.py +40 -16
  54. spire/presentation/MasterTheme.py +24 -23
  55. spire/presentation/MetaCharacterType.py +9 -3
  56. spire/presentation/NotesSlide.py +16 -14
  57. spire/presentation/NumberedBulletStyle.py +2 -3
  58. spire/presentation/OleObject.py +39 -27
  59. spire/presentation/Order.py +2 -3
  60. spire/presentation/PageSlideCount.py +2 -3
  61. spire/presentation/ParagraphProperties.py +210 -110
  62. spire/presentation/PictureShape.py +41 -20
  63. spire/presentation/Placeholder.py +34 -20
  64. spire/presentation/PlaceholderSize.py +7 -3
  65. spire/presentation/PlaceholderType.py +20 -3
  66. spire/presentation/PptObject.py +10 -7
  67. spire/presentation/Presentation.py +310 -209
  68. spire/presentation/PresetCameraType.py +1 -3
  69. spire/presentation/PresetLightRigType.py +21 -3
  70. spire/presentation/PresetMaterialType.py +19 -3
  71. spire/presentation/PresetShadowValue.py +4 -3
  72. spire/presentation/RectangleAlignment.py +3 -3
  73. spire/presentation/RelativeRectangle.py +56 -11
  74. spire/presentation/Section.py +50 -36
  75. spire/presentation/SectionList.py +69 -59
  76. spire/presentation/Shape.py +152 -137
  77. spire/presentation/ShapeAdjust.py +17 -10
  78. spire/presentation/ShapeAlignment.py +14 -3
  79. spire/presentation/ShapeArrange.py +10 -3
  80. spire/presentation/ShapeBevelStyle.py +34 -12
  81. spire/presentation/ShapeCollection.py +16 -11
  82. spire/presentation/ShapeElementFillSource.py +10 -3
  83. spire/presentation/ShapeElementStrokeSource.py +6 -3
  84. spire/presentation/ShapeLocking.py +18 -6
  85. spire/presentation/ShapeNode.py +21 -0
  86. spire/presentation/ShapeStyle.py +58 -39
  87. spire/presentation/ShapeThreeD.py +58 -36
  88. spire/presentation/ShapeType.py +1 -3
  89. spire/presentation/SimpleShapeBaseLocking.py +72 -31
  90. spire/presentation/SlideBackground.py +31 -36
  91. spire/presentation/SlideColorScheme.py +15 -10
  92. spire/presentation/SlideLayoutType.py +39 -3
  93. spire/presentation/SlideList.py +110 -55
  94. spire/presentation/SlideOrienation.py +5 -3
  95. spire/presentation/SlidePicture.py +22 -19
  96. spire/presentation/SlidePictureLocking.py +14 -6
  97. spire/presentation/SlideShowType.py +6 -1
  98. spire/presentation/SlideSize.py +43 -18
  99. spire/presentation/SlideSizeType.py +20 -3
  100. spire/presentation/SystemColorType.py +3 -3
  101. spire/presentation/TabAlignmentType.py +3 -3
  102. spire/presentation/TabData.py +18 -18
  103. spire/presentation/TabStop.py +33 -16
  104. spire/presentation/TextAlignmentType.py +9 -3
  105. spire/presentation/TextAnchorType.py +11 -3
  106. spire/presentation/TextAutofitType.py +7 -3
  107. spire/presentation/TextBulletType.py +8 -3
  108. spire/presentation/TextCapType.py +7 -3
  109. spire/presentation/TextCharacterProperties.py +145 -130
  110. spire/presentation/TextFont.py +35 -21
  111. spire/presentation/TextHighLightingOptions.py +37 -6
  112. spire/presentation/TextHorizontalOverflowType.py +6 -3
  113. spire/presentation/TextLineFormat.py +75 -90
  114. spire/presentation/TextLineStyle.py +9 -3
  115. spire/presentation/TextParagraph.py +53 -24
  116. spire/presentation/TextParagraphProperties.py +124 -103
  117. spire/presentation/TextRange.py +40 -12
  118. spire/presentation/TextShapeType.py +46 -3
  119. spire/presentation/TextStrikethroughType.py +7 -3
  120. spire/presentation/TextStyle.py +29 -19
  121. spire/presentation/TextUnderlineType.py +22 -3
  122. spire/presentation/TextVerticalOverflowType.py +7 -3
  123. spire/presentation/Theme.py +31 -23
  124. spire/presentation/TileFlipMode.py +8 -3
  125. spire/presentation/TriState.py +2 -3
  126. spire/presentation/VerticalTextType.py +11 -3
  127. spire/presentation/VideoData.py +17 -18
  128. spire/presentation/VideoPlayMode.py +7 -3
  129. spire/presentation/_Presentation.py +40 -9
  130. spire/presentation/__init__.py +253 -358
  131. spire/presentation/animation/AnimateType.py +24 -0
  132. spire/presentation/{AnimationCalculationMode.py → animation/AnimationCalculationMode.py} +7 -3
  133. spire/presentation/{AnimationColorBehavior.py → animation/AnimationColorBehavior.py} +52 -23
  134. spire/presentation/{AnimationColorDirection.py → animation/AnimationColorDirection.py} +6 -3
  135. spire/presentation/{AnimationColorTransform.py → animation/AnimationColorTransform.py} +33 -15
  136. spire/presentation/{AnimationColorspace.py → animation/AnimationColorspace.py} +6 -3
  137. spire/presentation/{AnimationCommandBehavior.py → animation/AnimationCommandBehavior.py} +26 -15
  138. spire/presentation/{AnimationCommandType.py → animation/AnimationCommandType.py} +7 -3
  139. spire/presentation/{AnimationEffect.py → animation/AnimationEffect.py} +115 -53
  140. spire/presentation/{AnimationEffectCollection.py → animation/AnimationEffectCollection.py} +64 -38
  141. spire/presentation/animation/AnimationEffectSubtype.py +164 -0
  142. spire/presentation/animation/AnimationEffectType.py +466 -0
  143. spire/presentation/{AnimationFilterEffect.py → animation/AnimationFilterEffect.py} +33 -15
  144. spire/presentation/{AnimationMotion.py → animation/AnimationMotion.py} +38 -10
  145. spire/presentation/{AnimationMotionOrigin.py → animation/AnimationMotionOrigin.py} +6 -3
  146. spire/presentation/{AnimationMotionPathEditMode.py → animation/AnimationMotionPathEditMode.py} +6 -3
  147. spire/presentation/{AnimationProperty.py → animation/AnimationProperty.py} +63 -28
  148. spire/presentation/{AnimationRepeatType.py → animation/AnimationRepeatType.py} +6 -3
  149. spire/presentation/{AnimationRestartType.py → animation/AnimationRestartType.py} +7 -3
  150. spire/presentation/{AnimationRotation.py → animation/AnimationRotation.py} +7 -15
  151. spire/presentation/{AnimationScale.py → animation/AnimationScale.py} +43 -18
  152. spire/presentation/{AnimationSet.py → animation/AnimationSet.py} +7 -7
  153. spire/presentation/{AnimationTriggerType.py → animation/AnimationTriggerType.py} +8 -3
  154. spire/presentation/{BehaviorAccumulateType.py → animation/BehaviorAccumulateType.py} +6 -3
  155. spire/presentation/animation/BehaviorAdditiveType.py +27 -0
  156. spire/presentation/{CommonBehavior.py → animation/CommonBehavior.py} +41 -18
  157. spire/presentation/{CommonBehaviorCollection.py → animation/CommonBehaviorCollection.py} +76 -47
  158. spire/presentation/animation/FilterEffectSubtype.py +70 -0
  159. spire/presentation/animation/FilterEffectType.py +71 -0
  160. spire/presentation/animation/FilterEffectsType.py +21 -0
  161. spire/presentation/{FilterRevealType.py → animation/FilterRevealType.py} +7 -3
  162. spire/presentation/{GraphicAnimation.py → animation/GraphicAnimation.py} +10 -6
  163. spire/presentation/{GraphicAnimationCollection.py → animation/GraphicAnimationCollection.py} +20 -17
  164. spire/presentation/animation/GraphicBuildType.py +25 -0
  165. spire/presentation/{MotionCmdPath.py → animation/MotionCmdPath.py} +35 -7
  166. spire/presentation/animation/MotionCommandPathType.py +25 -0
  167. spire/presentation/{MotionPath.py → animation/MotionPath.py} +43 -21
  168. spire/presentation/animation/MotionPathPointsType.py +33 -0
  169. spire/presentation/animation/ParagraphBuildType.py +31 -0
  170. spire/presentation/animation/PropertyValueType.py +23 -0
  171. spire/presentation/{SequenceCollection.py → animation/SequenceCollection.py} +32 -30
  172. spire/presentation/{TextAnimation.py → animation/TextAnimation.py} +14 -11
  173. spire/presentation/{TextAnimationCollection.py → animation/TextAnimationCollection.py} +41 -20
  174. spire/presentation/{TimeAnimationValue.py → animation/TimeAnimationValue.py} +14 -14
  175. spire/presentation/{TimeAnimationValueCollection.py → animation/TimeAnimationValueCollection.py} +11 -15
  176. spire/presentation/{TimeLine.py → animation/TimeLine.py} +20 -11
  177. spire/presentation/{TimeNode.py → animation/TimeNode.py} +16 -4
  178. spire/presentation/{TimeNodeAudio.py → animation/TimeNodeAudio.py} +31 -19
  179. spire/presentation/{TimeNodeMedia.py → animation/TimeNodeMedia.py} +9 -3
  180. spire/presentation/animation/TimeNodePresetClassType.py +29 -0
  181. spire/presentation/{TimeNodes.py → animation/TimeNodes.py} +32 -8
  182. spire/presentation/{Timing.py → animation/Timing.py} +67 -47
  183. spire/presentation/animation/__init__.py +0 -0
  184. spire/presentation/{AxisPositionType.py → charts/AxisPositionType.py} +7 -3
  185. spire/presentation/{AxisType.py → charts/AxisType.py} +6 -3
  186. spire/presentation/{CellRange.py → charts/CellRange.py} +54 -51
  187. spire/presentation/{CellRanges.py → charts/CellRanges.py} +43 -27
  188. spire/presentation/{ChartAxis.py → charts/ChartAxis.py} +109 -124
  189. spire/presentation/{ChartBaseUnitType.py → charts/ChartBaseUnitType.py} +2 -3
  190. spire/presentation/{ChartCategory.py → charts/ChartCategory.py} +12 -6
  191. spire/presentation/{ChartCategoryCollection.py → charts/ChartCategoryCollection.py} +65 -44
  192. spire/presentation/{ChartCrossesType.py → charts/ChartCrossesType.py} +6 -3
  193. spire/presentation/{ChartData.py → charts/ChartData.py} +111 -62
  194. spire/presentation/{ChartDataLabel.py → charts/ChartDataLabel.py} +95 -89
  195. spire/presentation/{ChartDataLabelCollection.py → charts/ChartDataLabelCollection.py} +105 -82
  196. spire/presentation/charts/ChartDataLabelPosition.py +35 -0
  197. spire/presentation/{ChartDataPoint.py → charts/ChartDataPoint.py} +62 -48
  198. spire/presentation/{ChartDataPointCollection.py → charts/ChartDataPointCollection.py} +21 -18
  199. spire/presentation/{ChartDataTable.py → charts/ChartDataTable.py} +37 -34
  200. spire/presentation/charts/ChartDisplayUnitType.py +37 -0
  201. spire/presentation/{ChartEffectFormat.py → charts/ChartEffectFormat.py} +13 -14
  202. spire/presentation/{ChartLegend.py → charts/ChartLegend.py} +63 -59
  203. spire/presentation/{ChartLegendPositionType.py → charts/ChartLegendPositionType.py} +9 -3
  204. spire/presentation/charts/ChartMarkerType.py +39 -0
  205. spire/presentation/{ChartPlotArea.py → charts/ChartPlotArea.py} +35 -34
  206. spire/presentation/{ChartRotationThreeD.py → charts/ChartRotationThreeD.py} +4 -18
  207. spire/presentation/{ChartSeriesDataFormat.py → charts/ChartSeriesDataFormat.py} +52 -130
  208. spire/presentation/{ChartSeriesFormatCollection.py → charts/ChartSeriesFormatCollection.py} +69 -43
  209. spire/presentation/{ChartShapeType.py → charts/ChartShapeType.py} +10 -3
  210. spire/presentation/{ChartStyle.py → charts/ChartStyle.py} +1 -3
  211. spire/presentation/{ChartTextArea.py → charts/ChartTextArea.py} +14 -38
  212. spire/presentation/{ChartType.py → charts/ChartType.py} +2 -3
  213. spire/presentation/{ChartWallsOrFloor.py → charts/ChartWallsOrFloor.py} +25 -24
  214. spire/presentation/{CrossBetweenType.py → charts/CrossBetweenType.py} +4 -0
  215. spire/presentation/{DataLabelShapeType.py → charts/DataLabelShapeType.py} +1 -3
  216. spire/presentation/{DisplayBlanksAsType.py → charts/DisplayBlanksAsType.py} +2 -3
  217. spire/presentation/{ErrorBarSimpleType.py → charts/ErrorBarSimpleType.py} +6 -1
  218. spire/presentation/charts/ErrorValueType.py +25 -0
  219. spire/presentation/{HistogramAxisFormat.py → charts/HistogramAxisFormat.py} +3 -7
  220. spire/presentation/{IChart.py → charts/IChart.py} +69 -174
  221. spire/presentation/{IChartAxis.py → charts/IChartAxis.py} +95 -133
  222. spire/presentation/{IChartEffectFormat.py → charts/IChartEffectFormat.py} +9 -21
  223. spire/presentation/{IChartGridLine.py → charts/IChartGridLine.py} +23 -57
  224. spire/presentation/{IErrorBarsFormat.py → charts/IErrorBarsFormat.py} +9 -21
  225. spire/presentation/{ITrendlineLabel.py → charts/ITrendlineLabel.py} +23 -16
  226. spire/presentation/{ITrendlines.py → charts/ITrendlines.py} +107 -49
  227. spire/presentation/{InteriorColorPattern.py → charts/InteriorColorPattern.py} +1 -1
  228. spire/presentation/{LayoutProperty.py → charts/LayoutProperty.py} +26 -25
  229. spire/presentation/{LegendEntry.py → charts/LegendEntry.py} +7 -6
  230. spire/presentation/{LegendEntryCollection.py → charts/LegendEntryCollection.py} +17 -7
  231. spire/presentation/{PictureType.py → charts/PictureType.py} +7 -3
  232. spire/presentation/charts/ProjectionType.py +22 -0
  233. spire/presentation/{QuartileCalculation.py → charts/QuartileCalculation.py} +3 -3
  234. spire/presentation/{TickLabelPositionType.py → charts/TickLabelPositionType.py} +7 -3
  235. spire/presentation/{TickMarkType.py → charts/TickMarkType.py} +7 -3
  236. spire/presentation/{TreeMapLabelOption.py → charts/TreeMapLabelOption.py} +6 -3
  237. spire/presentation/charts/TrendlinesType.py +27 -0
  238. spire/presentation/charts/__init__.py +0 -0
  239. spire/presentation/{CommentAuthorCollection.py → collections/CommentAuthorCollection.py} +13 -10
  240. spire/presentation/{CommentAuthorList.py → collections/CommentAuthorList.py} +49 -18
  241. spire/presentation/{CommentCollection.py → collections/CommentCollection.py} +11 -24
  242. spire/presentation/{CommentList.py → collections/CommentList.py} +60 -73
  243. spire/presentation/{EffectDataCollection.py → collections/EffectDataCollection.py} +22 -23
  244. spire/presentation/{EffectStyleCollection.py → collections/EffectStyleCollection.py} +14 -10
  245. spire/presentation/{EffectStyleList.py → collections/EffectStyleList.py} +15 -17
  246. spire/presentation/{EmbedImageList.py → collections/EmbedImageList.py} +28 -24
  247. spire/presentation/{FillFormatCollection.py → collections/FillFormatCollection.py} +12 -24
  248. spire/presentation/{FillFormatList.py → collections/FillFormatList.py} +2 -3
  249. spire/presentation/{FillListBase.py → collections/FillListBase.py} +25 -16
  250. spire/presentation/{FillStyleCollection.py → collections/FillStyleCollection.py} +18 -11
  251. spire/presentation/{FillStyleList.py → collections/FillStyleList.py} +10 -4
  252. spire/presentation/{GradientStopCollection.py → collections/GradientStopCollection.py} +4 -21
  253. spire/presentation/{GradientStopDataCollection.py → collections/GradientStopDataCollection.py} +7 -31
  254. spire/presentation/{GradientStopList.py → collections/GradientStopList.py} +41 -53
  255. spire/presentation/{IMasterLayouts.py → collections/IMasterLayouts.py} +25 -7
  256. spire/presentation/{ImageCollection.py → collections/ImageCollection.py} +4 -22
  257. spire/presentation/{ImageTransformEffectCollection.py → collections/ImageTransformEffectCollection.py} +4 -22
  258. spire/presentation/{LineStyleCollection.py → collections/LineStyleCollection.py} +18 -25
  259. spire/presentation/{LineStyleList.py → collections/LineStyleList.py} +25 -15
  260. spire/presentation/{MasterSlideCollection.py → collections/MasterSlideCollection.py} +9 -26
  261. spire/presentation/{MasterSlideList.py → collections/MasterSlideList.py} +47 -33
  262. spire/presentation/{OleObjectCollection.py → collections/OleObjectCollection.py} +34 -48
  263. spire/presentation/{OleObjectProperties.py → collections/OleObjectProperties.py} +45 -56
  264. spire/presentation/{ParagraphCollection.py → collections/ParagraphCollection.py} +16 -26
  265. spire/presentation/{ParagraphList.py → collections/ParagraphList.py} +68 -45
  266. spire/presentation/{ShapeAdjustCollection.py → collections/ShapeAdjustCollection.py} +13 -27
  267. spire/presentation/{ShapeAdjustmentList.py → collections/ShapeAdjustmentList.py} +11 -12
  268. spire/presentation/{ShapeList.py → collections/ShapeList.py} +384 -323
  269. spire/presentation/{SlideCollection.py → collections/SlideCollection.py} +9 -10
  270. spire/presentation/{SlideColorSchemeCollection.py → collections/SlideColorSchemeCollection.py} +31 -23
  271. spire/presentation/{TabStopCollection.py → collections/TabStopCollection.py} +10 -10
  272. spire/presentation/{TabStopList.py → collections/TabStopList.py} +37 -33
  273. spire/presentation/{TagCollection.py → collections/TagCollection.py} +12 -25
  274. spire/presentation/{TagList.py → collections/TagList.py} +55 -51
  275. spire/presentation/{TextLineFormatCollection.py → collections/TextLineFormatCollection.py} +10 -24
  276. spire/presentation/{TextLineFormatList.py → collections/TextLineFormatList.py} +17 -13
  277. spire/presentation/{TextRangeCollection.py → collections/TextRangeCollection.py} +17 -26
  278. spire/presentation/{TextRangeList.py → collections/TextRangeList.py} +49 -33
  279. spire/presentation/{VideoCollection.py → collections/VideoCollection.py} +26 -20
  280. spire/presentation/{WavAudioCollection.py → collections/WavAudioCollection.py} +27 -23
  281. spire/presentation/collections/__init__.py +0 -0
  282. spire/presentation/{ISmartArt.py → diagrams/ISmartArt.py} +42 -14
  283. spire/presentation/{ISmartArtNode.py → diagrams/ISmartArtNode.py} +119 -10
  284. spire/presentation/{ISmartArtNodeCollection.py → diagrams/ISmartArtNodeCollection.py} +57 -5
  285. spire/presentation/{SmartArtColorType.py → diagrams/SmartArtColorType.py} +1 -1
  286. spire/presentation/{SmartArtLayoutType.py → diagrams/SmartArtLayoutType.py} +1 -1
  287. spire/presentation/diagrams/SmartArtStyleType.py +43 -0
  288. spire/presentation/diagrams/__init__.py +0 -0
  289. spire/presentation/{Backdrop.py → drawing/Backdrop.py} +16 -19
  290. spire/presentation/{BackgroundType.py → drawing/BackgroundType.py} +6 -3
  291. spire/presentation/{BevelColorType.py → drawing/BevelColorType.py} +5 -3
  292. spire/presentation/drawing/BevelPresetType.py +41 -0
  293. spire/presentation/drawing/BlackWhiteMode.py +39 -0
  294. spire/presentation/{BlendEffect.py → drawing/BlendEffect.py} +11 -14
  295. spire/presentation/drawing/BlendMode.py +27 -0
  296. spire/presentation/{BlurNode.py → drawing/BlurNode.py} +4 -16
  297. spire/presentation/{ColorFormat.py → drawing/ColorFormat.py} +114 -61
  298. spire/presentation/{ColorScheme.py → drawing/ColorScheme.py} +59 -49
  299. spire/presentation/{ColorSchemeIndex.py → drawing/ColorSchemeIndex.py} +1 -3
  300. spire/presentation/drawing/ColorType.py +27 -0
  301. spire/presentation/{EffectDag.py → drawing/EffectDag.py} +41 -27
  302. spire/presentation/drawing/EffectFillType.py +25 -0
  303. spire/presentation/{EffectNode.py → drawing/EffectNode.py} +2 -3
  304. spire/presentation/{EffectStyle.py → drawing/EffectStyle.py} +14 -12
  305. spire/presentation/{ExtensionList.py → drawing/ExtensionList.py} +4 -1
  306. spire/presentation/{FillFormat.py → drawing/FillFormat.py} +61 -39
  307. spire/presentation/drawing/FillFormatType.py +29 -0
  308. spire/presentation/{FillOverlayEffect.py → drawing/FillOverlayEffect.py} +30 -11
  309. spire/presentation/{FormatScheme.py → drawing/FormatScheme.py} +9 -23
  310. spire/presentation/{FormatThreeD.py → drawing/FormatThreeD.py} +23 -13
  311. spire/presentation/{GlowEffect.py → drawing/GlowEffect.py} +15 -13
  312. spire/presentation/{GlowNode.py → drawing/GlowNode.py} +4 -10
  313. spire/presentation/{GradientFillFormat.py → drawing/GradientFillFormat.py} +12 -27
  314. spire/presentation/drawing/GradientShapeType.py +25 -0
  315. spire/presentation/{GradientStop.py → drawing/GradientStop.py} +1 -9
  316. spire/presentation/{GradientStopData.py → drawing/GradientStopData.py} +2 -9
  317. spire/presentation/drawing/GradientStyle.py +26 -0
  318. spire/presentation/{GraphicFrame.py → drawing/GraphicFrame.py} +41 -73
  319. spire/presentation/{GraphicalNodeLocking.py → drawing/GraphicalNodeLocking.py} +26 -21
  320. spire/presentation/{IImageData.py → drawing/IImageData.py} +6 -24
  321. spire/presentation/{ImageTransform.py → drawing/ImageTransform.py} +42 -36
  322. spire/presentation/{ImageTransformBase.py → drawing/ImageTransformBase.py} +2 -3
  323. spire/presentation/{InnerShadowEffect.py → drawing/InnerShadowEffect.py} +15 -18
  324. spire/presentation/{InnerShadowNode.py → drawing/InnerShadowNode.py} +5 -15
  325. spire/presentation/{OuterShadowEffect.py → drawing/OuterShadowEffect.py} +60 -35
  326. spire/presentation/{OuterShadowNode.py → drawing/OuterShadowNode.py} +51 -33
  327. spire/presentation/{PatternFillFormat.py → drawing/PatternFillFormat.py} +6 -15
  328. spire/presentation/drawing/PatternFillType.py +127 -0
  329. spire/presentation/{PenAlignmentType.py → drawing/PenAlignmentType.py} +6 -3
  330. spire/presentation/{PictureData.py → drawing/PictureData.py} +15 -15
  331. spire/presentation/{PictureFillFormat.py → drawing/PictureFillFormat.py} +37 -31
  332. spire/presentation/{PictureFillType.py → drawing/PictureFillType.py} +5 -3
  333. spire/presentation/{PresetShadow.py → drawing/PresetShadow.py} +33 -18
  334. spire/presentation/{PresetShadowNode.py → drawing/PresetShadowNode.py} +20 -15
  335. spire/presentation/{ReflectionEffect.py → drawing/ReflectionEffect.py} +65 -45
  336. spire/presentation/{ReflectionNode.py → drawing/ReflectionNode.py} +58 -45
  337. spire/presentation/{SchemeColor.py → drawing/SchemeColor.py} +2 -3
  338. spire/presentation/{SoftEdgeEffect.py → drawing/SoftEdgeEffect.py} +11 -7
  339. spire/presentation/{SoftEdgeNode.py → drawing/SoftEdgeNode.py} +5 -7
  340. spire/presentation/drawing/__init__.py +0 -0
  341. spire/presentation/export/PdfConformanceLevel.py +30 -0
  342. spire/presentation/{SaveToHtmlOption.py → export/SaveToHtmlOption.py} +12 -6
  343. spire/presentation/{SaveToPdfOption.py → export/SaveToPdfOption.py} +18 -11
  344. spire/presentation/{SaveToPptxOption.py → export/SaveToPptxOption.py} +12 -6
  345. spire/presentation/export/__init__.py +0 -0
  346. spire/presentation/lib/Spire.Presentation.Base.dll +0 -0
  347. spire/presentation/license/__init__.py +0 -0
  348. spire/presentation/{Cell.py → table/Cell.py} +56 -107
  349. spire/presentation/{CellCollection.py → table/CellCollection.py} +45 -31
  350. spire/presentation/{ColumnCollection.py → table/ColumnCollection.py} +10 -25
  351. spire/presentation/{ColumnList.py → table/ColumnList.py} +39 -28
  352. spire/presentation/{ITable.py → table/ITable.py} +117 -137
  353. spire/presentation/{RowList.py → table/RowList.py} +45 -27
  354. spire/presentation/table/TableBorderType.py +39 -0
  355. spire/presentation/{TableColumn.py → table/TableColumn.py} +14 -7
  356. spire/presentation/{TableRow.py → table/TableRow.py} +14 -7
  357. spire/presentation/{TableRowCollection.py → table/TableRowCollection.py} +12 -24
  358. spire/presentation/{TableStylePreset.py → table/TableStylePreset.py} +1 -3
  359. spire/presentation/table/__init__.py +0 -0
  360. spire/presentation/{BlindsSlideTransition.py → transition/BlindsSlideTransition.py} +9 -5
  361. spire/presentation/{CoverSlideTransition.py → transition/CoverSlideTransition.py} +20 -7
  362. spire/presentation/{FlythroughTransition.py → transition/FlythroughTransition.py} +12 -2
  363. spire/presentation/{GlitterTransition.py → transition/GlitterTransition.py} +10 -2
  364. spire/presentation/transition/GlitterTransitionDirection.py +31 -0
  365. spire/presentation/{InvXTransition.py → transition/InvXTransition.py} +10 -2
  366. spire/presentation/{LRTransition.py → transition/LRTransition.py} +12 -6
  367. spire/presentation/{OptionalBlackTransition.py → transition/OptionalBlackTransition.py} +16 -8
  368. spire/presentation/{RevealTransition.py → transition/RevealTransition.py} +11 -1
  369. spire/presentation/{ShredTransition.py → transition/ShredTransition.py} +14 -3
  370. spire/presentation/{SideDirectionTransition.py → transition/SideDirectionTransition.py} +12 -7
  371. spire/presentation/{SlideShowTransition.py → transition/SlideShowTransition.py} +50 -67
  372. spire/presentation/{SplitSlideTransition.py → transition/SplitSlideTransition.py} +14 -7
  373. spire/presentation/{StripsSlideTransition.py → transition/StripsSlideTransition.py} +14 -3
  374. spire/presentation/{Transition.py → transition/Transition.py} +10 -3
  375. spire/presentation/transition/TransitionCornerDirection.py +25 -0
  376. spire/presentation/{TransitionDirection.py → transition/TransitionDirection.py} +6 -3
  377. spire/presentation/transition/TransitionEightDirection.py +33 -0
  378. spire/presentation/{TransitionFlythroughInOutDirection.py → transition/TransitionFlythroughInOutDirection.py} +7 -3
  379. spire/presentation/{TransitionInOutDirection.py → transition/TransitionInOutDirection.py} +6 -3
  380. spire/presentation/transition/TransitionRevealLRDirection.py +23 -0
  381. spire/presentation/transition/TransitionShredInOutDirection.py +23 -0
  382. spire/presentation/{TransitionSideDirectionType.py → transition/TransitionSideDirectionType.py} +7 -3
  383. spire/presentation/{TransitionSoundMode.py → transition/TransitionSoundMode.py} +6 -3
  384. spire/presentation/{TransitionSpeed.py → transition/TransitionSpeed.py} +7 -3
  385. spire/presentation/{TransitionSplitDirection.py → transition/TransitionSplitDirection.py} +7 -3
  386. spire/presentation/{TransitionTwoDirection.py → transition/TransitionTwoDirection.py} +5 -3
  387. spire/presentation/transition/TransitionType.py +127 -0
  388. spire/presentation/{WheelSlideTransition.py → transition/WheelSlideTransition.py} +11 -6
  389. spire/presentation/{ZoomSlideTransition.py → transition/ZoomSlideTransition.py} +11 -7
  390. spire/presentation/transition/__init__.py +0 -0
  391. {spire_presentation-10.6.4.dist-info → spire_presentation-10.7.1.dist-info}/METADATA +1 -1
  392. spire_presentation-10.7.1.dist-info/RECORD +440 -0
  393. spire/presentation/AnimateType.py +0 -16
  394. spire/presentation/AnimationEffectSubtype.py +0 -65
  395. spire/presentation/AnimationEffectType.py +0 -166
  396. spire/presentation/BehaviorAdditiveType.py +0 -21
  397. spire/presentation/BevelPresetType.py +0 -28
  398. spire/presentation/BlackWhiteMode.py +0 -27
  399. spire/presentation/BlendMode.py +0 -21
  400. spire/presentation/ChartDataLabelPosition.py +0 -25
  401. spire/presentation/ChartDisplayUnitType.py +0 -26
  402. spire/presentation/ChartMarkerType.py +0 -27
  403. spire/presentation/ColorType.py +0 -19
  404. spire/presentation/DocumentEditException.py +0 -14
  405. spire/presentation/DocumentReadException.py +0 -14
  406. spire/presentation/DocumentUnkownFormatException.py +0 -14
  407. spire/presentation/EffectFillType.py +0 -20
  408. spire/presentation/ErrorValueType.py +0 -18
  409. spire/presentation/FillFormatType.py +0 -22
  410. spire/presentation/FilterEffectSubtype.py +0 -42
  411. spire/presentation/FilterEffectType.py +0 -34
  412. spire/presentation/FilterEffectsType.py +0 -16
  413. spire/presentation/GlitterTransitionDirection.py +0 -23
  414. spire/presentation/GradientShapeType.py +0 -20
  415. spire/presentation/GradientStyle.py +0 -21
  416. spire/presentation/GraphicBuildType.py +0 -20
  417. spire/presentation/HeaderType.py +0 -20
  418. spire/presentation/MotionCommandPathType.py +0 -20
  419. spire/presentation/MotionPathPointsType.py +0 -24
  420. spire/presentation/ParagraphBuildType.py +0 -23
  421. spire/presentation/PatternFillType.py +0 -71
  422. spire/presentation/PdfConformanceLevel.py +0 -22
  423. spire/presentation/PresentationTranslator.py +0 -31
  424. spire/presentation/ProjectionType.py +0 -16
  425. spire/presentation/PropertyValueType.py +0 -19
  426. spire/presentation/SmartArtStyleType.py +0 -27
  427. spire/presentation/TableBorderType.py +0 -27
  428. spire/presentation/TimeNodePresetClassType.py +0 -22
  429. spire/presentation/TransitionCornerDirection.py +0 -20
  430. spire/presentation/TransitionEightDirection.py +0 -24
  431. spire/presentation/TransitionRevealLRDirection.py +0 -19
  432. spire/presentation/TransitionShredInOutDirection.py +0 -19
  433. spire/presentation/TransitionType.py +0 -71
  434. spire/presentation/TrendlinesType.py +0 -19
  435. spire/presentation/UOPReader.py +0 -24
  436. spire/presentation/UOPWriter.py +0 -24
  437. spire_presentation-10.6.4.dist-info/RECORD +0 -438
  438. /spire/presentation/{Geography.py → charts/Geography.py} +0 -0
  439. /spire/presentation/{LicenseProvider.py → license/LicenseProvider.py} +0 -0
  440. {spire_presentation-10.6.4.dist-info → spire_presentation-10.7.1.dist-info}/WHEEL +0 -0
  441. {spire_presentation-10.6.4.dist-info → spire_presentation-10.7.1.dist-info}/top_level.txt +0 -0
@@ -7,15 +7,19 @@ from ctypes import *
7
7
 
8
8
  class IChartAxis (SpireObject) :
9
9
  """
10
-
10
+ Represents a chart axis in a presentation.
11
+
12
+ This class provides control over axis properties including:
13
+ - Scale settings (min/max, log scale)
14
+ - Tick marks and labels
15
+ - Gridlines
16
+ - Unit display
17
+ - Binning for histograms
11
18
  """
12
19
  @property
13
20
  def UnderflowBinValue(self)->float:
14
21
  """
15
- <summary>
16
- Get or Set the UnderFlow Bin value
17
- </summary>
18
- <remarks>Applies only to Histogram and Pareto charts.</remarks>
22
+ Gets or sets the underflow bin value (histogram/pareto only).
19
23
  """
20
24
  GetDllLibPpt().IChartAxis_get_UnderflowBinValue.argtypes=[c_void_p]
21
25
  GetDllLibPpt().IChartAxis_get_UnderflowBinValue.restype=c_double
@@ -24,16 +28,20 @@ class IChartAxis (SpireObject) :
24
28
 
25
29
  @UnderflowBinValue.setter
26
30
  def UnderflowBinValue(self, value:float):
31
+ """
32
+ Sets the underflow bin value.
33
+
34
+ Args:
35
+ value: Numeric bin value.
36
+ """
27
37
  GetDllLibPpt().IChartAxis_set_UnderflowBinValue.argtypes=[c_void_p, c_double]
28
38
  CallCFunction(GetDllLibPpt().IChartAxis_set_UnderflowBinValue,self.Ptr, value)
29
39
 
30
40
  @property
31
41
  def OverflowBinValue(self)->float:
32
42
  """
33
- <summary>
34
43
  Get or Set the OverFlow Bin value
35
- </summary>
36
- <remarks>Applies only to Histogram and Pareto charts.</remarks>
44
+ Applies only to Histogram and Pareto charts.
37
45
  """
38
46
  GetDllLibPpt().IChartAxis_get_OverflowBinValue.argtypes=[c_void_p]
39
47
  GetDllLibPpt().IChartAxis_get_OverflowBinValue.restype=c_double
@@ -48,10 +56,9 @@ class IChartAxis (SpireObject) :
48
56
  @property
49
57
  def GapWidth(self)->int:
50
58
  """
51
- <summary>
52
59
  Returns or sets the space between bar or column clusters, as a percentage of the bar or column width.
53
- The value of this property must be between 0 and 500.
54
- </summary>
60
+ The value of this property must be between 0 and 500.
61
+
55
62
  """
56
63
  GetDllLibPpt().IChartAxis_get_GapWidth.argtypes=[c_void_p]
57
64
  GetDllLibPpt().IChartAxis_get_GapWidth.restype=c_int
@@ -66,9 +73,8 @@ class IChartAxis (SpireObject) :
66
73
  @property
67
74
  def IsCrossCategories(self)->bool:
68
75
  """
69
- <summary>
70
76
  Indicates that the value axis crosses the category axis between categorie
71
- </summary>
77
+
72
78
  """
73
79
  GetDllLibPpt().IChartAxis_get_IsCrossCategories.argtypes=[c_void_p]
74
80
  GetDllLibPpt().IChartAxis_get_IsCrossCategories.restype=c_bool
@@ -83,11 +89,11 @@ class IChartAxis (SpireObject) :
83
89
  @property
84
90
  def CrossAt(self)->float:
85
91
  """
86
- <summary>
87
92
  Represents the point on the value axis where the category axis crosses it.
88
- </summary>
89
- <remarks>The number should be a integer when it applies to category axis.
90
- And the value must be between 1 and 31999.</remarks>
93
+
94
+ The number should be a integer when it applies to category axis.
95
+
96
+ And the value must be between 1 and 31999.
91
97
  """
92
98
  GetDllLibPpt().IChartAxis_get_CrossAt.argtypes=[c_void_p]
93
99
  GetDllLibPpt().IChartAxis_get_CrossAt.restype=c_float
@@ -103,9 +109,8 @@ class IChartAxis (SpireObject) :
103
109
 
104
110
  def DisplayUnit(self)->'ChartDisplayUnitType':
105
111
  """
106
- <summary>
107
112
  Returns or sets the unit label for the specified axis.
108
- </summary>
113
+
109
114
  """
110
115
  GetDllLibPpt().IChartAxis_get_DisplayUnit.argtypes=[c_void_p]
111
116
  GetDllLibPpt().IChartAxis_get_DisplayUnit.restype=c_int
@@ -121,9 +126,8 @@ class IChartAxis (SpireObject) :
121
126
  @property
122
127
  def IsAutoMax(self)->bool:
123
128
  """
124
- <summary>
125
129
  Automatic maximum selected.
126
- </summary>
130
+
127
131
  """
128
132
  GetDllLibPpt().IChartAxis_get_IsAutoMax.argtypes=[c_void_p]
129
133
  GetDllLibPpt().IChartAxis_get_IsAutoMax.restype=c_bool
@@ -138,9 +142,8 @@ class IChartAxis (SpireObject) :
138
142
  @property
139
143
  def MaxValue(self)->float:
140
144
  """
141
- <summary>
142
145
  Maximum value on axis.
143
- </summary>
146
+
144
147
  """
145
148
  GetDllLibPpt().IChartAxis_get_MaxValue.argtypes=[c_void_p]
146
149
  GetDllLibPpt().IChartAxis_get_MaxValue.restype=c_float
@@ -155,9 +158,8 @@ class IChartAxis (SpireObject) :
155
158
  @property
156
159
  def MinorUnit(self)->float:
157
160
  """
158
- <summary>
159
- Value of minor increment.
160
- </summary>
161
+ Value of minor increment.
162
+
161
163
  """
162
164
  GetDllLibPpt().IChartAxis_get_MinorUnit.argtypes=[c_void_p]
163
165
  GetDllLibPpt().IChartAxis_get_MinorUnit.restype=c_float
@@ -172,9 +174,8 @@ class IChartAxis (SpireObject) :
172
174
  @property
173
175
  def IsAutoMinor(self)->bool:
174
176
  """
175
- <summary>
176
- Indicates whether the minor unit of the axis is automatically assigned.
177
- </summary>
177
+ Indicates whether the minor unit of the axis is automatically assigned.
178
+
178
179
  """
179
180
  GetDllLibPpt().IChartAxis_get_IsAutoMinor.argtypes=[c_void_p]
180
181
  GetDllLibPpt().IChartAxis_get_IsAutoMinor.restype=c_bool
@@ -189,9 +190,8 @@ class IChartAxis (SpireObject) :
189
190
  @property
190
191
  def MajorUnit(self)->float:
191
192
  """
192
- <summary>
193
- Represents the major units for the axis.
194
- </summary>
193
+ Represents the major units for the axis.
194
+
195
195
  """
196
196
  GetDllLibPpt().IChartAxis_get_MajorUnit.argtypes=[c_void_p]
197
197
  GetDllLibPpt().IChartAxis_get_MajorUnit.restype=c_float
@@ -206,9 +206,8 @@ class IChartAxis (SpireObject) :
206
206
  @property
207
207
  def IsAutoMajor(self)->bool:
208
208
  """
209
- <summary>
210
209
  Automatic major selected.
211
- </summary>
210
+
212
211
  """
213
212
  GetDllLibPpt().IChartAxis_get_IsAutoMajor.argtypes=[c_void_p]
214
213
  GetDllLibPpt().IChartAxis_get_IsAutoMajor.restype=c_bool
@@ -223,9 +222,8 @@ class IChartAxis (SpireObject) :
223
222
  @property
224
223
  def IsAutoMin(self)->bool:
225
224
  """
226
- <summary>
227
- Automatic minimum selected.
228
- </summary>
225
+ Automatic minimum selected.
226
+
229
227
  """
230
228
  GetDllLibPpt().IChartAxis_get_IsAutoMin.argtypes=[c_void_p]
231
229
  GetDllLibPpt().IChartAxis_get_IsAutoMin.restype=c_bool
@@ -240,9 +238,8 @@ class IChartAxis (SpireObject) :
240
238
  @property
241
239
  def MinValue(self)->float:
242
240
  """
243
- <summary>
244
- Represents the minimum value on the value axis.
245
- </summary>
241
+ Represents the minimum value on the value axis.
242
+
246
243
  """
247
244
  GetDllLibPpt().IChartAxis_get_MinValue.argtypes=[c_void_p]
248
245
  GetDllLibPpt().IChartAxis_get_MinValue.restype=c_float
@@ -257,9 +254,8 @@ class IChartAxis (SpireObject) :
257
254
  @property
258
255
  def IsLogScale(self)->bool:
259
256
  """
260
- <summary>
261
- Logarithmic scale.
262
- </summary>
257
+ Logarithmic scale.
258
+
263
259
  """
264
260
  GetDllLibPpt().IChartAxis_get_IsLogScale.argtypes=[c_void_p]
265
261
  GetDllLibPpt().IChartAxis_get_IsLogScale.restype=c_bool
@@ -274,9 +270,8 @@ class IChartAxis (SpireObject) :
274
270
  @property
275
271
  def LogScale(self)->int:
276
272
  """
277
- <summary>
278
- Gets or sets the logarithmic base.
279
- </summary>
273
+ Gets or sets the logarithmic base.
274
+
280
275
  """
281
276
  GetDllLibPpt().IChartAxis_get_LogScale.argtypes=[c_void_p]
282
277
  GetDllLibPpt().IChartAxis_get_LogScale.restype=c_int
@@ -291,9 +286,8 @@ class IChartAxis (SpireObject) :
291
286
  @property
292
287
  def IsReversed(self)->bool:
293
288
  """
294
- <summary>
295
- Gets or set plots data points from last to first.
296
- </summary>
289
+ Gets or set plots data points from last to first.
290
+
297
291
  """
298
292
  GetDllLibPpt().IChartAxis_get_IsReversed.argtypes=[c_void_p]
299
293
  GetDllLibPpt().IChartAxis_get_IsReversed.restype=c_bool
@@ -308,9 +302,8 @@ class IChartAxis (SpireObject) :
308
302
  @property
309
303
  def IsVisible(self)->bool:
310
304
  """
311
- <summary>
312
- Gets or sets if the axis is visible.
313
- </summary>
305
+ Gets or sets if the axis is visible.
306
+
314
307
  """
315
308
  GetDllLibPpt().IChartAxis_get_IsVisible.argtypes=[c_void_p]
316
309
  GetDllLibPpt().IChartAxis_get_IsVisible.restype=c_bool
@@ -326,9 +319,8 @@ class IChartAxis (SpireObject) :
326
319
 
327
320
  def MajorTickMark(self)->'TickMarkType':
328
321
  """
329
- <summary>
330
- Represents major tick marks.
331
- </summary>
322
+ Represents major tick marks.
323
+
332
324
  """
333
325
  GetDllLibPpt().IChartAxis_get_MajorTickMark.argtypes=[c_void_p]
334
326
  GetDllLibPpt().IChartAxis_get_MajorTickMark.restype=c_int
@@ -345,9 +337,8 @@ class IChartAxis (SpireObject) :
345
337
 
346
338
  def MinorTickMark(self)->'TickMarkType':
347
339
  """
348
- <summary>
349
- Represents the type of minor tick mark for the specified axis.
350
- </summary>
340
+ Represents the type of minor tick mark for the specified axis.
341
+
351
342
  """
352
343
  GetDllLibPpt().IChartAxis_get_MinorTickMark.argtypes=[c_void_p]
353
344
  GetDllLibPpt().IChartAxis_get_MinorTickMark.restype=c_int
@@ -364,9 +355,8 @@ class IChartAxis (SpireObject) :
364
355
 
365
356
  def TickLabelPosition(self)->'TickLabelPositionType':
366
357
  """
367
- <summary>
368
- Represents the position of tick-mark labels on the specified axis.
369
- </summary>
358
+ Represents the position of tick-mark labels on the specified axis.
359
+
370
360
  """
371
361
  GetDllLibPpt().IChartAxis_get_TickLabelPosition.argtypes=[c_void_p]
372
362
  GetDllLibPpt().IChartAxis_get_TickLabelPosition.restype=c_int
@@ -383,9 +373,8 @@ class IChartAxis (SpireObject) :
383
373
 
384
374
  def MajorUnitScale(self)->'ChartBaseUnitType':
385
375
  """
386
- <summary>
387
- Represents the major unit scale for the category axis.
388
- </summary>
376
+ Represents the major unit scale for the category axis.
377
+
389
378
  """
390
379
  GetDllLibPpt().IChartAxis_get_MajorUnitScale.argtypes=[c_void_p]
391
380
  GetDllLibPpt().IChartAxis_get_MajorUnitScale.restype=c_int
@@ -402,9 +391,8 @@ class IChartAxis (SpireObject) :
402
391
 
403
392
  def MinorUnitScale(self)->'ChartBaseUnitType':
404
393
  """
405
- <summary>
406
- Represents the major unit scale for the category axis.
407
- </summary>
394
+ Represents the major unit scale for the category axis.
395
+
408
396
  """
409
397
  GetDllLibPpt().IChartAxis_get_MinorUnitScale.argtypes=[c_void_p]
410
398
  GetDllLibPpt().IChartAxis_get_MinorUnitScale.restype=c_int
@@ -421,9 +409,8 @@ class IChartAxis (SpireObject) :
421
409
 
422
410
  def BaseUnitScale(self)->'ChartBaseUnitType':
423
411
  """
424
- <summary>
425
- Represents the base unit scale for the category axis.
426
- </summary>
412
+ Represents the base unit scale for the category axis.
413
+
427
414
  """
428
415
  GetDllLibPpt().IChartAxis_get_BaseUnitScale.argtypes=[c_void_p]
429
416
  GetDllLibPpt().IChartAxis_get_BaseUnitScale.restype=c_int
@@ -440,9 +427,8 @@ class IChartAxis (SpireObject) :
440
427
 
441
428
  def MinorGridLines(self)->'IChartGridLine':
442
429
  """
443
- <summary>
444
- Represents minor gridlines on a chart axis.
445
- </summary>
430
+ Represents minor gridlines on a chart axis.
431
+
446
432
  """
447
433
  GetDllLibPpt().IChartAxis_get_MinorGridLines.argtypes=[c_void_p]
448
434
  GetDllLibPpt().IChartAxis_get_MinorGridLines.restype=c_void_p
@@ -455,9 +441,8 @@ class IChartAxis (SpireObject) :
455
441
 
456
442
  def MajorGridTextLines(self)->'IChartGridLine':
457
443
  """
458
- <summary>
459
- Represents major gridlines on a chart axis.
460
- </summary>
444
+ Represents major gridlines on a chart axis.
445
+
461
446
  """
462
447
  GetDllLibPpt().IChartAxis_get_MajorGridTextLines.argtypes=[c_void_p]
463
448
  GetDllLibPpt().IChartAxis_get_MajorGridTextLines.restype=c_void_p
@@ -470,9 +455,8 @@ class IChartAxis (SpireObject) :
470
455
 
471
456
  def ChartEffectFormat(self)->'IChartEffectFormat':
472
457
  """
473
- <summary>
474
- Represents format of axis
475
- </summary>
458
+ Represents format of axis
459
+
476
460
  """
477
461
  GetDllLibPpt().IChartAxis_get_ChartEffectFormat.argtypes=[c_void_p]
478
462
  GetDllLibPpt().IChartAxis_get_ChartEffectFormat.restype=c_void_p
@@ -485,9 +469,8 @@ class IChartAxis (SpireObject) :
485
469
 
486
470
  def TextProperties(self)->'ITextFrameProperties':
487
471
  """
488
- <summary>
489
- Represent text properties of axis
490
- </summary>
472
+ Represent text properties of axis
473
+
491
474
  """
492
475
  GetDllLibPpt().IChartAxis_get_TextProperties.argtypes=[c_void_p]
493
476
  GetDllLibPpt().IChartAxis_get_TextProperties.restype=c_void_p
@@ -500,9 +483,8 @@ class IChartAxis (SpireObject) :
500
483
 
501
484
  def Title(self)->'ChartTextArea':
502
485
  """
503
- <summary>
504
- Gets the axis' title.
505
- </summary>
486
+ Gets the axis' title.
487
+
506
488
  """
507
489
  GetDllLibPpt().IChartAxis_get_Title.argtypes=[c_void_p]
508
490
  GetDllLibPpt().IChartAxis_get_Title.restype=c_void_p
@@ -515,9 +497,8 @@ class IChartAxis (SpireObject) :
515
497
 
516
498
  def ChartCrossType(self)->'ChartCrossesType':
517
499
  """
518
- <summary>
519
- Represents the CrossType on the specified axis where the other axis crosses.
520
- </summary>
500
+ Represents the CrossType on the specified axis where the other axis crosses.
501
+
521
502
  """
522
503
  GetDllLibPpt().IChartAxis_get_ChartCrossType.argtypes=[c_void_p]
523
504
  GetDllLibPpt().IChartAxis_get_ChartCrossType.restype=c_int
@@ -534,9 +515,8 @@ class IChartAxis (SpireObject) :
534
515
 
535
516
  def Position(self)->'AxisPositionType':
536
517
  """
537
- <summary>
538
- Represents position of axis
539
- </summary>
518
+ Represents position of axis
519
+
540
520
  """
541
521
  GetDllLibPpt().IChartAxis_get_Position.argtypes=[c_void_p]
542
522
  GetDllLibPpt().IChartAxis_get_Position.restype=c_int
@@ -552,10 +532,8 @@ class IChartAxis (SpireObject) :
552
532
  @property
553
533
  def HasTitle(self)->bool:
554
534
  """
555
- <summary>
556
535
  Indicates whether a axis has a visible title.
557
- Read/write <see cref="T:System.Boolean" />.
558
- </summary>
536
+
559
537
  """
560
538
  GetDllLibPpt().IChartAxis_get_HasTitle.argtypes=[c_void_p]
561
539
  GetDllLibPpt().IChartAxis_get_HasTitle.restype=c_bool
@@ -571,9 +549,8 @@ class IChartAxis (SpireObject) :
571
549
 
572
550
  def NumberFormat(self)->str:
573
551
  """
574
- <summary>
575
552
  Gets or sets number format string.
576
- </summary>
553
+
577
554
  """
578
555
  GetDllLibPpt().IChartAxis_get_NumberFormat.argtypes=[c_void_p]
579
556
  GetDllLibPpt().IChartAxis_get_NumberFormat.restype=c_void_p
@@ -590,9 +567,8 @@ class IChartAxis (SpireObject) :
590
567
  @property
591
568
  def HasDataSource(self)->bool:
592
569
  """
593
- <summary>
594
570
  Indicates whether the format is linked source data.
595
- </summary>
571
+
596
572
  """
597
573
  GetDllLibPpt().IChartAxis_get_HasDataSource.argtypes=[c_void_p]
598
574
  GetDllLibPpt().IChartAxis_get_HasDataSource.restype=c_bool
@@ -607,9 +583,8 @@ class IChartAxis (SpireObject) :
607
583
  @property
608
584
  def TextRotationAngle(self)->float:
609
585
  """
610
- <summary>
611
586
  Text rotation angle.
612
- </summary>
587
+
613
588
  """
614
589
  GetDllLibPpt().IChartAxis_get_TextRotationAngle.argtypes=[c_void_p]
615
590
  GetDllLibPpt().IChartAxis_get_TextRotationAngle.restype=c_float
@@ -625,10 +600,9 @@ class IChartAxis (SpireObject) :
625
600
 
626
601
  def TickLabelSpacing(self)->'int':
627
602
  """
628
- <summary>
629
603
  Represents the number of categories or series between tick-mark labels.
630
- Property IsAutomaticTickLabelSpacing is false ,this property is valid
631
- </summary>
604
+ Property IsAutomaticTickLabelSpacing is false ,this property is valid
605
+
632
606
  """
633
607
  GetDllLibPpt().IChartAxis_get_TickLabelSpacing.argtypes=[c_void_p]
634
608
  GetDllLibPpt().IChartAxis_get_TickLabelSpacing.restype=c_int
@@ -645,9 +619,8 @@ class IChartAxis (SpireObject) :
645
619
 
646
620
  def Parent(self)->'SpireObject':
647
621
  """
648
- <summary>
649
622
  Reference to Parent object. Read-only.
650
- </summary>
623
+
651
624
  """
652
625
  GetDllLibPpt().IChartAxis_get_Parent.argtypes=[c_void_p]
653
626
  GetDllLibPpt().IChartAxis_get_Parent.restype=c_void_p
@@ -658,9 +631,8 @@ class IChartAxis (SpireObject) :
658
631
 
659
632
  def Dispose(self):
660
633
  """
661
- <summary>
662
634
  Dispose object and free resources.
663
- </summary>
635
+
664
636
  """
665
637
  GetDllLibPpt().IChartAxis_Dispose.argtypes=[c_void_p]
666
638
  CallCFunction(GetDllLibPpt().IChartAxis_Dispose,self.Ptr)
@@ -668,9 +640,8 @@ class IChartAxis (SpireObject) :
668
640
  @property
669
641
  def IsAutomaticTickLabelSpacing(self)->bool:
670
642
  """
671
- <summary>
672
643
  Specifies automatic tick label spacing value. If false: use TickLabelSpacing property.
673
- </summary>
644
+
674
645
  """
675
646
  GetDllLibPpt().IChartAxis_get_IsAutomaticTickLabelSpacing.argtypes=[c_void_p]
676
647
  GetDllLibPpt().IChartAxis_get_IsAutomaticTickLabelSpacing.restype=c_bool
@@ -686,10 +657,9 @@ class IChartAxis (SpireObject) :
686
657
 
687
658
  def CrossBetweenType(self)->'CrossBetweenType':
688
659
  """
689
- <summary>
690
660
  Specifies whether the value axis crosses the category axis between categories or on categories
691
- Only support value axis set value
692
- </summary>
661
+ Only support value axis set value
662
+
693
663
  """
694
664
  GetDllLibPpt().IChartAxis_get_CrossBetweenType.argtypes=[c_void_p]
695
665
  GetDllLibPpt().IChartAxis_get_CrossBetweenType.restype=c_int
@@ -705,9 +675,8 @@ class IChartAxis (SpireObject) :
705
675
  @property
706
676
  def HasMultiLvlLbl(self)->bool:
707
677
  """
708
- <summary>
709
678
  Gets or sets if the label of categoryAxis has multiple levels.
710
- </summary>
679
+
711
680
  """
712
681
  GetDllLibPpt().IChartAxis_get_HasMultiLvlLbl.argtypes=[c_void_p]
713
682
  GetDllLibPpt().IChartAxis_get_HasMultiLvlLbl.restype=c_bool
@@ -722,9 +691,8 @@ class IChartAxis (SpireObject) :
722
691
  @property
723
692
  def IsMergeSameLabel(self)->bool:
724
693
  """
725
- <summary>
726
694
  Gets or sets if the first level label of categoryAxis merge the same item.
727
- </summary>
695
+
728
696
  """
729
697
  GetDllLibPpt().IChartAxis_get_IsMergeSameLabel.argtypes=[c_void_p]
730
698
  GetDllLibPpt().IChartAxis_get_IsMergeSameLabel.restype=c_bool
@@ -740,9 +708,8 @@ class IChartAxis (SpireObject) :
740
708
 
741
709
  def AxisType(self)->'AxisType':
742
710
  """
743
- <summary>
744
711
  Gets or sets CategoryAxis Type.
745
- </summary>
712
+
746
713
  """
747
714
  GetDllLibPpt().IChartAxis_get_AxisType.argtypes=[c_void_p]
748
715
  GetDllLibPpt().IChartAxis_get_AxisType.restype=c_int
@@ -759,10 +726,9 @@ class IChartAxis (SpireObject) :
759
726
 
760
727
  def TickMarkSpacing(self)->'int':
761
728
  """
762
- <summary>
763
729
  Represents the number of ticks between tick-mark labels.
764
- Property IsAutomaticTickLabelSpacing is false ,this property is valid
765
- </summary>
730
+ Property IsAutomaticTickLabelSpacing is false ,this property is valid
731
+
766
732
  """
767
733
  GetDllLibPpt().IChartAxis_get_TickMarkSpacing.argtypes=[c_void_p]
768
734
  GetDllLibPpt().IChartAxis_get_TickMarkSpacing.restype=c_int
@@ -793,10 +759,9 @@ class IChartAxis (SpireObject) :
793
759
  @property
794
760
  def IsBinningByCategory(self)->bool:
795
761
  """
796
- <summary>
797
762
  True if bins generated by category values. otherwise False
798
- </summary>
799
- <remarks>Applies only to Histogram and Pareto charts.</remarks>
763
+
764
+ Applies only to Histogram and Pareto charts.
800
765
  """
801
766
  GetDllLibPpt().IChartAxis_get_IsBinningByCategory.argtypes=[c_void_p]
802
767
  GetDllLibPpt().IChartAxis_get_IsBinningByCategory.restype=c_bool
@@ -811,10 +776,9 @@ class IChartAxis (SpireObject) :
811
776
  @property
812
777
  def HasAutomaticBins(self)->bool:
813
778
  """
814
- <summary>
815
779
  True if bins generated are automatic. otherwise False
816
- </summary>
817
- <remarks>Applies only to Histogram and Pareto charts.</remarks>
780
+
781
+ Applies only to Histogram and Pareto charts.
818
782
  """
819
783
  GetDllLibPpt().IChartAxis_get_HasAutomaticBins.argtypes=[c_void_p]
820
784
  GetDllLibPpt().IChartAxis_get_HasAutomaticBins.restype=c_bool
@@ -829,10 +793,9 @@ class IChartAxis (SpireObject) :
829
793
  @property
830
794
  def NumberOfBins(self)->int:
831
795
  """
832
- <summary>
833
796
  Get or set the Number of Bins in the axis
834
- </summary>
835
- <remarks>Applies only to Histogram and Pareto charts.Can be a value from 1 through 31999.</remarks>
797
+
798
+ Applies only to Histogram and Pareto charts.Can be a value from 1 through 31999.
836
799
  """
837
800
  GetDllLibPpt().IChartAxis_get_NumberOfBins.argtypes=[c_void_p]
838
801
  GetDllLibPpt().IChartAxis_get_NumberOfBins.restype=c_int
@@ -847,10 +810,9 @@ class IChartAxis (SpireObject) :
847
810
  @property
848
811
  def BinWidth(self)->float:
849
812
  """
850
- <summary>
851
813
  Get or Set the number of data points in each range.
852
- </summary>
853
- <remarks>Applies only to Histogram and Pareto charts.</remarks>
814
+
815
+ Applies only to Histogram and Pareto charts.
854
816
  """
855
817
  GetDllLibPpt().IChartAxis_get_BinWidth.argtypes=[c_void_p]
856
818
  GetDllLibPpt().IChartAxis_get_BinWidth.restype=c_double
@@ -8,16 +8,16 @@ import abc
8
8
 
9
9
  class IChartEffectFormat (SpireObject) :
10
10
  """
11
+ Represents visual effect formatting for chart elements.
11
12
 
13
+ This class provides access to fill, line, 3D, and special effect
14
+ properties for chart components like series and markers.
12
15
  """
13
16
  @property
14
17
 
15
18
  def Fill(self)->'FillFormat':
16
19
  """
17
- <summary>
18
- Gets fill style properties of a chart.
19
- Read-only <see cref="T:Spire.Presentation.Drawing.FillFormat" />.
20
- </summary>
20
+ Gets fill style properties (read-only).
21
21
  """
22
22
  GetDllLibPpt().IChartEffectFormat_get_Fill.argtypes=[c_void_p]
23
23
  GetDllLibPpt().IChartEffectFormat_get_Fill.restype=c_void_p
@@ -30,9 +30,7 @@ class IChartEffectFormat (SpireObject) :
30
30
 
31
31
  def Line(self)->'IChartGridLine':
32
32
  """
33
- <summary>
34
- Gets line style properties of a chart.
35
- </summary>
33
+ Gets line style properties (read-only).
36
34
  """
37
35
  GetDllLibPpt().IChartEffectFormat_get_Line.argtypes=[c_void_p]
38
36
  GetDllLibPpt().IChartEffectFormat_get_Line.restype=c_void_p
@@ -45,10 +43,7 @@ class IChartEffectFormat (SpireObject) :
45
43
 
46
44
  def Effect(self)->'EffectDag':
47
45
  """
48
- <summary>
49
- Gets effects used for a chart.
50
- Read-only <see cref="T:Spire.Presentation.Drawing.EffectDag" />.
51
- </summary>
46
+ Gets special effects (read-only).
52
47
  """
53
48
  GetDllLibPpt().IChartEffectFormat_get_Effect.argtypes=[c_void_p]
54
49
  GetDllLibPpt().IChartEffectFormat_get_Effect.restype=c_void_p
@@ -61,10 +56,7 @@ class IChartEffectFormat (SpireObject) :
61
56
 
62
57
  def Effect3D(self)->'FormatThreeD':
63
58
  """
64
- <summary>
65
- Gets 3D format of a chart.
66
- Read-only <see cref="T:Spire.Presentation.Drawing.FormatThreeD" />.
67
- </summary>
59
+ Gets 3D format properties (read-only).
68
60
  """
69
61
  GetDllLibPpt().IChartEffectFormat_get_Effect3D.argtypes=[c_void_p]
70
62
  GetDllLibPpt().IChartEffectFormat_get_Effect3D.restype=c_void_p
@@ -77,9 +69,7 @@ class IChartEffectFormat (SpireObject) :
77
69
 
78
70
  def Parent(self)->'SpireObject':
79
71
  """
80
- <summary>
81
- Reference to Parent object. Read-only.
82
- </summary>
72
+ Reference to parent object (read-only).
83
73
  """
84
74
  GetDllLibPpt().IChartEffectFormat_get_Parent.argtypes=[c_void_p]
85
75
  GetDllLibPpt().IChartEffectFormat_get_Parent.restype=c_void_p
@@ -90,9 +80,7 @@ class IChartEffectFormat (SpireObject) :
90
80
 
91
81
  def Dispose(self):
92
82
  """
93
- <summary>
94
- Dispose object and free resources.
95
- </summary>
83
+ Releases resources associated with the effect format.
96
84
  """
97
85
  GetDllLibPpt().IChartEffectFormat_Dispose.argtypes=[c_void_p]
98
86
  CallCFunction(GetDllLibPpt().IChartEffectFormat_Dispose,self.Ptr)