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
@@ -0,0 +1,440 @@
1
+ spire/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ spire/presentation/ActiveSlide.py,sha256=tO6miszJ4eCv5IsgjyaplC939Xj1QFb83C9oV-odpUA,7243
3
+ spire/presentation/AppException.py,sha256=vnkTvOpXiS9aIOMVJ8SdYSPcQ8-zaShe299W1kcG9A0,389
4
+ spire/presentation/AudioCD.py,sha256=K2XehFsYsjjjgSleQ8T6R90RM05CfiXKR8fzkOXujC4,2789
5
+ spire/presentation/AudioPlayMode.py,sha256=lQQf_VVSu-jU6Fg6b3L6vFDKblWjdWxulwvFIFK8Jno,570
6
+ spire/presentation/AudioVolumeType.py,sha256=P2BcVGepnJeUUL-vSzlEhSIxiABUKeNCH9pl71Arm8Q,547
7
+ spire/presentation/BaseShapeLocking.py,sha256=T3UOyvWGlPjQE-vKh5XB_ojNCT3R_X4i7SXvKrRKjS4,797
8
+ spire/presentation/Camera.py,sha256=u4muwVVKRWO3ADe2u156HxjE66bfdWEyA4KkJ-YFhMQ,4521
9
+ spire/presentation/ClickHyperlink.py,sha256=BtH2Lk_DlCJKu-jDKSqRZEqfEEp2KdWQ1hyLOpZvILk,16256
10
+ spire/presentation/Comment.py,sha256=hhBHNA870bfZkvXgc2DFU252J7U620k3FPf0SxPFFNE,6838
11
+ spire/presentation/ConnectorLocking.py,sha256=qEpCYCp3LPdCiMCiGHKn0Ej1oGcGxyG63VICpsIqmEc,466
12
+ spire/presentation/DefaultTextRangeProperties.py,sha256=b2X5KCIW3FdYLScIn9HjiCnbM4LCrv4tQRXmY2kixmM,21382
13
+ spire/presentation/Direction.py,sha256=dRtNraIv1J6UcPnipm59hi34w6HY1hEqRuTIW-oNXtQ,437
14
+ spire/presentation/Field.py,sha256=gPDlQBKpzRrITYLpCuJYAAz1yWy8BfvEI3bNwoagDf0,1715
15
+ spire/presentation/FieldType.py,sha256=F6CUkAGzRKLiz0m3sViFxO7D0acKujuoN4_07cdHE5o,9074
16
+ spire/presentation/FileFormat.py,sha256=HHr-aVKQaFd57TWJLhUzaSeklzLQWtadIYibMOHDgr8,1551
17
+ spire/presentation/FontAlignmentType.py,sha256=k3s-ianSzQovGHN7_cS2RbpgBbtFWBzH73VO2vPryRs,702
18
+ spire/presentation/FontCollectionIndex.py,sha256=Q9pgy410cCtces_D6chrlCKEqWj0kS9kGmqP0JVZLAg,523
19
+ spire/presentation/FontScheme.py,sha256=U6OqUeppE5fNdpKDUwOZobXJB6ZxocovYma-mT-fBBY,2457
20
+ spire/presentation/FormatAndVersion.py,sha256=N9htgex4-co5ZvJ-JiFm_216V00hMuRd9bvCflZagWw,2143
21
+ spire/presentation/GroupShape.py,sha256=7pC5-G5e_Dxldcv6OOi8vV_zrFuPPQBeLyAs7uHN3hk,2400
22
+ spire/presentation/GroupShapeLocking.py,sha256=rtYR6qit7hKyQ0COiptZBk2RHNzW1FyAeLgeFSmRVm4,5313
23
+ spire/presentation/HyperlinkActionType.py,sha256=O1InpACftNhyDYJ7aLvdsptjlNE1fxD4PIPqCVjTbjw,1593
24
+ spire/presentation/IActivePresentation.py,sha256=YOZUVdyhyA7NLCb0J9uz2KKI7d_Tk-JfGDhIgUegFS4,925
25
+ spire/presentation/IActiveSlide.py,sha256=cs6i5O6iULqrPai9UwSm8gDV4Rg3pYpFUxgt1Ia0pOY,858
26
+ spire/presentation/IAudio.py,sha256=L8JnACoQNkFgxqQA3ogajKWmfE2vsvys5ielyGwp2-M,20893
27
+ spire/presentation/IAudioData.py,sha256=EKPaghnp7SCLOC15IPMAMI0Igy9nQ66b5z-oq-iU5zY,2026
28
+ spire/presentation/IAutoShape.py,sha256=Mqe0_HkIdwNE02jYwAabfseneb2cQZB_s_tTQc39YtQ,20723
29
+ spire/presentation/ICommentAuthor.py,sha256=Vw7WmVT0GS1oVZ1Jt4uT28gRyhPpE6kPnJ-WwiNnZig,3947
30
+ spire/presentation/IDigitalSignature.py,sha256=aUOD2hjLUrb46-qbtbyWtQ227-dV9Y8Vf9R18b5_qos,2646
31
+ spire/presentation/IDigitalSignatures.py,sha256=9A9BtPHUu0OLyx5ycnH-SlbpA_i8Bn0OHPYAm_TIx1I,1259
32
+ spire/presentation/IDocumentProperty.py,sha256=U8ZjE1Tj2wvjulcPIDVTD2R2PHOSQztQo22aVF56gek,19509
33
+ spire/presentation/IEmbedImage.py,sha256=jAUv3Pcqf06oIf5svFe4bpwX2dJ_mdqOncKDjrNmzNA,17884
34
+ spire/presentation/ILayout.py,sha256=t6MrKSFxLWcRuEcrc0XLn9zOJ8nrELYalTS_Uy2nKww,4883
35
+ spire/presentation/IMasterSlide.py,sha256=fehM1k98vs0eTbfZw99qKq7CDJpYnpBfEnbxuaZ68dA,9075
36
+ spire/presentation/INoteMasterSlide.py,sha256=UQ_M-JEUIRLh_Unvyuh4YTuFV76yAQ3TsfpfZwpWcMg,5981
37
+ spire/presentation/IOleObject.py,sha256=UWQJPL1yfdyQmMDXltQPAxBzfanZMoSErmictZH4_4U,21566
38
+ spire/presentation/IShape.py,sha256=UEdVSe4g77a8Pzy1PDv5AdAlMEm8sBpEkpEHjIwc0vA,21728
39
+ spire/presentation/ISlide.py,sha256=j_uSCn77pVnAm6FR87h1WKOjE-z6_mlLz_cD1ZeqDBQ,27450
40
+ spire/presentation/ITextFrameProperties.py,sha256=mb3xUGThlIHjbEmoYF0X63uXILpg4EblqvQoneWcOJY,20440
41
+ spire/presentation/IVideo.py,sha256=LgdRrL-qMVw48FvuGTOhk5ma0mVYN_2_Qo0RPKrIKSo,25525
42
+ spire/presentation/ImportDataFormat.py,sha256=vQKQ_ue4pF3oaNPKb0pQFT10Fr8NbOfPUhmb2U6Q3iw,552
43
+ spire/presentation/InsertPlaceholderType.py,sha256=OsFZZq1BGvsspZ79cEpeZoYGzv2uZZQiFo9RZB2Q_p8,449
44
+ spire/presentation/KnownColors.py,sha256=ql8-lFIKteOqIRaMNl90WthZ2eTCpH6T-MWJ7_-Yl0I,3138
45
+ spire/presentation/LightRig.py,sha256=P-0lry4Jifo-MyJ_eNkCYNtNg9XM6qwUU7QXQy07jNQ,4045
46
+ spire/presentation/LightingDirectionType.py,sha256=8DloEBBjvCYZVVvHLYM2PHcOtLMKOvy6uLj403GclqY,592
47
+ spire/presentation/LineCapStyle.py,sha256=Cy7ldOiVRJvWtWxI_S_CEmZ-zTfC2PYCxReeor6MZiU,593
48
+ spire/presentation/LineDashStyleType.py,sha256=UMizcvtj7ze7TgttfMVn0DUXb_gxzI0CPCmh6l6kZlU,1154
49
+ spire/presentation/LineEndLength.py,sha256=h3thanRkow8hMZrcIutzepxOM55cZcYBu8nNL-Al5VY,549
50
+ spire/presentation/LineEndType.py,sha256=i4Ajhsqvg_SrQ1kXHmILaQJBE1l7OyNELSWQn0lSIWw,838
51
+ spire/presentation/LineEndWidth.py,sha256=d4UUcZTLV8E0QOB5aIFJkJat-6B7SbGJ3hk9_ojV0pA,603
52
+ spire/presentation/LineFillFormat.py,sha256=5uXgGZKrcswBTO791nvhOw6v9WZiR5TvuSraBQfamXI,4762
53
+ spire/presentation/LineJoinType.py,sha256=aLEJ0bUJfCUWiC9rI3M72t_reoNorbwOgDP9wgZLsk4,605
54
+ spire/presentation/LineText.py,sha256=Jsx15jgha5g3fFWCfBNQ386XEEPqlL-dE329dZ3ljMc,1265
55
+ spire/presentation/LinearGradientFill.py,sha256=t9ZlUB_9OKCW_ar_vaqNxvWCuepoNc7rY7OlHDgQfRw,2223
56
+ spire/presentation/LocaleFonts.py,sha256=00rfqvYGNCE78X7ANmu6bWM91weYsh_j1Sd1GUdjJl8,4039
57
+ spire/presentation/MasterTheme.py,sha256=wNeRGjlEQ_BhIPgFfuN7r427N5pYXIiU1Hmni4aJQbw,3161
58
+ spire/presentation/MetaCharacterType.py,sha256=VsDZw2fHZqY4P6EY3b-xe4QvFF1defns47fOuai4v5g,907
59
+ spire/presentation/NotesSlide.py,sha256=xHxWm8BniHP-PvmuT53nCzoGpQogCW8IXSNJmAPHtCA,3457
60
+ spire/presentation/NumberedBulletStyle.py,sha256=5f0vT9eKNo3Cxc5UIovwxrhDQFOcP1roe_NeGVaWet8,1666
61
+ spire/presentation/OleObject.py,sha256=yw8lnYHgVNook1i1CQRKxg2GBP_KriMyysNB4hpEFvg,4107
62
+ spire/presentation/Order.py,sha256=dgH9JjAwSJH1emcCkXv0Qr80lJSxOQenGZZ0HqFms4M,416
63
+ spire/presentation/PageSlideCount.py,sha256=zs_X8XApSFnV27fB4yTP1gOcyvIxH9vus5UarpTKma0,507
64
+ spire/presentation/ParagraphProperties.py,sha256=zX2_BHEdiJGk9oqRCHD5IECXNGNq8mhF0PZiKKpWNus,23983
65
+ spire/presentation/PictureShape.py,sha256=W9uboiRpYzgLE-q7EEdpCiYfvzKTRVMgIf6RP0GDFUo,4097
66
+ spire/presentation/Placeholder.py,sha256=51abqCYmSkYfBm-aVRFsfYSzerfhwva0O8p-_k80jdE,3536
67
+ spire/presentation/PlaceholderSize.py,sha256=Odz3X_iJ_wk0XiBknLQADRfSbmWE0x4mLqOFi6X8rxI,541
68
+ spire/presentation/PlaceholderType.py,sha256=pJV53YZ4j7LHR277Zrq_Ipo4gaYzUFeBNwJK_PiMfgY,1318
69
+ spire/presentation/PptObject.py,sha256=IuACvd837Vg2Dv3eyWdjdZ4EXpKYO9GqvLowaw2R89E,1321
70
+ spire/presentation/Presentation.py,sha256=cPkV3L9Zz0chDgVQesUjXKAK75p8fopiRqC1wroCWSU,52595
71
+ spire/presentation/PresetCameraType.py,sha256=NzrY4kAxBswsr9WajV0YfBNEo2zYAuM--RGjuL5nnQE,2300
72
+ spire/presentation/PresetLightRigType.py,sha256=mzFsayT5dBdaOEaQ56Nn5DvVhpJG9Zg3tErAu5Gw4a0,1776
73
+ spire/presentation/PresetMaterialType.py,sha256=gVMALrk6HXfqvTIAE6-BiFB9H8J-E2Dziniw0Jz6T9U,1479
74
+ spire/presentation/PresetShadowValue.py,sha256=D1itUNK0wk9Dn7_0q2SvKuUnlfoNGeJwbYVQLStsfwQ,1061
75
+ spire/presentation/RectangleAlignment.py,sha256=DEVjTGbLxNnqz27-uWvm2puulirh21UopQ147KkIGEY,593
76
+ spire/presentation/RelativeRectangle.py,sha256=aR-TngLniePLlY1UBY55S04B4cED6hQl9-T0q_N4mfE,7393
77
+ spire/presentation/Section.py,sha256=D6_9nSqSxbrZDLW42nWLetElOjLyD8LBrDYjmeoSFos,5983
78
+ spire/presentation/SectionList.py,sha256=RjWi5EEt9Gh7sMUVVXrHrcki6yEwWkRRwOJaxJyKIoo,6733
79
+ spire/presentation/Shape.py,sha256=AQptb0QD5EQ2XkTqpW-kCZ6bBUd7a-zck-PCAGV7dGQ,20632
80
+ spire/presentation/ShapeAdjust.py,sha256=ifv3Q7aF9XcoqMgPzSzjXkkO4Yg-dpKctTD8KkgZkLU,2162
81
+ spire/presentation/ShapeAlignment.py,sha256=Qz21-gy1KadO34mg4OcmiZmEpOzLQe1hDgu2fhPS9DM,1151
82
+ spire/presentation/ShapeArrange.py,sha256=-iuWr5uZzAGgL8uO1ExaFoxjMYFQquO5DMHcBkWhXz4,816
83
+ spire/presentation/ShapeBevelStyle.py,sha256=VIrEwtZ9eNETUSvm3XHQFMxml4VkFc9krBrb8eznCJI,2931
84
+ spire/presentation/ShapeCollection.py,sha256=1GdQ64QcSlpDccbmYMI_qctWaomwUc-C_RKmqHkiJOQ,2554
85
+ spire/presentation/ShapeElementFillSource.py,sha256=UEJchsWBD8Qw7utw1Ay3HXYDtOkfU-SB5TLkBWQmK5o,819
86
+ spire/presentation/ShapeElementStrokeSource.py,sha256=djCLhwXrsEZyeS_FnGFNQzIcZQTO16Yb6-U3yJB5IBk,564
87
+ spire/presentation/ShapeLocking.py,sha256=0-VJgNF5te_JwWYblGjc4dpilI-APMmxv8bJO9Up4TA,1481
88
+ spire/presentation/ShapeNode.py,sha256=UdyoFBVID-iI6ZTO9DPmATLBTbkX5HUfV9y9Et_nzc4,3396
89
+ spire/presentation/ShapeStyle.py,sha256=SJCjgKZfp9v2zRb3MhsODs6w6V8Nf02S3bQTms4qS-k,7762
90
+ spire/presentation/ShapeThreeD.py,sha256=d8JUKRaDN-sMS3FsljvjKq5kCmA-aMVx1RCk8saCNxM,7171
91
+ spire/presentation/ShapeType.py,sha256=wikp9tqfwtO1mkSzR9a5Y-OUo9624ybmApwQzcv__So,4922
92
+ spire/presentation/SimpleShapeBaseLocking.py,sha256=8Qqah_GIyFp5GsSUn_G-Gd8kp_KrSkJfQHUm0WYwLDc,9577
93
+ spire/presentation/SlideBackground.py,sha256=bN9IXnqPcVCSJWFDbhsRH5-2OAXnD7SbuPpGmDum2pk,6377
94
+ spire/presentation/SlideColorScheme.py,sha256=UDSe1WgLcTWMPhlm6e5rgIzjr66nRAYWgkI7n9mMR6E,1871
95
+ spire/presentation/SlideLayoutType.py,sha256=d-NLbB_ZeIfvBQ4z6X9C8B1By7HW3wDCPXNOesMSgXo,3110
96
+ spire/presentation/SlideList.py,sha256=5bVpyrbewRj9rdjlYtrknSm9FWL0f0vp2ZcCky8QxgU,11703
97
+ spire/presentation/SlideOrienation.py,sha256=KAC4HpjqHqOIxcgr7psAdqsNqCz3oTRVNps0l_E9ntQ,465
98
+ spire/presentation/SlidePicture.py,sha256=LXlH_cCMa50CDAMFcdqIzNZub8KlwafhGaow752viR0,3319
99
+ spire/presentation/SlidePictureLocking.py,sha256=exrZs-TMsjpS-ekA6LFVTJCKdZS2FRpmmaSqLqVkmYM,1358
100
+ spire/presentation/SlideShowType.py,sha256=K09yb3KtRu1hA96dr7QevoEX7SLvKjfz7Z_94d56R9s,544
101
+ spire/presentation/SlideSize.py,sha256=ho7XVlro2KstncewkU45mt4sBDGDN7XiMW2-UF8j96M,3831
102
+ spire/presentation/SlideSizeType.py,sha256=4fa8JAPQXcUcrRodVXmItrtnpM5BIKTV0QaJAlcCTx4,1488
103
+ spire/presentation/SystemColorType.py,sha256=w7YdB28us7xQkCKlMzeqxEDdHsD5wbgOwLxy9rLMMD0,1049
104
+ spire/presentation/TabAlignmentType.py,sha256=uOC7sqKRF9pREL0DB7-MeLbtgh-zZ5YrivXuh3H0gX0,457
105
+ spire/presentation/TabData.py,sha256=13baDYOGVBuR_CSSY-Y365UOGO9MDQBWmZTeydI1PKM,2037
106
+ spire/presentation/TabStop.py,sha256=VqR3-0Ie6mWop71EjTy2IDv2FAYXMydWn0kfHW3cw4Y,2966
107
+ spire/presentation/TextAlignmentType.py,sha256=qznkumjyUJ7rof8vWZxrUFpT_iZ4N1fPGNH3WueyQQ0,644
108
+ spire/presentation/TextAnchorType.py,sha256=D2iBf5tDmW3gkb8SzV6ERSEpxyZDOmiMvoxTCSiLmwM,785
109
+ spire/presentation/TextAutofitType.py,sha256=3MHHpy3wcu6MjLWclBBVYuHDtJ1Jp8yWpzcZjQcBfu0,552
110
+ spire/presentation/TextBulletType.py,sha256=IJyj5hFQ_VbJS4pfrDSXwdAolU_9v94PZeYxaSDsRhc,612
111
+ spire/presentation/TextCapType.py,sha256=z86vcJk5GoRAswRYNW0kBA-Zcri-BdcuSriZpf_q8yw,572
112
+ spire/presentation/TextCharacterProperties.py,sha256=3bmPh1UWpqNyeTjhWj4Y_k6Lsj7DkUc6RiZfW7d38jo,26633
113
+ spire/presentation/TextFont.py,sha256=WI7WUiALzpRHF8SfYrNuj-TYmQtR1U4VVl8CKh4MVyc,3479
114
+ spire/presentation/TextHighLightingOptions.py,sha256=2gEQFxy7EhUvBaUoLj9joSAGrYboRQL8YqS9n-ydYDY,3161
115
+ spire/presentation/TextHorizontalOverflowType.py,sha256=wG-wdvMvUzVcEyqXr_WYI9V6rHjQybSKIZl4L1HvwGc,531
116
+ spire/presentation/TextLineFormat.py,sha256=V8nVmCuxx_qQahVpIf9FlqUNNknozMHINkemgCGT8ko,15364
117
+ spire/presentation/TextLineStyle.py,sha256=HxBc6nGHvwE8MaH9w1yApEc6ojaY5ynTWIACnyvXAeA,743
118
+ spire/presentation/TextParagraph.py,sha256=KKuSY7wSxEeSrGPg20S9WkJ8bBNvfA8ewgyv3uzCp18,4830
119
+ spire/presentation/TextParagraphProperties.py,sha256=dQfC609-sMPlHQVxFSHT0W41VkCfXFw0_2nibOn3G34,21251
120
+ spire/presentation/TextRange.py,sha256=RzHF-dmR0eFlJ9_tbczVjFBbonz1u7U5fu97fI02bvk,5390
121
+ spire/presentation/TextShapeType.py,sha256=0_6dBhoqOr6mYnz9Rje35qVii4-OZMJlPLBs8slqM_I,2823
122
+ spire/presentation/TextStrikethroughType.py,sha256=mXvb-2m6XnMePUcT93vyMM4mwm6gPOE6jwArvbthmcY,570
123
+ spire/presentation/TextStyle.py,sha256=84b3HxMHU37Te-xe41zIv3duhCo_IMfLymOKhZD4BgI,3185
124
+ spire/presentation/TextUnderlineType.py,sha256=kLe5Z_nR4HS6uEplP0MnTYsCgn7tlhp-udG-_WnKHTU,1466
125
+ spire/presentation/TextVerticalOverflowType.py,sha256=sGSbyxFHsi_l2xbMhF0qnR5_eJnR2G_0BjdPjTci02s,536
126
+ spire/presentation/Theme.py,sha256=YLuA9P1pRRvnJKw13NhmFJFK-YFrKveTxBaW_W8fPJU,3508
127
+ spire/presentation/TileFlipMode.py,sha256=EOUAmIV_-XcPbJLKveqFCQxce-avM5xKTxTX9gOLkVA,639
128
+ spire/presentation/TriState.py,sha256=7o-KRi9wCgqGFnJDequEiy1lI5oxdvtikqSSqRX-Nxs,347
129
+ spire/presentation/VerticalTextType.py,sha256=QnfgZqtJk6ET8V0dDpqdCl2m_6fo1iKQ7J8TZ9uG8ms,924
130
+ spire/presentation/VideoData.py,sha256=nRZk9GqVu222O9Tv5TcB7NdpRKUEeP5H9qgRGTnZlJA,3033
131
+ spire/presentation/VideoPlayMode.py,sha256=IMe5Br8YGYbLCDe-y5vwuydtUD0tzOweu_bxZ6IYTzs,571
132
+ spire/presentation/_Presentation.py,sha256=q8n_1Bwp50mE0LLBxEcpQSOkMUizozKM49a942uq6RM,6015
133
+ spire/presentation/__init__.py,sha256=keJ32BAqGGZwFoIDBR8nZMPR0cYqGO1j4rjBUhcI0lk,29696
134
+ spire/presentation/animation/AnimateType.py,sha256=r-9-O4l7djyjahzUcaa7K3PKsTsUTERL9fdMuu9W3Rw,644
135
+ spire/presentation/animation/AnimationCalculationMode.py,sha256=88BtVcpqnHfWGnBnXZbLH60Bou_perd9DJF27cVA9IY,606
136
+ spire/presentation/animation/AnimationColorBehavior.py,sha256=v6xJDmeAqa2YKS9ac8fnM1T9ja3v2iai6acA7ZQzslE,5152
137
+ spire/presentation/animation/AnimationColorDirection.py,sha256=9ei8sskd8kbCn2bIQhalRHsk4cJJI6_hfHYahgvZwUI,575
138
+ spire/presentation/animation/AnimationColorTransform.py,sha256=wbyf36-UbMl0bB_WASRn5bSmSJCd3UEwpTfb7ScWLtY,2962
139
+ spire/presentation/animation/AnimationColorspace.py,sha256=CxZsPT394b4dVU58V5p50h2Wsq0_xb5EkpwdWoBL5GQ,491
140
+ spire/presentation/animation/AnimationCommandBehavior.py,sha256=7vdjikcgU1MsYvCLIFr56t5j8DG4Owao023KwbQcUew,2636
141
+ spire/presentation/animation/AnimationCommandType.py,sha256=SL5dyLNML_ur0HrnWwOJhEZF7osUsnw_woCMGHovoeY,554
142
+ spire/presentation/animation/AnimationEffect.py,sha256=Q8YG28kJbvuu981-4e97t-o-gtL_u-V-Yspb-CPjhHw,12241
143
+ spire/presentation/animation/AnimationEffectCollection.py,sha256=GrHajSQTH87EgMnw1Rgisq1vQ03lnSwAp9LYpUhtsyo,6356
144
+ spire/presentation/animation/AnimationEffectSubtype.py,sha256=sAyJhH2bdZbaCgpTYiyXixxCvwUJtj5lKvIY45ugyCs,4844
145
+ spire/presentation/animation/AnimationEffectType.py,sha256=cIfDz7gMtGYIiqmn-QQwNxSVONmJ_oJRvrQaD5mD2cw,11605
146
+ spire/presentation/animation/AnimationFilterEffect.py,sha256=8Mqyu7seaKYg9fKtmUsLUw6JlJHU6H-Ly9ausv3MjBw,3215
147
+ spire/presentation/animation/AnimationMotion.py,sha256=bvgKPRGcbPhEsW7OZeYDlFZQym0Gw3eaNm2W0dlF2BU,7211
148
+ spire/presentation/animation/AnimationMotionOrigin.py,sha256=ugM-lIKuhEeM7EN2BXr5Oi2IuTF3368oI4OjJiIf9T8,540
149
+ spire/presentation/animation/AnimationMotionPathEditMode.py,sha256=3oAO_2dksUBA0ZwFL0OZ3W4CS0B14xTIdDb48Y_DViU,555
150
+ spire/presentation/animation/AnimationProperty.py,sha256=SUKToW_qg3BUJWDv7Dj5AV77h0fnL93iWLp23UmvBOQ,6000
151
+ spire/presentation/animation/AnimationRepeatType.py,sha256=jNxXfCuCNvNIWNIENeyLgotBX6J2CqCUNGuhyanEm1g,561
152
+ spire/presentation/animation/AnimationRestartType.py,sha256=6pCiC_Di7QTb_nC1YVrmWhGb90fYprPE1ZADr3nC1NU,552
153
+ spire/presentation/animation/AnimationRotation.py,sha256=kqV7IsvOLEPOCZUmiFzUKyJpUu4TSt8TRm-iNdFt1Ys,2077
154
+ spire/presentation/animation/AnimationScale.py,sha256=JX9nnR8miqBonUVAR4SCSAxC_B2QP9dsJddYuzz0bVk,3919
155
+ spire/presentation/animation/AnimationSet.py,sha256=mRUTvqku0vA0rRUTv5dSr83xm_mrbWAYbmq4HLYUdZg,1099
156
+ spire/presentation/animation/AnimationTriggerType.py,sha256=1DqbOoRXHWbdMDGeUHY46I4j3W5OvonkLX_to2rfEUs,678
157
+ spire/presentation/animation/BehaviorAccumulateType.py,sha256=aX3mDsurff5j_U-XCz7UDFBEKq_S322tEEHJlzzITkU,574
158
+ spire/presentation/animation/BehaviorAdditiveType.py,sha256=n3LRAatnDURePkGq1iDVorwxBy2ytBgBN_8_sI1xyYQ,785
159
+ spire/presentation/animation/CommonBehavior.py,sha256=-6JxWfwaUPOHIBqnbDgcaJqdI_iCgSsX7Yb_xDhZdVo,3759
160
+ spire/presentation/animation/CommonBehaviorCollection.py,sha256=jAwvOE_aCiATZuS7FNRJjOyI_R3RiCIu54jWiyMV9KY,8523
161
+ spire/presentation/animation/FilterEffectSubtype.py,sha256=D5tuoeHrWgGeGD7hWj1rB7bOXYsbMofwOhlupXOWZj0,2327
162
+ spire/presentation/animation/FilterEffectType.py,sha256=rfMGXcEwx07lQ7MW5I0S7cArJAV4yEA0PJHTer_w2_s,2153
163
+ spire/presentation/animation/FilterEffectsType.py,sha256=a86_VfDbQExhbpekFgAvRNAAlaNi78uadslGOtXBQmc,664
164
+ spire/presentation/animation/FilterRevealType.py,sha256=VJKspwhGtpK9a5JYdo6W6j9EGIEYEXA8TAv9LVb-DLc,577
165
+ spire/presentation/animation/GraphicAnimation.py,sha256=SZqLdB9YmqgopaDJig5ZhE9XLktAk5PLA4AcYBwGXE8,2215
166
+ spire/presentation/animation/GraphicAnimationCollection.py,sha256=FYFeW_zhYiMEjNAzhyayJDpiYJ2R2dU5KCCBGdqqn7g,4788
167
+ spire/presentation/animation/GraphicBuildType.py,sha256=l_nohdpuKQHER4DsCjCVgZbVWowss0V9QCGqpnDzp9Q,805
168
+ spire/presentation/animation/MotionCmdPath.py,sha256=_3Y-vPtZXuAX8uRurBam8QFBTDqNs_xx7EZa8wXTlZQ,4142
169
+ spire/presentation/animation/MotionCommandPathType.py,sha256=YndQF9ZAFc4QOJwVpu5Bf7CC0NJAM1_f95nGYUV-0tg,723
170
+ spire/presentation/animation/MotionPath.py,sha256=O0HlcGMyx_dRvFzJji0AFh7MgDJgKNj1dJDw-9i4FpE,4113
171
+ spire/presentation/animation/MotionPathPointsType.py,sha256=l0TRxaFZehEswtx6QoBbrczpq-h9yh3Wzb6l-9cQjG8,1034
172
+ spire/presentation/animation/ParagraphBuildType.py,sha256=b4jLlWhtSllUWjRLtxrAzDzfBAgry6Kcs65k-46t8Cw,971
173
+ spire/presentation/animation/PropertyValueType.py,sha256=c4utZnfqeaolKwvZ3pYkghAJAJ-X_1a5uEt6Toczg8M,656
174
+ spire/presentation/animation/SequenceCollection.py,sha256=hLd7in9a_UKlCjkdQEdG8NqCSDFMJ12WiVyBPcy7kOM,3728
175
+ spire/presentation/animation/TextAnimation.py,sha256=Adx-PpaVZq1osXGeZw9VoQFiDhUADbXPrlhRQHLBwCc,2943
176
+ spire/presentation/animation/TextAnimationCollection.py,sha256=I7-LYcaTZ3HUWaq_Gq7Zj6EnaDWIl8Qk1svuruSgHCY,5686
177
+ spire/presentation/animation/TimeAnimationValue.py,sha256=mTv23DyrBv4YKUQn5tbmjKRoZ8spebYSE0VSb8NS3AI,2708
178
+ spire/presentation/animation/TimeAnimationValueCollection.py,sha256=MSY4eyZ7cLQf7J_xNbIzcTFzRQSNagDKKl5yRYSEfKw,1976
179
+ spire/presentation/animation/TimeLine.py,sha256=vcQx_1ITsYuwIK87JqSenwV-efkpL6Ky1T9QRodXoNA,2783
180
+ spire/presentation/animation/TimeNode.py,sha256=ygD_ieFqyEmAzv_ITbkmxnApJxBfsa_bKA7I6K7_vG0,2050
181
+ spire/presentation/animation/TimeNodeAudio.py,sha256=-xTN0kggxYo6EXp2wY8qJiDVTlM9QlkH-x3Hzfi6_gg,4219
182
+ spire/presentation/animation/TimeNodeMedia.py,sha256=vgtTnWIBWWqlkeFweiKvtMAI3r6WnMnRposwVwbPqcs,1015
183
+ spire/presentation/animation/TimeNodePresetClassType.py,sha256=CE5XoyNcLTB-EhXOlKgFz2SAbcWWBJqpxkYk736mzpk,816
184
+ spire/presentation/animation/TimeNodes.py,sha256=sIMZy6LYbMB1pg5GLdtRf-HjLK0seAi07L-ZsZqUwPg,3732
185
+ spire/presentation/animation/Timing.py,sha256=CjXkxmOwrFXXSeupXwL-07mDFyprkjEQ7RABMYBEDUg,9295
186
+ spire/presentation/animation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
187
+ spire/presentation/charts/AxisPositionType.py,sha256=UFXLbfjDGyc_KEkzwRlf8KRhnRUzipmfDq30Tc6vTEE,510
188
+ spire/presentation/charts/AxisType.py,sha256=ScKq6kk8TeK9cfmwzde4EB7ZIyzHn6Yb1YwdaF-H1gA,511
189
+ spire/presentation/charts/CellRange.py,sha256=ex21dLDAtZ_hXmne8UQ7PUsSer55UHOzsMAVopj1Wgc,6754
190
+ spire/presentation/charts/CellRanges.py,sha256=0UslWDJMyVaKGCyfvHnf-8YOjOpWE64v-8mKIBQ6KB0,4158
191
+ spire/presentation/charts/ChartAxis.py,sha256=5RbMTpuXim8PPWEAp1jNfLl51ckA9davSZ3r5gZwpTs,31445
192
+ spire/presentation/charts/ChartBaseUnitType.py,sha256=ItCT_nboM6lhl5x-BiIhmUP9s7z8g937jZ0VAlwYm4w,393
193
+ spire/presentation/charts/ChartCategory.py,sha256=SQdAKn4Xq_VWLOWPg6YHHc1tB7pppayhDcNV55BCEzU,1336
194
+ spire/presentation/charts/ChartCategoryCollection.py,sha256=2WsCyVaPfl0xL0DUsD2WtIF665ktwfLuTCoWdwuI1rE,7119
195
+ spire/presentation/charts/ChartCrossesType.py,sha256=sc70BaTiGeCVpXuVR_C_f53I-t5EXZJYGYn3iSCWM-M,573
196
+ spire/presentation/charts/ChartData.py,sha256=6u_z7vb1-4u0aSP3HvpOAnS2cqvKYXFvEX7SUeecbk8,9506
197
+ spire/presentation/charts/ChartDataLabel.py,sha256=HPmJP6v-Tn5v5VjTanTiiWF-NYrqdm0eZqDXPE1PYLo,18164
198
+ spire/presentation/charts/ChartDataLabelCollection.py,sha256=uXfSdHQ5ge6aRUENgJwXMw29SSkGyqNbAPJ_s2fEBg0,18639
199
+ spire/presentation/charts/ChartDataLabelPosition.py,sha256=Ab5AA_UPU5iJt3Xij91Ygj16C1_v1fxDFKozkatL2sM,893
200
+ spire/presentation/charts/ChartDataPoint.py,sha256=5G3ydB21eR9tDIzLJKrLieiIaPuj8odFC3sm5m1JqSA,9128
201
+ spire/presentation/charts/ChartDataPointCollection.py,sha256=3N4wE1b_BzxV6vQVN2GvuVprYw0Dj3IoMYgC5timK_Q,2634
202
+ spire/presentation/charts/ChartDataTable.py,sha256=tl7P2NgYmKZm4rcAyc6LhdQiHoxq2uF3KrNgvaut9Sc,5740
203
+ spire/presentation/charts/ChartDisplayUnitType.py,sha256=WXHwZqAe1BxQKuLLULXQAeJDQ0-b9n7NzETThLTIJFQ,1148
204
+ spire/presentation/charts/ChartEffectFormat.py,sha256=xDAru3c3_MHaqu1hZUHnPKdMnhIMJy1teJkvOaRYpfM,2373
205
+ spire/presentation/charts/ChartLegend.py,sha256=LepIzGdoOCElRw_9TZ9qtXCqzKKxy7ziZm3D9zE3Fuw,9042
206
+ spire/presentation/charts/ChartLegendPositionType.py,sha256=mOGipFga8-YrqLHfwhBVS6-OfbyEiQyJItmF3PCkkRw,660
207
+ spire/presentation/charts/ChartMarkerType.py,sha256=KSiQTf4aXTAJ3qga91m7ly7u1g9UwpMf-rbKW3ZfOW8,916
208
+ spire/presentation/charts/ChartPlotArea.py,sha256=jGN0kP2M-gW7Zn_gllf5T9MEuUAHnPS9-wrEukPdA6o,5187
209
+ spire/presentation/charts/ChartRotationThreeD.py,sha256=sPMZ5QwNr9MJgPc4bEJ8Myp0S7O0bnohY1kLwRYOW4E,2789
210
+ spire/presentation/charts/ChartSeriesDataFormat.py,sha256=F51QFy2Gj4LuFRskbZ7zy8j-ZrClMfg1BZKx_juvX4w,24729
211
+ spire/presentation/charts/ChartSeriesFormatCollection.py,sha256=G8UlmK_skv_fnbnp-zr9gLX3O6SfQ9cQ1wz9hZh6WJ8,8890
212
+ spire/presentation/charts/ChartShapeType.py,sha256=A7g-iDLvsanhSsUGxZoA2NtK-KrbG0_vDHPx4qz-JZg,698
213
+ spire/presentation/charts/ChartStyle.py,sha256=Zmpge1A7xSAI0YpdmY7xt8Fkx_aS4VlHe7NrxZCLQD0,1133
214
+ spire/presentation/charts/ChartTextArea.py,sha256=uIQe0CeAGiTKnFQt10K_xm0rnJGC45XhAnEiCVgTMwA,5457
215
+ spire/presentation/charts/ChartType.py,sha256=cZDFbNJFQ2tS9-_3AB4uEBsfhzEYdwoMy-seTnY9lxY,2422
216
+ spire/presentation/charts/ChartWallsOrFloor.py,sha256=QrVTexI3_tRa8ShQPaEyfXunFjC9SMv3O4djGibMmPw,3896
217
+ spire/presentation/charts/CrossBetweenType.py,sha256=D9JkQoctJ6AoPQW_4fZ2KHzG4d5C0OMIDK4MVUd_3OI,515
218
+ spire/presentation/charts/DataLabelShapeType.py,sha256=5C3OxBYY08yCmnozLSpgkPtOkEKMVV3Fro77yobbeGE,686
219
+ spire/presentation/charts/DisplayBlanksAsType.py,sha256=DLK5ESv5sfqtgr6E8J2KlYAU7F5PbnO2e7rO2G3uQME,366
220
+ spire/presentation/charts/ErrorBarSimpleType.py,sha256=zAbsHdzyasd8WKKolpve3uX0Q-dAFX_yO8WO9CjKxqs,582
221
+ spire/presentation/charts/ErrorValueType.py,sha256=f8znGymHDXHFZ7SRR6DHDhoifwQZBzNRcS4X-pTjYhs,786
222
+ spire/presentation/charts/Geography.py,sha256=VtV5vIVgMVMu0Tg3dWRZOTd44vXbZFPWaxExFYV2Ibg,267
223
+ spire/presentation/charts/HistogramAxisFormat.py,sha256=qrsR_herC8k9aq4yNufpJSHyXW8Z6QmYqPB3oxc_PwE,770
224
+ spire/presentation/charts/IChart.py,sha256=gtqKVjsjbMp83dTm4WHynKtMJ2ClCKgfwY5vGKJTNk8,30984
225
+ spire/presentation/charts/IChartAxis.py,sha256=Up79yUm1RampOfzRohUeJXhB3EcODVXXqo8dGPUGVd0,31399
226
+ spire/presentation/charts/IChartEffectFormat.py,sha256=cIY3KCP1hLz5kdO_usoe1ZJMl0bRAEFyoF5UR0l-jMk,2953
227
+ spire/presentation/charts/IChartGridLine.py,sha256=aw5qbUuQpYNr8vybAjZ-Qv7RL56GeF-UQOvUGZuQIjs,12643
228
+ spire/presentation/charts/IErrorBarsFormat.py,sha256=TZNqQYHxLI4-BKaxVlq8Lq-FBXiuYVwtUpO5cDIZyiI,4843
229
+ spire/presentation/charts/ITrendlineLabel.py,sha256=sgHut1got5eeW56jMvdZA8lTaLYDg4xAePgVsegYJQA,2923
230
+ spire/presentation/charts/ITrendlines.py,sha256=esDUZokKlWfr0au0kpGlk-ydRd48pW0zXzWJauS_mQo,9836
231
+ spire/presentation/charts/InteriorColorPattern.py,sha256=2WkEYzrtbfAmEj7ReDZURits4V6JPetkpDZwD-3sHyo,729
232
+ spire/presentation/charts/LayoutProperty.py,sha256=hJHejEqWev78QqYM6mAj12dduDukQVwJCJoINcms-_c,5076
233
+ spire/presentation/charts/LegendEntry.py,sha256=D5rTxGzkEGHodP7W18D0f9itzcRaoCM_aq35hXVjxPM,937
234
+ spire/presentation/charts/LegendEntryCollection.py,sha256=4xYA_ChXDNdsLgy4DZaYWTPOFhzUw9DjeF1KPGmPyJg,1678
235
+ spire/presentation/charts/PictureType.py,sha256=hg1JvPSDxtoMOQEbPkNTvJskzkpvAtUBr9r2blxx1yE,593
236
+ spire/presentation/charts/ProjectionType.py,sha256=4ECRKs51u3cGPB3Z57fFmVt2cxLZU-y0CTEWRg5ogIc,678
237
+ spire/presentation/charts/QuartileCalculation.py,sha256=0PEO4FaiaKVFZKrrIcLw9ekQnnIGNk8dzr_CPCOZaWM,518
238
+ spire/presentation/charts/TickLabelPositionType.py,sha256=VDPQDQt9GbHfuzP250z1LalwilVFleBsWCiZBBrduWc,693
239
+ spire/presentation/charts/TickMarkType.py,sha256=F072eLwcL1FvoZ5zzX78wtXDnTeT_ulN38--0JrIOT0,628
240
+ spire/presentation/charts/TreeMapLabelOption.py,sha256=bX3QxIyavu-C1JPGMg6CF50mq_X9O8GuFni3CEoKJoQ,546
241
+ spire/presentation/charts/TrendlinesType.py,sha256=K1nH3gHLtSfGvjfV8ciF-SDx4-nHfd7hB1J41tqe2ZU,785
242
+ spire/presentation/charts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
243
+ spire/presentation/collections/CommentAuthorCollection.py,sha256=vFHIohgN8nzj6idFQICdco8PPgy47uLeI5F3SSlQwiA,2265
244
+ spire/presentation/collections/CommentAuthorList.py,sha256=LbSzK-qX-f9kJthZjUvzfoUC3mIHQt0wzPAOTAebebU,6082
245
+ spire/presentation/collections/CommentCollection.py,sha256=UXnl8PIgwhWNgszYqNqjpNFPIJ3pGkjgRkxJ2LlHTb4,1530
246
+ spire/presentation/collections/CommentList.py,sha256=pGVeeb33Ktuc69JuyLeM9PfmmHcprqc7lrWTZWJZShI,5907
247
+ spire/presentation/collections/EffectDataCollection.py,sha256=dumrXt50HCRzUeSza6vJTWegIZBCPMqNOnJ7wCTZDvE,3828
248
+ spire/presentation/collections/EffectStyleCollection.py,sha256=CE3WOCx3aiLJHJtEVFP4mSbkEZ6jyr1EsGD_X8UBLeA,2741
249
+ spire/presentation/collections/EffectStyleList.py,sha256=_NnMXGCPZGAbLUPIUns8nkn8TSgZNfbkT58H9kKpBtQ,2505
250
+ spire/presentation/collections/EmbedImageList.py,sha256=N_HrJovPcdJ8uLYPZJwPtOW8ydmHs41YJR6SE9Fwzcw,4379
251
+ spire/presentation/collections/FillFormatCollection.py,sha256=G3in1UhoEXARNejjQJlWP3QSBZgxSuC-BmwKPRt4_yc,1539
252
+ spire/presentation/collections/FillFormatList.py,sha256=MzMykstLEz9XZZJVmp482G2avZ1zcwh_a-Fm2gSKc3k,331
253
+ spire/presentation/collections/FillListBase.py,sha256=ZYpz-Zwqxs3R-h_PPiy0pD5Ce6A8veph7n_CU8gMXAc,2676
254
+ spire/presentation/collections/FillStyleCollection.py,sha256=CkEuG7U1YLCvDG3Zg7WveX8vqovUbl0Z8RpA3P-qxEE,2718
255
+ spire/presentation/collections/FillStyleList.py,sha256=EYhEn-TJQG1C6PBcLXPK0JrZ8aX3gk8VVrQSqmB1JOw,1034
256
+ spire/presentation/collections/GradientStopCollection.py,sha256=zv-Adm8q1eaEXCPsx8sfBeIKqyOrGWQtm8_n0AmKBKU,1275
257
+ spire/presentation/collections/GradientStopDataCollection.py,sha256=SlC27f3tqAWLubQnw5DnLRp8VJRW63HgLAt7bQRbkhA,2706
258
+ spire/presentation/collections/GradientStopList.py,sha256=9MFeCAuSD6EJD8EN8xPmjGc4sj__it72EMSnPKV-ah8,6328
259
+ spire/presentation/collections/IMasterLayouts.py,sha256=cHdafqhEFhNIT4-xPzUvw4-qxj-BSCSImlsuE27tvDc,2567
260
+ spire/presentation/collections/ImageCollection.py,sha256=LINiLNcdFWE-Xd4w1UiuuZ7K12jhHeXbNqcAaNk9A10,1212
261
+ spire/presentation/collections/ImageTransformEffectCollection.py,sha256=4E-3gS983NvvBzex7dLffN02xzayZSNCOxnWVW31D34,1354
262
+ spire/presentation/collections/LineStyleCollection.py,sha256=1c0hxY2vMDHDap2NJhBmXf57b2FjBLjs6zy5PY4LZKI,2229
263
+ spire/presentation/collections/LineStyleList.py,sha256=YryFSCJBVDyGDc-VhnXvvUc1w7mIUkpBOVoEOUeDRzM,2723
264
+ spire/presentation/collections/MasterSlideCollection.py,sha256=f_FwBV1lAaILGs22DqZpOjgNNVhsmtZlDZTRX1Z44MQ,1425
265
+ spire/presentation/collections/MasterSlideList.py,sha256=4bS6tigMRy1El3THVS9FpLfVLBzQ-fnqLbq8a48Hpdc,4770
266
+ spire/presentation/collections/OleObjectCollection.py,sha256=_sLvj7fH9rKxGv4lsM4JyCDaznkO1USfP-CqnGWYPMo,4449
267
+ spire/presentation/collections/OleObjectProperties.py,sha256=mZCOyTtH5WzIJImi-ECnluIOOzSuaKIO4S4CKQz-1vs,5626
268
+ spire/presentation/collections/ParagraphCollection.py,sha256=os64bd6kIE03NWCdlVBSMsQQl139IT98N4OzTe6jkd8,3472
269
+ spire/presentation/collections/ParagraphList.py,sha256=y-mx5uCHlUNecVPuJepo4N1pBsjp2sWpdqQpsiArez8,6955
270
+ spire/presentation/collections/ShapeAdjustCollection.py,sha256=1W8tpj8y3dnk7iA-2HorzIIfEkkxR878_kkPt1y52u4,2120
271
+ spire/presentation/collections/ShapeAdjustmentList.py,sha256=HmZ7cgYCMmpbLr3_ZpMGW1uQ8hfBByeUxSOGV3x5j4Q,1425
272
+ spire/presentation/collections/ShapeList.py,sha256=Su2pAGqAwjuBwS-jsY8pszUyYaQpwkQxDRkpaCRMsEs,41798
273
+ spire/presentation/collections/SlideCollection.py,sha256=cPNE-UzGXLp8MT5MzzI2cSUtW2sief_Y6mi-M8WK1nk,1963
274
+ spire/presentation/collections/SlideColorSchemeCollection.py,sha256=WAu5QvAht-fouAWNuzop0_2dg_nqzySWvgc-RGiOyMA,4275
275
+ spire/presentation/collections/TabStopCollection.py,sha256=-8hWeAtDk3-S2EuPpUwKu5-fFHNnVCso-U2PT6-eALM,2000
276
+ spire/presentation/collections/TabStopList.py,sha256=p5jzgEOYLXRKrRBsNbUOsOMGM7Bu5cVfTZo15hp6f0s,4112
277
+ spire/presentation/collections/TagCollection.py,sha256=lpXzBVkmKK6TVNKuUvO0u7sd63OPpnhVJ8JRTHdbpFs,1898
278
+ spire/presentation/collections/TagList.py,sha256=tQ7RVBUbEHoIZtgpw6EAw8tTEBDEQTUZR4duChYYtRI,5267
279
+ spire/presentation/collections/TextLineFormatCollection.py,sha256=B9MHsAUMsvl9zW0ODq806PF8ewJc3FzbYACw9N_TG00,1536
280
+ spire/presentation/collections/TextLineFormatList.py,sha256=IgnYqLxkeVWjqRn3m8A4s5NAFihniw1jJNPcw-3i7_o,2128
281
+ spire/presentation/collections/TextRangeCollection.py,sha256=yapIxPtxO8Tn1A0XBHCd-PFHDi7F5Mbut_QproN72JY,2110
282
+ spire/presentation/collections/TextRangeList.py,sha256=HOfwQAAZjQPNKwSFqXaRAEp8JzkexdQhDbtVUhCPCZI,4865
283
+ spire/presentation/collections/VideoCollection.py,sha256=3rJEDBBcKoo-c41Gly3TY8hiP6KHs8OHOU0BvEXZJRw,3681
284
+ spire/presentation/collections/WavAudioCollection.py,sha256=LO_REzUmZokXV7HA65Xh9lQvmHR_EYIF0oiI0gqR2UA,3661
285
+ spire/presentation/collections/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
286
+ spire/presentation/common/Boolean.py,sha256=Gg9BuhmYb0mU10Qypjcotmi6y8eYNkkL7ZVNWJXNvXM,5019
287
+ spire/presentation/common/Byte.py,sha256=HPugnfUOmO41y-YJA6dZwoF3b8-c57M6zAGWbqT0J48,6567
288
+ spire/presentation/common/Char.py,sha256=86CbXciZ9KQqoD0LwEmdZjk22w7X1_rVHp-kvYT1QRw,17817
289
+ spire/presentation/common/Color.py,sha256=uYBsLKFbdqYF7PXuRzB8x6qjPEwjxIqNsrAhk8ZmGdc,55510
290
+ spire/presentation/common/Common.py,sha256=nXeuE9Blcv7Rd0JlAB9UQGWFiMJpf6QAmkFWAHrfmeA,5174
291
+ spire/presentation/common/CultureInfo.py,sha256=nwFgmdhTMCOGauGKNoNdaNY3660-WpKh49aFExRuWxA,16924
292
+ spire/presentation/common/DateTime.py,sha256=RKIQPDAtr4O9Y3G10MIkfI2vPNyqhT7N_adNcvjDooo,33867
293
+ spire/presentation/common/Double.py,sha256=CpQg0MScflfa8YE9bDotLBaS75vJEu9AGDgUkXf6O4U,11578
294
+ spire/presentation/common/EmfType.py,sha256=xQSrQ2suaN8NnV-S6xRmi_nQZhqhdc3CfGU8XYkWLrw,627
295
+ spire/presentation/common/Encoding.py,sha256=j9n4ng3N0N0YQbxgrNW3cW9w091dVEIXPFnljhTeaCQ,28339
296
+ spire/presentation/common/FontStyle.py,sha256=YC-j5qLDf9A_q7RqRYw7SHLmqRCjWnnppFtZTT33bWI,655
297
+ spire/presentation/common/GraphicsUnit.py,sha256=okBnR-Rg5Plg9T5yU29P94myOUE3ykU1pg9T2Hhcgnw,687
298
+ spire/presentation/common/ICollection.py,sha256=OfqKypHDwwgDGZMwQ7dho-63DZosQn82wjD5fCbhSuU,2156
299
+ spire/presentation/common/IDictionary.py,sha256=Ll9QjoHss2h1-CJJbEq-dNdTsJrTE23XOkj2-_dknN4,2014
300
+ spire/presentation/common/IEnumerable.py,sha256=l-bxpSofSo5DplJI1GQDFl3Xm1WM8VDx2H-96nH7dhQ,1426
301
+ spire/presentation/common/IEnumerator.py,sha256=kwwgAZkTXzaChJ84-xz3JvvB8277M8AHK3k-EKyyWlQ,1713
302
+ spire/presentation/common/IList.py,sha256=2vSsYwQVcQywFqmISDHC6aBmjoYbyifWA9pE0G5Nr90,4050
303
+ spire/presentation/common/Int16.py,sha256=IU-1d63XdDPRgL1DaUS_SGDXwdbNqMjCM9JqDlQMtb0,7121
304
+ spire/presentation/common/Int32.py,sha256=W9IAGGw2aVkgja-vPy-AvvCMc2xN3ww6x__5Uq0B88s,7527
305
+ spire/presentation/common/Int64.py,sha256=hf_Pl3gYPgUoSYTmbjE7F5faIIxejyp7cxsCEv_UqK4,6627
306
+ spire/presentation/common/License.py,sha256=i0tArKy5F-s5uMlsqI_xi-P6w2ZqRnRVCa2plpzUiBc,8689
307
+ spire/presentation/common/PixelFormat.py,sha256=_h4oLppoWjPqFTtPsQzACFTG9vo28iggtKRdrECsDeo,1196
308
+ spire/presentation/common/Point.py,sha256=fOpUybylgCqdJNvQcyQq9x8z1-hHJ8FooNn4I5KWU7g,7921
309
+ spire/presentation/common/PointF.py,sha256=g4kTwcHHlB-bGzC4mKkmXZOvtpALy_kVPJ7IErMh8XY,7572
310
+ spire/presentation/common/Rectangle.py,sha256=OOyoiCGZuoFbW8mXlnqygPgiixDwF-4GAtXsyxjtBj8,12335
311
+ spire/presentation/common/RectangleF.py,sha256=CRdweThcLeoz9hnSyTFSK5FoPKkEPtYhanq4nd1oOw0,12497
312
+ spire/presentation/common/Regex.py,sha256=G7-W5IIm1sWwbTcikUR__0p8OIeWPzRqKzahHoCqWuI,33605
313
+ spire/presentation/common/RegexOptions.py,sha256=UDAXOOMJB0b-FqCmOwOFaydf3a8BG-C_L_XUGtFvmzI,771
314
+ spire/presentation/common/Single.py,sha256=AUBq25j3wtaFjPgO5Vlg4mP-9KBw_8XwTsRtmhKkkYs,10848
315
+ spire/presentation/common/Size.py,sha256=kBRZRJtFimWxgcyvJVJDnE5BRTITdZfB2PY0h9TBbhg,7205
316
+ spire/presentation/common/SizeF.py,sha256=D2O9MvpH2xrsbS_XV5y8Hocb_PKG8aOgAc8hTK_tdns,7302
317
+ spire/presentation/common/SpireObject.py,sha256=ePvUecLN97Vn2J6rHwgXIKdWbBvyGSl0QYQbexeLCk8,2161
318
+ spire/presentation/common/Stream.py,sha256=EbJZRC9iFZ2oE3S-y1QgrVeJKN1WygswRoIqFyf4o0U,17377
319
+ spire/presentation/common/String.py,sha256=tysKd7tPb8CtRHvaHYL2DstuwWKM_zDs_enETqFTgVs,55057
320
+ spire/presentation/common/TimeSpan.py,sha256=NjKzlpCPrHvfIaK8fu0Ipcjr_eUWbR9rs5NbUDh3_-Q,25799
321
+ spire/presentation/common/UInt16.py,sha256=yFB9ZzaFmXDx9yUH28t6MDeFAyRNoM5EhN3eU1aaRL0,7192
322
+ spire/presentation/common/UInt32.py,sha256=DYsKvxrI7J-0ppCzPM5SCeP5rTszqUqdTPcjiwc26IU,7192
323
+ spire/presentation/common/UInt64.py,sha256=cHaKw1n6DHkxngz62YPdksXxFSJPotiGEC-Q9qWnLMg,7192
324
+ spire/presentation/common/__init__.py,sha256=bNRHgxUN12PGcC5IQBvqKPlFkmSu2fdc7e0qzd7Vz8E,17132
325
+ spire/presentation/diagrams/ISmartArt.py,sha256=q3OjbqNEJER1YQXCGCb_wRsFoB9VMp0JmpSulk6zq8Y,4987
326
+ spire/presentation/diagrams/ISmartArtNode.py,sha256=c1asUPIf3NeRolvYzHRfWAkadcaFqVavsO1VLrZ52M4,12408
327
+ spire/presentation/diagrams/ISmartArtNodeCollection.py,sha256=fMrc1qdzJUHKNNhOuKEOqu93rmvr9PPHvrHv9i-MsE8,6963
328
+ spire/presentation/diagrams/SmartArtColorType.py,sha256=JOWZbH1PKzADBwYEC2oRCEl_AfKxsgCxga9HwV-8wAc,1543
329
+ spire/presentation/diagrams/SmartArtLayoutType.py,sha256=Zon9i44TatD8Vmq6l5ieR3-9m9jGNjuq9Ewc8AAmZv0,2533
330
+ spire/presentation/diagrams/SmartArtStyleType.py,sha256=AV5M2Y29mPDmx_VdO9wsAWWmpOV54rKEnUV4OHrTe_0,1259
331
+ spire/presentation/diagrams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
332
+ spire/presentation/drawing/Backdrop.py,sha256=l7b97hBoAosIFJ76KF_8f_mZCr8hjoWY9mPtDR0oarY,3646
333
+ spire/presentation/drawing/BackgroundType.py,sha256=GZZxl0vvauSLAs79XC9PREZ1eUPAxKT0RL8Umlv_80w,548
334
+ spire/presentation/drawing/BevelColorType.py,sha256=GyXksPCIejsjUUeYOMBSk7c6clk8bYx8utTbCUeMrD4,523
335
+ spire/presentation/drawing/BevelPresetType.py,sha256=A2PW7modFjyBkEWdyyHZpfdfSYXEXL1kAuwMFSBikSk,1283
336
+ spire/presentation/drawing/BlackWhiteMode.py,sha256=DcfqWIu5a_PDjJd1fnwOHPgyTGcVztVv68YAV0WAHPU,1274
337
+ spire/presentation/drawing/BlendEffect.py,sha256=gHyH5C_N3Vj-gbYKYSVISc1YzzmSFFpf7KIs744qlwQ,2188
338
+ spire/presentation/drawing/BlendMode.py,sha256=7AwxyBflaDZygF4yZqYAdVASCUGYcMM7jkLGh5qikF4,751
339
+ spire/presentation/drawing/BlurNode.py,sha256=aXzaWua93BhBKS7tITzzTAQt9yHpFGq1Y5TOy9a0TMo,1057
340
+ spire/presentation/drawing/ColorFormat.py,sha256=_ZqJo8GZBpts7uqPDZHZ3L7YO0OAVA7EoLG_N6JzSaU,10817
341
+ spire/presentation/drawing/ColorScheme.py,sha256=0ICR09Odp4sDzIBNdJJ84vgYEIDTV7RimpPtEvJWtUs,8540
342
+ spire/presentation/drawing/ColorSchemeIndex.py,sha256=AO5l3iufuH-nmnfntYAsT7_Y7Wao_nFq4ncNSaTa8R4,526
343
+ spire/presentation/drawing/ColorType.py,sha256=quYj1mL4IlsFCruLiRY8K63gsql_pQkJO3umGr3SqRI,822
344
+ spire/presentation/drawing/EffectDag.py,sha256=YvCTUfNZt-hdpcj9JLZ-NTd06cKKjNkdM0fq40x3EFE,7499
345
+ spire/presentation/drawing/EffectFillType.py,sha256=yAkDvcZkIl_VcPFARJz6sqSpv-AqhBBfF7ssZ0QXDOE,738
346
+ spire/presentation/drawing/EffectNode.py,sha256=SmRpXJP2wKF-SMeZdKJ3zp5Na4HE-vv0LsuipCpsACM,335
347
+ spire/presentation/drawing/EffectStyle.py,sha256=Z69q3yRIYB-aLgdIIpglAVuqMPYgjP-xI_kqlUeYZyg,2115
348
+ spire/presentation/drawing/ExtensionList.py,sha256=CyIPx1BOc8DhqIA9E9fJS-d44Yki1mRCryIRBiB_2D8,790
349
+ spire/presentation/drawing/FillFormat.py,sha256=bir_W7zWOgZkGBqKyltAD7OHJZrmu4N5uAldFOS-Ds0,6352
350
+ spire/presentation/drawing/FillFormatType.py,sha256=nkmDBgh7aXhktj_9aQvB5n1p1Mp7eHjra9l9R7ft_wI,912
351
+ spire/presentation/drawing/FillOverlayEffect.py,sha256=VDJYiPk1PfTHT1TY28L15-OsnHN5A5nB-Eq8v_nWMKs,3011
352
+ spire/presentation/drawing/FormatScheme.py,sha256=AXidHhO8ewddiSFnNWuJxo-w8KG_P9vsICBK_c4RvSE,4328
353
+ spire/presentation/drawing/FormatThreeD.py,sha256=q-DUqOKhuu_PAvkP35sPjf68wHRT4OV32wykq5-JZF4,3316
354
+ spire/presentation/drawing/GlowEffect.py,sha256=N7qm30HgumW_qHAgcu1OTuVTU6JlUlANIoWvP99XlLs,2460
355
+ spire/presentation/drawing/GlowNode.py,sha256=67ch8jPFidR0Cx8xRckyodiazNLYjMiEnlgcEn1Q7w4,1150
356
+ spire/presentation/drawing/GradientFillFormat.py,sha256=FVSJBouC7Ku_HbEtrYJ5Icpps6rjKf9cRRCQP9Xr2o4,5192
357
+ spire/presentation/drawing/GradientShapeType.py,sha256=844PRY3_syl8gmzMMzxFUXkKOTZFRTxh50njOX3qB9I,720
358
+ spire/presentation/drawing/GradientStop.py,sha256=7et0EpwVCWaSMuN9VI9Dm0U9PgMl_FfxdUBMIiKuUzw,1341
359
+ spire/presentation/drawing/GradientStopData.py,sha256=TAZsU23hUai5XjK2PLCp8CFxhgyHni4xVoTzWk7GXHw,1108
360
+ spire/presentation/drawing/GradientStyle.py,sha256=nij_R0skMfPbAaw72q_qR2oOcfbhdJAQmO-uoqjrc2Y,793
361
+ spire/presentation/drawing/GraphicFrame.py,sha256=MULQ6CgPc7Gr6dV8N8GYJqjIapS3xlx_kzZkoLkP5Bo,7626
362
+ spire/presentation/drawing/GraphicalNodeLocking.py,sha256=QFQs-GEj1E6CTnan9X-fN61ees5Bo6-lYie0R1Fesk0,5400
363
+ spire/presentation/drawing/IImageData.py,sha256=HLRG_b_2B9uH720Hxshu8JT9P26w-8xiPqwo1zWIUK4,3294
364
+ spire/presentation/drawing/ImageTransform.py,sha256=nIFM-uFX3lMeAwJg6GhwADjHDAEAnb91wutJNJrcx08,4590
365
+ spire/presentation/drawing/ImageTransformBase.py,sha256=TDVlWDovkz0Wg5PqwHlvhlN0XL4H8Yu3gW-Xw-Ki_1A,328
366
+ spire/presentation/drawing/InnerShadowEffect.py,sha256=R4v5asncMht7mL1ihi37iFuVZp_P6bowKYk40WOnHZs,3629
367
+ spire/presentation/drawing/InnerShadowNode.py,sha256=iU9ucd40Va8LDkulRSIrys94_1FwbJIa4jogISZd52c,1943
368
+ spire/presentation/drawing/OuterShadowEffect.py,sha256=gUWdW0xNz9zgnFn7-DVkXXJ4npocYc1ekUZEC82EgZA,8938
369
+ spire/presentation/drawing/OuterShadowNode.py,sha256=OldMi-g8dexyr1rzkIRE58XgDQLgsqpKFuK-zWlGEeo,5796
370
+ spire/presentation/drawing/PatternFillFormat.py,sha256=tBS7GnbUooiCTdhZ6gEPZtXik_iimalt93oEMq8NCio,4000
371
+ spire/presentation/drawing/PatternFillType.py,sha256=mx5zWBulIwj77Wd_S_rmzdvQQaqF8M4AYpP0WzK6uNY,4236
372
+ spire/presentation/drawing/PenAlignmentType.py,sha256=f0Ft1qxfOZCDPN9OsVNhj5rSwFFseECjFD_GoOOSQMI,556
373
+ spire/presentation/drawing/PictureData.py,sha256=vsNw9lE81GYxgjHLcHNqT28mAFxRwYVF8fJ4YW1uLFk,1972
374
+ spire/presentation/drawing/PictureFillFormat.py,sha256=fWmisMti0VdqjkTFr3-yk94BRxpz1bKB9pVBQkTwOGI,9723
375
+ spire/presentation/drawing/PictureFillType.py,sha256=U3rCBT943HuDR15q596mwDsEFxp7u_OmxB7_c4Ge4FA,526
376
+ spire/presentation/drawing/PresetShadow.py,sha256=Rgm1t1MOkYQhUKvIE52r7zXrm5_U-1Hcyf3-QBiCViE,4110
377
+ spire/presentation/drawing/PresetShadowNode.py,sha256=I9DHXIGsmjl2y_ejBUhHDMT-AXMcJvP-lKlp6QGF-fg,2472
378
+ spire/presentation/drawing/ReflectionEffect.py,sha256=ADUPR7FC7WkakR6k3E6QY1flFk51-YMIQOrhgE6wFKg,12080
379
+ spire/presentation/drawing/ReflectionNode.py,sha256=6muFW3HfkL7UxBlSpxiVzmMXx_2Lga20MFy_4NysEJE,7028
380
+ spire/presentation/drawing/SchemeColor.py,sha256=H58m_lq1XGBcD55rNYsPXPlcDhSZZA_KP82Dk1HxViw,728
381
+ spire/presentation/drawing/SoftEdgeEffect.py,sha256=d1GqV5azhEt-4813MLMA_mpD8HXBzmuvGI4sF0PIu-M,1672
382
+ spire/presentation/drawing/SoftEdgeNode.py,sha256=0SVes7ylqn3oyJtCXG_AX3LXXX9DQSw8ywFJh1k5x58,802
383
+ spire/presentation/drawing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
+ spire/presentation/export/PdfConformanceLevel.py,sha256=iNVP9RN4VXVDVwxAOzAPuzs9WXLJ3GE1YqmuHUAkLXg,858
385
+ spire/presentation/export/SaveToHtmlOption.py,sha256=1mDngk1O2_k7jKZbXN27EnqFalDwYRKl84gG-G4Isqs,1250
386
+ spire/presentation/export/SaveToPdfOption.py,sha256=PkxL8bPShaERYGbY-XQnUkZfjrk7Ni3kcHT5RQH_H4A,4211
387
+ spire/presentation/export/SaveToPptxOption.py,sha256=HH723owAGZVdjXxsSh3jfPlFxiQqU8feKfez9x189yE,1335
388
+ spire/presentation/export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
+ spire/presentation/lib/Spire.Presentation.Base.dll,sha256=22t3IuCDaLfPILSjNdaEQN66Nv6J_SWMzvo17E6vuO0,51963904
390
+ spire/presentation/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
391
+ spire/presentation/lib/libSkiaSharp.dll,sha256=BD0b-JGZXN5fxQ4aB1J_cy8nWQjGBDvS9nZl7ZYtHY4,9605176
392
+ spire/presentation/license/LicenseProvider.py,sha256=QpViN9GBtS7mJAbPKofLYK_E9ihOBs-PFP-imq0w1Eo,3876
393
+ spire/presentation/license/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
394
+ spire/presentation/table/Cell.py,sha256=yXOm2EQjyPiECoPHow3Q3hS387feCAdnxw2EPvMkuoY,16363
395
+ spire/presentation/table/CellCollection.py,sha256=4v1011tztXQpY1BKI7xMeee8ynfWXMog8qaD2WNkDyU,5377
396
+ spire/presentation/table/ColumnCollection.py,sha256=GSRpd6i7F81EMoVLBzjXwQYUpp1KzuWzeDVO7xabiP8,1457
397
+ spire/presentation/table/ColumnList.py,sha256=Zma81sSu-fwQRJ7bcEOnbiPQ2BXA8rpLS8dF-klsr54,4073
398
+ spire/presentation/table/ITable.py,sha256=I21AUNol2ph7Gayt5VPefCgRR2XdjRf45BftNOVp7G4,24062
399
+ spire/presentation/table/RowList.py,sha256=cMjXkeKhFWB0Sm1K4wDeSZg_0HB_CueCx1kT1vWL64g,4178
400
+ spire/presentation/table/TableBorderType.py,sha256=Bz7SKEaWRmUU36tPx85hw3n_lk2WNUUBZ3TrgqRrNtw,1059
401
+ spire/presentation/table/TableColumn.py,sha256=Hj8MyAdyqpuScn_2TrbNVmGCQLskXAQYmN_Uz7MbU-s,1248
402
+ spire/presentation/table/TableRow.py,sha256=xP24TnM7rUG2uwr6dYuAE1rpzDnN12cftdS-Bn1aVvg,1246
403
+ spire/presentation/table/TableRowCollection.py,sha256=RWhxAJKKQpMjvPR8oX5GaToJLKCQuEPvCgLXxEJVRWI,1615
404
+ spire/presentation/table/TableStylePreset.py,sha256=YwcoVgSNtUT7tgV93TwCs0O7t9iAwdOuVjocmhNRuBc,2446
405
+ spire/presentation/table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
406
+ spire/presentation/transition/BlindsSlideTransition.py,sha256=HVJ-MFv_Bd0dDLnzw3Ibs6WsTiLGcyb7odO7ZpvPI-4,1675
407
+ spire/presentation/transition/CoverSlideTransition.py,sha256=51szAibdoqlQ8EBViPMTdnEVHPc-6LiWmoGi9m8Pqjs,2047
408
+ spire/presentation/transition/FlythroughTransition.py,sha256=F6xe1FvDSQBCzjCe0hibyVvUNW1UtEkAJ27qJeKo_LI,1806
409
+ spire/presentation/transition/GlitterTransition.py,sha256=cagNBHvD12B-2nSHUHNYZohCRUpgetoNt9mGblr5jQw,1782
410
+ spire/presentation/transition/GlitterTransitionDirection.py,sha256=GiPRCtkESUgeD6b5E14gGCF27n-5ZDDUSrjTjcmMqEA,1120
411
+ spire/presentation/transition/InvXTransition.py,sha256=F7hewrxef38Kt_w69Raf8AR54qttGmvDubvrP7-jD1E,1634
412
+ spire/presentation/transition/LRTransition.py,sha256=C4W996vrTcavKfpbJB3BH3MsMlfpekUYIawr8GcGJco,1698
413
+ spire/presentation/transition/OptionalBlackTransition.py,sha256=i7yceoOFHjB828hsRrrVyXyQYiG42YAb44R0-kkaosA,2057
414
+ spire/presentation/transition/RevealTransition.py,sha256=Sg8EPTq_oySpBRUkWXunqKgeVh1MIm6kiOsTJvZGTVQ,1832
415
+ spire/presentation/transition/ShredTransition.py,sha256=4fiWivtcnh-d4M6_ug5c6xQ017uEcMf-JW0X5_-UXlU,1792
416
+ spire/presentation/transition/SideDirectionTransition.py,sha256=whZqPd0zN8vYk6VX5BK7izSFDGWCjBTNOd8_76A16LY,1885
417
+ spire/presentation/transition/SlideShowTransition.py,sha256=MyUeNSRwgtSWC3-4fhX5OzyCx4ALG9xYzvjTW8qT794,10506
418
+ spire/presentation/transition/SplitSlideTransition.py,sha256=iIAbKOa9-eHOIHtY2ULaiJTmhiC9pXlbhsUvo8b_umk,1987
419
+ spire/presentation/transition/StripsSlideTransition.py,sha256=pwXt_q4f07DHx5OY6ApnMlVb7vpbdD5TPTSBGV2_0AY,1861
420
+ spire/presentation/transition/Transition.py,sha256=pvmyuhkXoMFkyCCkaABlWf4DEq_ZYheYH992TfgSmB8,1004
421
+ spire/presentation/transition/TransitionCornerDirection.py,sha256=lT5d8qu-EYhSaQh6AP9yGMmZeqsczCerfeSdO99pKag,700
422
+ spire/presentation/transition/TransitionDirection.py,sha256=NLHyHz2r9dhl1W4g3zYKW5vAxxmZrZXey3kam-5LIQA,542
423
+ spire/presentation/transition/TransitionEightDirection.py,sha256=Tfamc8elDjxBjrX4WczBK_nkTuUKdvIW2VN3Wxn2v7M,945
424
+ spire/presentation/transition/TransitionFlythroughInOutDirection.py,sha256=bTLnB2YRdwuXtL5bSam-TFhjD7mLQ5Q7kdsXe-gpEH0,620
425
+ spire/presentation/transition/TransitionInOutDirection.py,sha256=hsvnAIbPZH-Prd1yW98ACQCt3DTmAnhkn288MDB5PNU,525
426
+ spire/presentation/transition/TransitionRevealLRDirection.py,sha256=otDKAy_8cMtP2kcn1YilzMR8rOCL1vxShmu_TMOQSvU,783
427
+ spire/presentation/transition/TransitionShredInOutDirection.py,sha256=J9Z9FixrHmxFE8jbGPyDLIH5UBfn3QIleLf1y0CcMw0,700
428
+ spire/presentation/transition/TransitionSideDirectionType.py,sha256=dd7NfQPNLAIFE3p2GQI6ejDAe9Wb5LnuQ_UEi8jfJRU,598
429
+ spire/presentation/transition/TransitionSoundMode.py,sha256=zVMs0wEWn0VSRjubhEpNIJZW0gGVsYqOvHJIffRgeQ0,558
430
+ spire/presentation/transition/TransitionSpeed.py,sha256=Cvd4--BMSqtraVrdyUgU5gYdCAigxc2N2n8Q95lpTJ8,569
431
+ spire/presentation/transition/TransitionSplitDirection.py,sha256=4_nCGfMBCllxKM4MBh8K8SMdK0I8QedbHZ9uLieKmNM,616
432
+ spire/presentation/transition/TransitionTwoDirection.py,sha256=f2w5lq8bu5j1Vk5D6ymyukgrH7enuaLyC5DD89f8EkA,453
433
+ spire/presentation/transition/TransitionType.py,sha256=FbT_ielNzyC38DX4hhW_F_U4m4F7auBEQrP3t7e5Pno,3698
434
+ spire/presentation/transition/WheelSlideTransition.py,sha256=pUqoBn6UWHqe-tooylTK-_DgLDTVJ5QIFFAm8cWRSRY,1628
435
+ spire/presentation/transition/ZoomSlideTransition.py,sha256=j-SsuVpYhfMZjhdpsgIdBlO0ugf94ODeOs3VVpYn8Zw,1773
436
+ spire/presentation/transition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
437
+ spire_presentation-10.7.1.dist-info/METADATA,sha256=xQ8Grv1rgTcH_w2B2Q7E_XDOLRMEzUZjo8lf8tZ1ZsQ,8552
438
+ spire_presentation-10.7.1.dist-info/WHEEL,sha256=AiyVnrmrEuW_cPqhPlarzpb5qtD8ITcBeZKvhXXgyN4,98
439
+ spire_presentation-10.7.1.dist-info/top_level.txt,sha256=WxTypv85IOx5WpDWDS_HpIgu5l722KWSil7EHZwF08M,6
440
+ spire_presentation-10.7.1.dist-info/RECORD,,
@@ -1,16 +0,0 @@
1
- from enum import Enum
2
- from plum import dispatch
3
- from typing import TypeVar,Union,Generic,List,Tuple
4
- from spire.presentation.common import *
5
- from spire.presentation import *
6
- from ctypes import *
7
- import abc
8
-
9
- class AnimateType(Enum):
10
- """
11
-
12
- """
13
- All = 0
14
- Word = 1
15
- Letter = 2
16
-
@@ -1,65 +0,0 @@
1
- from enum import Enum
2
- from plum import dispatch
3
- from typing import TypeVar,Union,Generic,List,Tuple
4
- from spire.presentation.common import *
5
- from spire.presentation import *
6
- from ctypes import *
7
- import abc
8
-
9
- class AnimationEffectSubtype(Enum):
10
- """
11
- <summary>
12
- Represents subtypes of animation effect.
13
- </summary>
14
- """
15
- none = 0
16
- Across = 1
17
- Bottom = 2
18
- BottomLeft = 3
19
- BottomRight = 4
20
- Center = 5
21
- Clockwise = 6
22
- CounterClockwise = 7
23
- GradualAndCycleClockwise = 8
24
- GradualAndCycleCounterClockwise = 9
25
- Down = 10
26
- DownLeft = 11
27
- DownRight = 12
28
- FontAllCaps = 13
29
- FontBold = 14
30
- FontItalic = 15
31
- FontShadow = 16
32
- FontStrikethrough = 17
33
- FontUnderline = 18
34
- Gradual = 19
35
- Horizontal = 20
36
- HorizontalIn = 21
37
- HorizontalOut = 22
38
- In = 23
39
- InBottom = 24
40
- InCenter = 25
41
- InSlightly = 26
42
- Instant = 27
43
- Left = 28
44
- OrdinalMask = 29
45
- Out = 30
46
- OutBottom = 31
47
- OutCenter = 32
48
- OutSlightly = 33
49
- Right = 34
50
- Slightly = 35
51
- Top = 36
52
- TopLeft = 37
53
- TopRight = 38
54
- Up = 39
55
- UpLeft = 40
56
- UpRight = 41
57
- Vertical = 42
58
- VerticalIn = 43
59
- VerticalOut = 44
60
- Wheel1 = 45
61
- Wheel2 = 46
62
- Wheel3 = 47
63
- Wheel4 = 48
64
- Wheel8 = 49
65
-