spire-presentation 11.2.0__py3-none-macosx_11_0_arm64.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.
- spire/__init__.py +0 -0
- spire/presentation/ActiveSlide.py +215 -0
- spire/presentation/AppException.py +14 -0
- spire/presentation/AudioCD.py +85 -0
- spire/presentation/AudioPlayMode.py +23 -0
- spire/presentation/AudioVolumeType.py +25 -0
- spire/presentation/BaseShapeLocking.py +25 -0
- spire/presentation/Camera.py +127 -0
- spire/presentation/ClickHyperlink.py +476 -0
- spire/presentation/Comment.py +214 -0
- spire/presentation/ConnectorLocking.py +14 -0
- spire/presentation/DefaultTextRangeProperties.py +526 -0
- spire/presentation/Direction.py +19 -0
- spire/presentation/Field.py +57 -0
- spire/presentation/FieldType.py +282 -0
- spire/presentation/FileFormat.py +64 -0
- spire/presentation/FontAlignmentType.py +27 -0
- spire/presentation/FontCollectionIndex.py +21 -0
- spire/presentation/FontScheme.py +78 -0
- spire/presentation/FormatAndVersion.py +73 -0
- spire/presentation/GroupShape.py +73 -0
- spire/presentation/GroupShapeLocking.py +122 -0
- spire/presentation/HyperlinkActionType.py +47 -0
- spire/presentation/IActivePresentation.py +29 -0
- spire/presentation/IActiveSlide.py +27 -0
- spire/presentation/IAudio.py +608 -0
- spire/presentation/IAudioData.py +63 -0
- spire/presentation/IAutoShape.py +622 -0
- spire/presentation/ICommentAuthor.py +119 -0
- spire/presentation/IDigitalSignature.py +72 -0
- spire/presentation/IDigitalSignatures.py +34 -0
- spire/presentation/IDocumentProperty.py +533 -0
- spire/presentation/IEmbedImage.py +546 -0
- spire/presentation/ILayout.py +143 -0
- spire/presentation/IMasterSlide.py +281 -0
- spire/presentation/INoteMasterSlide.py +179 -0
- spire/presentation/IOleObject.py +661 -0
- spire/presentation/IShape.py +670 -0
- spire/presentation/ISlide.py +826 -0
- spire/presentation/ITextFrameProperties.py +566 -0
- spire/presentation/IVideo.py +809 -0
- spire/presentation/ImportDataFormat.py +21 -0
- spire/presentation/InsertPlaceholderType.py +22 -0
- spire/presentation/KnownColors.py +155 -0
- spire/presentation/LightRig.py +112 -0
- spire/presentation/LightingDirectionType.py +24 -0
- spire/presentation/LineCapStyle.py +23 -0
- spire/presentation/LineDashStyleType.py +41 -0
- spire/presentation/LineEndLength.py +23 -0
- spire/presentation/LineEndType.py +29 -0
- spire/presentation/LineEndWidth.py +23 -0
- spire/presentation/LineFillFormat.py +142 -0
- spire/presentation/LineJoinType.py +23 -0
- spire/presentation/LineText.py +48 -0
- spire/presentation/LinearGradientFill.py +64 -0
- spire/presentation/LocaleFonts.py +113 -0
- spire/presentation/MasterTheme.py +92 -0
- spire/presentation/MetaCharacterType.py +27 -0
- spire/presentation/NotesSlide.py +98 -0
- spire/presentation/NumberedBulletStyle.py +56 -0
- spire/presentation/OleObject.py +128 -0
- spire/presentation/Order.py +16 -0
- spire/presentation/PageSlideCount.py +20 -0
- spire/presentation/ParagraphProperties.py +632 -0
- spire/presentation/PictureShape.py +124 -0
- spire/presentation/Placeholder.py +101 -0
- spire/presentation/PlaceholderSize.py +23 -0
- spire/presentation/PlaceholderType.py +49 -0
- spire/presentation/PptObject.py +39 -0
- spire/presentation/Presentation.py +1389 -0
- spire/presentation/PresetCameraType.py +76 -0
- spire/presentation/PresetLightRigType.py +61 -0
- spire/presentation/PresetMaterialType.py +47 -0
- spire/presentation/PresetShadowValue.py +36 -0
- spire/presentation/RectangleAlignment.py +25 -0
- spire/presentation/RelativeRectangle.py +207 -0
- spire/presentation/Section.py +187 -0
- spire/presentation/SectionList.py +197 -0
- spire/presentation/Shape.py +631 -0
- spire/presentation/ShapeAdjust.py +65 -0
- spire/presentation/ShapeAlignment.py +34 -0
- spire/presentation/ShapeArrange.py +26 -0
- spire/presentation/ShapeBevelStyle.py +89 -0
- spire/presentation/ShapeCollection.py +75 -0
- spire/presentation/ShapeElementFillSource.py +29 -0
- spire/presentation/ShapeElementStrokeSource.py +21 -0
- spire/presentation/ShapeLocking.py +43 -0
- spire/presentation/ShapeNode.py +99 -0
- spire/presentation/ShapeStyle.py +221 -0
- spire/presentation/ShapeThreeD.py +201 -0
- spire/presentation/ShapeType.py +202 -0
- spire/presentation/SimpleShapeBaseLocking.py +223 -0
- spire/presentation/SlideBackground.py +169 -0
- spire/presentation/SlideColorScheme.py +61 -0
- spire/presentation/SlideLayoutType.py +87 -0
- spire/presentation/SlideList.py +355 -0
- spire/presentation/SlideOrienation.py +19 -0
- spire/presentation/SlidePicture.py +97 -0
- spire/presentation/SlidePictureLocking.py +39 -0
- spire/presentation/SlideShowType.py +21 -0
- spire/presentation/SlideSize.py +121 -0
- spire/presentation/SlideSizeType.py +49 -0
- spire/presentation/SystemColorType.py +46 -0
- spire/presentation/TabAlignmentType.py +20 -0
- spire/presentation/TabData.py +61 -0
- spire/presentation/TabStop.py +88 -0
- spire/presentation/TextAlignmentType.py +27 -0
- spire/presentation/TextAnchorType.py +31 -0
- spire/presentation/TextAutofitType.py +23 -0
- spire/presentation/TextBulletType.py +25 -0
- spire/presentation/TextCapType.py +23 -0
- spire/presentation/TextCharacterProperties.py +662 -0
- spire/presentation/TextFont.py +106 -0
- spire/presentation/TextHighLightingOptions.py +83 -0
- spire/presentation/TextHorizontalOverflowType.py +21 -0
- spire/presentation/TextLineFormat.py +403 -0
- spire/presentation/TextLineStyle.py +27 -0
- spire/presentation/TextParagraph.py +132 -0
- spire/presentation/TextParagraphProperties.py +517 -0
- spire/presentation/TextRange.py +160 -0
- spire/presentation/TextShapeType.py +101 -0
- spire/presentation/TextStrikethroughType.py +23 -0
- spire/presentation/TextStyle.py +85 -0
- spire/presentation/TextUnderlineType.py +53 -0
- spire/presentation/TextVerticalOverflowType.py +23 -0
- spire/presentation/Theme.py +119 -0
- spire/presentation/TileFlipMode.py +25 -0
- spire/presentation/TriState.py +17 -0
- spire/presentation/VerticalTextType.py +31 -0
- spire/presentation/VideoData.py +98 -0
- spire/presentation/VideoPlayMode.py +23 -0
- spire/presentation/_Presentation.py +171 -0
- spire/presentation/__init__.py +431 -0
- spire/presentation/animation/AnimateType.py +24 -0
- spire/presentation/animation/AnimationCalculationMode.py +23 -0
- spire/presentation/animation/AnimationColorBehavior.py +146 -0
- spire/presentation/animation/AnimationColorDirection.py +21 -0
- spire/presentation/animation/AnimationColorTransform.py +86 -0
- spire/presentation/animation/AnimationColorspace.py +21 -0
- spire/presentation/animation/AnimationCommandBehavior.py +82 -0
- spire/presentation/animation/AnimationCommandType.py +23 -0
- spire/presentation/animation/AnimationEffect.py +341 -0
- spire/presentation/animation/AnimationEffectCollection.py +178 -0
- spire/presentation/animation/AnimationEffectSubtype.py +164 -0
- spire/presentation/animation/AnimationEffectType.py +466 -0
- spire/presentation/animation/AnimationFilterEffect.py +92 -0
- spire/presentation/animation/AnimationMotion.py +192 -0
- spire/presentation/animation/AnimationMotionOrigin.py +21 -0
- spire/presentation/animation/AnimationMotionPathEditMode.py +21 -0
- spire/presentation/animation/AnimationProperty.py +173 -0
- spire/presentation/animation/AnimationRepeatType.py +21 -0
- spire/presentation/animation/AnimationRestartType.py +23 -0
- spire/presentation/animation/AnimationRotation.py +60 -0
- spire/presentation/animation/AnimationScale.py +121 -0
- spire/presentation/animation/AnimationSet.py +35 -0
- spire/presentation/animation/AnimationTriggerType.py +25 -0
- spire/presentation/animation/BehaviorAccumulateType.py +21 -0
- spire/presentation/animation/BehaviorAdditiveType.py +27 -0
- spire/presentation/animation/CommonBehavior.py +110 -0
- spire/presentation/animation/CommonBehaviorCollection.py +211 -0
- spire/presentation/animation/FilterEffectSubtype.py +70 -0
- spire/presentation/animation/FilterEffectType.py +71 -0
- spire/presentation/animation/FilterEffectsType.py +21 -0
- spire/presentation/animation/FilterRevealType.py +23 -0
- spire/presentation/animation/GraphicAnimation.py +60 -0
- spire/presentation/animation/GraphicAnimationCollection.py +134 -0
- spire/presentation/animation/GraphicBuildType.py +25 -0
- spire/presentation/animation/MotionCmdPath.py +115 -0
- spire/presentation/animation/MotionCommandPathType.py +25 -0
- spire/presentation/animation/MotionPath.py +120 -0
- spire/presentation/animation/MotionPathPointsType.py +33 -0
- spire/presentation/animation/ParagraphBuildType.py +31 -0
- spire/presentation/animation/PropertyValueType.py +23 -0
- spire/presentation/animation/SequenceCollection.py +111 -0
- spire/presentation/animation/TextAnimation.py +81 -0
- spire/presentation/animation/TextAnimationCollection.py +162 -0
- spire/presentation/animation/TimeAnimationValue.py +73 -0
- spire/presentation/animation/TimeAnimationValueCollection.py +54 -0
- spire/presentation/animation/TimeLine.py +78 -0
- spire/presentation/animation/TimeNode.py +62 -0
- spire/presentation/animation/TimeNodeAudio.py +128 -0
- spire/presentation/animation/TimeNodeMedia.py +30 -0
- spire/presentation/animation/TimeNodePresetClassType.py +29 -0
- spire/presentation/animation/TimeNodes.py +109 -0
- spire/presentation/animation/Timing.py +249 -0
- spire/presentation/animation/__init__.py +0 -0
- spire/presentation/charts/AxisPositionType.py +23 -0
- spire/presentation/charts/AxisType.py +21 -0
- spire/presentation/charts/CellRange.py +200 -0
- spire/presentation/charts/CellRanges.py +126 -0
- spire/presentation/charts/ChartAxis.py +828 -0
- spire/presentation/charts/ChartBaseUnitType.py +18 -0
- spire/presentation/charts/ChartCategory.py +40 -0
- spire/presentation/charts/ChartCategoryCollection.py +195 -0
- spire/presentation/charts/ChartCrossesType.py +21 -0
- spire/presentation/charts/ChartData.py +267 -0
- spire/presentation/charts/ChartDataLabel.py +481 -0
- spire/presentation/charts/ChartDataLabelCollection.py +464 -0
- spire/presentation/charts/ChartDataLabelPosition.py +35 -0
- spire/presentation/charts/ChartDataPoint.py +246 -0
- spire/presentation/charts/ChartDataPointCollection.py +75 -0
- spire/presentation/charts/ChartDataTable.py +164 -0
- spire/presentation/charts/ChartDisplayUnitType.py +37 -0
- spire/presentation/charts/ChartEffectFormat.py +76 -0
- spire/presentation/charts/ChartLegend.py +260 -0
- spire/presentation/charts/ChartLegendPositionType.py +27 -0
- spire/presentation/charts/ChartMarkerType.py +39 -0
- spire/presentation/charts/ChartPlotArea.py +150 -0
- spire/presentation/charts/ChartRotationThreeD.py +72 -0
- spire/presentation/charts/ChartSeriesDataFormat.py +600 -0
- spire/presentation/charts/ChartSeriesFormatCollection.py +238 -0
- spire/presentation/charts/ChartShapeType.py +29 -0
- spire/presentation/charts/ChartStyle.py +61 -0
- spire/presentation/charts/ChartTextArea.py +158 -0
- spire/presentation/charts/ChartType.py +95 -0
- spire/presentation/charts/ChartWallsOrFloor.py +114 -0
- spire/presentation/charts/CrossBetweenType.py +20 -0
- spire/presentation/charts/DataLabelShapeType.py +28 -0
- spire/presentation/charts/DisplayBlanksAsType.py +17 -0
- spire/presentation/charts/ErrorBarSimpleType.py +21 -0
- spire/presentation/charts/ErrorValueType.py +25 -0
- spire/presentation/charts/Geography.py +12 -0
- spire/presentation/charts/HistogramAxisFormat.py +26 -0
- spire/presentation/charts/IChart.py +905 -0
- spire/presentation/charts/IChartAxis.py +826 -0
- spire/presentation/charts/IChartEffectFormat.py +87 -0
- spire/presentation/charts/IChartGridLine.py +337 -0
- spire/presentation/charts/IErrorBarsFormat.py +128 -0
- spire/presentation/charts/ITrendlineLabel.py +73 -0
- spire/presentation/charts/ITrendlines.py +285 -0
- spire/presentation/charts/InteriorColorPattern.py +35 -0
- spire/presentation/charts/LayoutProperty.py +124 -0
- spire/presentation/charts/LegendEntry.py +30 -0
- spire/presentation/charts/LegendEntryCollection.py +52 -0
- spire/presentation/charts/PictureType.py +23 -0
- spire/presentation/charts/ProjectionType.py +22 -0
- spire/presentation/charts/QuartileCalculation.py +17 -0
- spire/presentation/charts/TickLabelPositionType.py +23 -0
- spire/presentation/charts/TickMarkType.py +23 -0
- spire/presentation/charts/TreeMapLabelOption.py +21 -0
- spire/presentation/charts/TrendlinesType.py +27 -0
- spire/presentation/charts/__init__.py +0 -0
- spire/presentation/collections/CommentAuthorCollection.py +60 -0
- spire/presentation/collections/CommentAuthorList.py +168 -0
- spire/presentation/collections/CommentCollection.py +44 -0
- spire/presentation/collections/CommentList.py +167 -0
- spire/presentation/collections/EffectDataCollection.py +101 -0
- spire/presentation/collections/EffectStyleCollection.py +73 -0
- spire/presentation/collections/EffectStyleList.py +69 -0
- spire/presentation/collections/EmbedImageList.py +121 -0
- spire/presentation/collections/FillFormatCollection.py +45 -0
- spire/presentation/collections/FillFormatList.py +13 -0
- spire/presentation/collections/FillListBase.py +78 -0
- spire/presentation/collections/FillStyleCollection.py +76 -0
- spire/presentation/collections/FillStyleList.py +32 -0
- spire/presentation/collections/GradientStopCollection.py +40 -0
- spire/presentation/collections/GradientStopDataCollection.py +76 -0
- spire/presentation/collections/GradientStopList.py +171 -0
- spire/presentation/collections/IMasterLayouts.py +78 -0
- spire/presentation/collections/ImageCollection.py +39 -0
- spire/presentation/collections/ImageTransformEffectCollection.py +39 -0
- spire/presentation/collections/LineStyleCollection.py +62 -0
- spire/presentation/collections/LineStyleList.py +79 -0
- spire/presentation/collections/MasterSlideCollection.py +40 -0
- spire/presentation/collections/MasterSlideList.py +140 -0
- spire/presentation/collections/OleObjectCollection.py +120 -0
- spire/presentation/collections/OleObjectProperties.py +154 -0
- spire/presentation/collections/ParagraphCollection.py +90 -0
- spire/presentation/collections/ParagraphList.py +195 -0
- spire/presentation/collections/ShapeAdjustCollection.py +57 -0
- spire/presentation/collections/ShapeAdjustmentList.py +43 -0
- spire/presentation/collections/ShapeList.py +1132 -0
- spire/presentation/collections/SlideCollection.py +56 -0
- spire/presentation/collections/SlideColorSchemeCollection.py +122 -0
- spire/presentation/collections/TabStopCollection.py +57 -0
- spire/presentation/collections/TabStopList.py +127 -0
- spire/presentation/collections/TagCollection.py +58 -0
- spire/presentation/collections/TagList.py +174 -0
- spire/presentation/collections/TextLineFormatCollection.py +43 -0
- spire/presentation/collections/TextLineFormatList.py +61 -0
- spire/presentation/collections/TextRangeCollection.py +60 -0
- spire/presentation/collections/TextRangeList.py +145 -0
- spire/presentation/collections/VideoCollection.py +112 -0
- spire/presentation/collections/WavAudioCollection.py +110 -0
- spire/presentation/collections/__init__.py +0 -0
- spire/presentation/common/Boolean.py +194 -0
- spire/presentation/common/Byte.py +258 -0
- spire/presentation/common/Char.py +742 -0
- spire/presentation/common/Color.py +2189 -0
- spire/presentation/common/Common.py +163 -0
- spire/presentation/common/CultureInfo.py +567 -0
- spire/presentation/common/DateTime.py +1163 -0
- spire/presentation/common/Double.py +440 -0
- spire/presentation/common/EmfType.py +25 -0
- spire/presentation/common/Encoding.py +930 -0
- spire/presentation/common/FontStyle.py +27 -0
- spire/presentation/common/GraphicsUnit.py +29 -0
- spire/presentation/common/ICollection.py +73 -0
- spire/presentation/common/IDictionary.py +124 -0
- spire/presentation/common/IEnumerable.py +44 -0
- spire/presentation/common/IEnumerator.py +62 -0
- spire/presentation/common/IList.py +148 -0
- spire/presentation/common/Int16.py +274 -0
- spire/presentation/common/Int32.py +282 -0
- spire/presentation/common/Int64.py +258 -0
- spire/presentation/common/License.py +187 -0
- spire/presentation/common/PixelFormat.py +45 -0
- spire/presentation/common/Point.py +300 -0
- spire/presentation/common/PointF.py +276 -0
- spire/presentation/common/Rectangle.py +451 -0
- spire/presentation/common/RectangleF.py +438 -0
- spire/presentation/common/Regex.py +964 -0
- spire/presentation/common/RegexOptions.py +31 -0
- spire/presentation/common/Single.py +418 -0
- spire/presentation/common/Size.py +273 -0
- spire/presentation/common/SizeF.py +261 -0
- spire/presentation/common/SpireObject.py +81 -0
- spire/presentation/common/Stream.py +552 -0
- spire/presentation/common/String.py +1880 -0
- spire/presentation/common/TimeSpan.py +874 -0
- spire/presentation/common/UInt16.py +274 -0
- spire/presentation/common/UInt32.py +274 -0
- spire/presentation/common/UInt64.py +274 -0
- spire/presentation/common/__init__.py +383 -0
- spire/presentation/diagrams/ISmartArt.py +142 -0
- spire/presentation/diagrams/ISmartArtNode.py +347 -0
- spire/presentation/diagrams/ISmartArtNodeCollection.py +196 -0
- spire/presentation/diagrams/SmartArtColorType.py +51 -0
- spire/presentation/diagrams/SmartArtLayoutType.py +99 -0
- spire/presentation/diagrams/SmartArtStyleType.py +43 -0
- spire/presentation/diagrams/__init__.py +0 -0
- spire/presentation/drawing/Backdrop.py +96 -0
- spire/presentation/drawing/BackgroundType.py +21 -0
- spire/presentation/drawing/BevelColorType.py +19 -0
- spire/presentation/drawing/BevelPresetType.py +41 -0
- spire/presentation/drawing/BlackWhiteMode.py +39 -0
- spire/presentation/drawing/BlendEffect.py +60 -0
- spire/presentation/drawing/BlendMode.py +27 -0
- spire/presentation/drawing/BlurNode.py +29 -0
- spire/presentation/drawing/ColorFormat.py +341 -0
- spire/presentation/drawing/ColorScheme.py +274 -0
- spire/presentation/drawing/ColorSchemeIndex.py +25 -0
- spire/presentation/drawing/ColorType.py +27 -0
- spire/presentation/drawing/EffectDag.py +200 -0
- spire/presentation/drawing/EffectFillType.py +25 -0
- spire/presentation/drawing/EffectNode.py +13 -0
- spire/presentation/drawing/EffectStyle.py +60 -0
- spire/presentation/drawing/ExtensionList.py +25 -0
- spire/presentation/drawing/FillFormat.py +195 -0
- spire/presentation/drawing/FillFormatType.py +29 -0
- spire/presentation/drawing/FillOverlayEffect.py +85 -0
- spire/presentation/drawing/FormatScheme.py +126 -0
- spire/presentation/drawing/FormatThreeD.py +91 -0
- spire/presentation/drawing/GlowEffect.py +67 -0
- spire/presentation/drawing/GlowNode.py +36 -0
- spire/presentation/drawing/GradientFillFormat.py +132 -0
- spire/presentation/drawing/GradientShapeType.py +25 -0
- spire/presentation/drawing/GradientStop.py +40 -0
- spire/presentation/drawing/GradientStopData.py +36 -0
- spire/presentation/drawing/GradientStyle.py +26 -0
- spire/presentation/drawing/GraphicFrame.py +185 -0
- spire/presentation/drawing/GraphicalNodeLocking.py +121 -0
- spire/presentation/drawing/IImageData.py +105 -0
- spire/presentation/drawing/ImageTransform.py +134 -0
- spire/presentation/drawing/ImageTransformBase.py +13 -0
- spire/presentation/drawing/InnerShadowEffect.py +95 -0
- spire/presentation/drawing/InnerShadowNode.py +55 -0
- spire/presentation/drawing/OuterShadowEffect.py +227 -0
- spire/presentation/drawing/OuterShadowNode.py +157 -0
- spire/presentation/drawing/PatternFillFormat.py +97 -0
- spire/presentation/drawing/PatternFillType.py +127 -0
- spire/presentation/drawing/PenAlignmentType.py +21 -0
- spire/presentation/drawing/PictureData.py +61 -0
- spire/presentation/drawing/PictureFillFormat.py +257 -0
- spire/presentation/drawing/PictureFillType.py +19 -0
- spire/presentation/drawing/PresetShadow.py +115 -0
- spire/presentation/drawing/PresetShadowNode.py +72 -0
- spire/presentation/drawing/ReflectionEffect.py +301 -0
- spire/presentation/drawing/ReflectionNode.py +197 -0
- spire/presentation/drawing/SchemeColor.py +32 -0
- spire/presentation/drawing/SoftEdgeEffect.py +48 -0
- spire/presentation/drawing/SoftEdgeNode.py +25 -0
- spire/presentation/drawing/__init__.py +0 -0
- spire/presentation/export/PdfConformanceLevel.py +30 -0
- spire/presentation/export/SaveToHtmlOption.py +37 -0
- spire/presentation/export/SaveToPdfOption.py +109 -0
- spire/presentation/export/SaveToPptxOption.py +37 -0
- spire/presentation/export/__init__.py +0 -0
- spire/presentation/lib/Spire.Presentation.Base.dylib +0 -0
- spire/presentation/lib/__init__.py +0 -0
- spire/presentation/lib/libSkiaSharp.dylib +0 -0
- spire/presentation/license/LicenseProvider.py +112 -0
- spire/presentation/license/__init__.py +0 -0
- spire/presentation/table/Cell.py +475 -0
- spire/presentation/table/CellCollection.py +158 -0
- spire/presentation/table/ColumnCollection.py +42 -0
- spire/presentation/table/ColumnList.py +119 -0
- spire/presentation/table/ITable.py +689 -0
- spire/presentation/table/RowList.py +126 -0
- spire/presentation/table/TableBorderType.py +39 -0
- spire/presentation/table/TableColumn.py +39 -0
- spire/presentation/table/TableRow.py +39 -0
- spire/presentation/table/TableRowCollection.py +45 -0
- spire/presentation/table/TableStylePreset.py +88 -0
- spire/presentation/table/__init__.py +0 -0
- spire/presentation/transition/BlindsSlideTransition.py +45 -0
- spire/presentation/transition/CoverSlideTransition.py +58 -0
- spire/presentation/transition/FlythroughTransition.py +51 -0
- spire/presentation/transition/GlitterTransition.py +49 -0
- spire/presentation/transition/GlitterTransitionDirection.py +31 -0
- spire/presentation/transition/InvXTransition.py +47 -0
- spire/presentation/transition/LRTransition.py +47 -0
- spire/presentation/transition/OptionalBlackTransition.py +52 -0
- spire/presentation/transition/RevealTransition.py +51 -0
- spire/presentation/transition/ShredTransition.py +52 -0
- spire/presentation/transition/SideDirectionTransition.py +50 -0
- spire/presentation/transition/SlideShowTransition.py +262 -0
- spire/presentation/transition/SplitSlideTransition.py +53 -0
- spire/presentation/transition/StripsSlideTransition.py +52 -0
- spire/presentation/transition/Transition.py +33 -0
- spire/presentation/transition/TransitionCornerDirection.py +25 -0
- spire/presentation/transition/TransitionDirection.py +21 -0
- spire/presentation/transition/TransitionEightDirection.py +33 -0
- spire/presentation/transition/TransitionFlythroughInOutDirection.py +23 -0
- spire/presentation/transition/TransitionInOutDirection.py +21 -0
- spire/presentation/transition/TransitionRevealLRDirection.py +23 -0
- spire/presentation/transition/TransitionShredInOutDirection.py +23 -0
- spire/presentation/transition/TransitionSideDirectionType.py +23 -0
- spire/presentation/transition/TransitionSoundMode.py +21 -0
- spire/presentation/transition/TransitionSpeed.py +23 -0
- spire/presentation/transition/TransitionSplitDirection.py +23 -0
- spire/presentation/transition/TransitionTwoDirection.py +19 -0
- spire/presentation/transition/TransitionType.py +127 -0
- spire/presentation/transition/WheelSlideTransition.py +46 -0
- spire/presentation/transition/ZoomSlideTransition.py +48 -0
- spire/presentation/transition/__init__.py +0 -0
- spire_presentation-11.2.0.dist-info/METADATA +138 -0
- spire_presentation-11.2.0.dist-info/RECORD +440 -0
- spire_presentation-11.2.0.dist-info/WHEEL +5 -0
- spire_presentation-11.2.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,431 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
from ctypes import *
|
|
3
|
+
from spire.presentation.common import *
|
|
4
|
+
from spire.presentation.common import GetDllLibPpt
|
|
5
|
+
from spire.presentation.common.Common import IntPtrArray
|
|
6
|
+
from spire.presentation.common.Common import IntPtrWithTypeName
|
|
7
|
+
from spire.presentation.common.Common import GetObjVectorFromArray
|
|
8
|
+
from spire.presentation.common.Common import GetVectorFromArray
|
|
9
|
+
from spire.presentation.common.Common import GetIntPtrArray
|
|
10
|
+
from spire.presentation.common.Common import GetByteArray
|
|
11
|
+
from spire.presentation.common.Common import GetIntValue
|
|
12
|
+
from spire.presentation.common.Common import GetObjIntPtr
|
|
13
|
+
from spire.presentation.common.Common import GetStringPtrArray
|
|
14
|
+
from spire.presentation.common.SpireObject import SpireObject
|
|
15
|
+
from spire.presentation.common.CultureInfo import CultureInfo
|
|
16
|
+
from spire.presentation.common.Boolean import Boolean
|
|
17
|
+
from spire.presentation.common.Byte import Byte
|
|
18
|
+
from spire.presentation.common.Char import Char
|
|
19
|
+
from spire.presentation.common.Int16 import Int16
|
|
20
|
+
from spire.presentation.common.Int32 import Int32
|
|
21
|
+
from spire.presentation.common.Int64 import Int64
|
|
22
|
+
from spire.presentation.common.PixelFormat import PixelFormat
|
|
23
|
+
from spire.presentation.common.Size import Size
|
|
24
|
+
from spire.presentation.common.SizeF import SizeF
|
|
25
|
+
from spire.presentation.common.Point import Point
|
|
26
|
+
from spire.presentation.common.PointF import PointF
|
|
27
|
+
from spire.presentation.common.Rectangle import Rectangle
|
|
28
|
+
from spire.presentation.common.RectangleF import RectangleF
|
|
29
|
+
from spire.presentation.common.Single import Single
|
|
30
|
+
from spire.presentation.common.TimeSpan import TimeSpan
|
|
31
|
+
from spire.presentation.common.UInt16 import UInt16
|
|
32
|
+
from spire.presentation.common.UInt32 import UInt32
|
|
33
|
+
from spire.presentation.common.UInt64 import UInt64
|
|
34
|
+
from spire.presentation.common.Stream import Stream
|
|
35
|
+
from spire.presentation.common.Color import Color
|
|
36
|
+
from spire.presentation.common.DateTime import DateTime
|
|
37
|
+
from spire.presentation.common.Double import Double
|
|
38
|
+
from spire.presentation.common.EmfType import EmfType
|
|
39
|
+
from spire.presentation.common.Encoding import Encoding
|
|
40
|
+
from spire.presentation.common.FontStyle import FontStyle
|
|
41
|
+
from spire.presentation.common.GraphicsUnit import GraphicsUnit
|
|
42
|
+
from spire.presentation.common.ICollection import ICollection
|
|
43
|
+
from spire.presentation.common.IDictionary import IDictionary
|
|
44
|
+
from spire.presentation.common.IEnumerable import IEnumerable
|
|
45
|
+
from spire.presentation.common.IEnumerator import IEnumerator
|
|
46
|
+
from spire.presentation.common.IList import IList
|
|
47
|
+
from spire.presentation.common.String import String
|
|
48
|
+
from spire.presentation.license.LicenseProvider import LicenseProvider
|
|
49
|
+
from spire.presentation.PptObject import PptObject
|
|
50
|
+
from spire.presentation.TextFont import TextFont
|
|
51
|
+
from spire.presentation.export.PdfConformanceLevel import PdfConformanceLevel
|
|
52
|
+
from spire.presentation.AudioPlayMode import AudioPlayMode
|
|
53
|
+
from spire.presentation.AudioVolumeType import AudioVolumeType
|
|
54
|
+
from spire.presentation.TextBulletType import TextBulletType
|
|
55
|
+
from spire.presentation.PresetCameraType import PresetCameraType
|
|
56
|
+
from spire.presentation.table.TableBorderType import TableBorderType
|
|
57
|
+
from spire.presentation.FontAlignmentType import FontAlignmentType
|
|
58
|
+
from spire.presentation.FontCollectionIndex import FontCollectionIndex
|
|
59
|
+
from spire.presentation.HyperlinkActionType import HyperlinkActionType
|
|
60
|
+
from spire.presentation.LightingDirectionType import LightingDirectionType
|
|
61
|
+
from spire.presentation.PresetLightRigType import PresetLightRigType
|
|
62
|
+
from spire.presentation.LineEndLength import LineEndLength
|
|
63
|
+
from spire.presentation.LineEndType import LineEndType
|
|
64
|
+
from spire.presentation.LineEndWidth import LineEndWidth
|
|
65
|
+
from spire.presentation.LineCapStyle import LineCapStyle
|
|
66
|
+
from spire.presentation.LineDashStyleType import LineDashStyleType
|
|
67
|
+
from spire.presentation.LineJoinType import LineJoinType
|
|
68
|
+
from spire.presentation.TextLineStyle import TextLineStyle
|
|
69
|
+
from spire.presentation.PresetMaterialType import PresetMaterialType
|
|
70
|
+
from spire.presentation.TriState import TriState
|
|
71
|
+
from spire.presentation.NumberedBulletStyle import NumberedBulletStyle
|
|
72
|
+
from spire.presentation.Direction import Direction
|
|
73
|
+
from spire.presentation.PlaceholderSize import PlaceholderSize
|
|
74
|
+
from spire.presentation.PlaceholderType import PlaceholderType
|
|
75
|
+
from spire.presentation.KnownColors import KnownColors
|
|
76
|
+
from spire.presentation.PresetShadowValue import PresetShadowValue
|
|
77
|
+
from spire.presentation.RectangleAlignment import RectangleAlignment
|
|
78
|
+
from spire.presentation.ShapeElementFillSource import ShapeElementFillSource
|
|
79
|
+
from spire.presentation.ShapeElementStrokeSource import ShapeElementStrokeSource
|
|
80
|
+
from spire.presentation.ShapeType import ShapeType
|
|
81
|
+
from spire.presentation.SlideLayoutType import SlideLayoutType
|
|
82
|
+
from spire.presentation.SlideOrienation import SlideOrienation
|
|
83
|
+
from spire.presentation.SlideSizeType import SlideSizeType
|
|
84
|
+
from spire.presentation.ImportDataFormat import ImportDataFormat
|
|
85
|
+
from spire.presentation.SystemColorType import SystemColorType
|
|
86
|
+
from spire.presentation.TabAlignmentType import TabAlignmentType
|
|
87
|
+
from spire.presentation.table.TableStylePreset import TableStylePreset
|
|
88
|
+
from spire.presentation.TextAlignmentType import TextAlignmentType
|
|
89
|
+
from spire.presentation.TextAnchorType import TextAnchorType
|
|
90
|
+
from spire.presentation.TextAutofitType import TextAutofitType
|
|
91
|
+
from spire.presentation.TextCapType import TextCapType
|
|
92
|
+
from spire.presentation.TextHorizontalOverflowType import TextHorizontalOverflowType
|
|
93
|
+
from spire.presentation.TextShapeType import TextShapeType
|
|
94
|
+
from spire.presentation.TextStrikethroughType import TextStrikethroughType
|
|
95
|
+
from spire.presentation.TextUnderlineType import TextUnderlineType
|
|
96
|
+
from spire.presentation.TextVerticalOverflowType import TextVerticalOverflowType
|
|
97
|
+
from spire.presentation.VerticalTextType import VerticalTextType
|
|
98
|
+
from spire.presentation.TileFlipMode import TileFlipMode
|
|
99
|
+
from spire.presentation.VideoPlayMode import VideoPlayMode
|
|
100
|
+
from spire.presentation.ShapeAlignment import ShapeAlignment
|
|
101
|
+
from spire.presentation.ShapeArrange import ShapeArrange
|
|
102
|
+
from spire.presentation.MetaCharacterType import MetaCharacterType
|
|
103
|
+
from spire.presentation.FileFormat import FileFormat
|
|
104
|
+
from spire.presentation.SlideShowType import SlideShowType
|
|
105
|
+
from spire.presentation.Order import Order
|
|
106
|
+
from spire.presentation.PageSlideCount import PageSlideCount
|
|
107
|
+
from spire.presentation.FormatAndVersion import FormatAndVersion
|
|
108
|
+
from spire.presentation.animation.AnimationRepeatType import AnimationRepeatType
|
|
109
|
+
from spire.presentation.drawing.BackgroundType import BackgroundType
|
|
110
|
+
from spire.presentation.drawing.BevelColorType import BevelColorType
|
|
111
|
+
from spire.presentation.drawing.BevelPresetType import BevelPresetType
|
|
112
|
+
from spire.presentation.drawing.BlackWhiteMode import BlackWhiteMode
|
|
113
|
+
from spire.presentation.drawing.BlendMode import BlendMode
|
|
114
|
+
from spire.presentation.drawing.ColorSchemeIndex import ColorSchemeIndex
|
|
115
|
+
from spire.presentation.drawing.ColorType import ColorType
|
|
116
|
+
from spire.presentation.drawing.FillFormatType import FillFormatType
|
|
117
|
+
from spire.presentation.drawing.GradientShapeType import GradientShapeType
|
|
118
|
+
from spire.presentation.drawing.GradientStyle import GradientStyle
|
|
119
|
+
from spire.presentation.animation.FilterEffectsType import FilterEffectsType
|
|
120
|
+
from spire.presentation.drawing.PatternFillType import PatternFillType
|
|
121
|
+
from spire.presentation.drawing.PenAlignmentType import PenAlignmentType
|
|
122
|
+
from spire.presentation.drawing.PictureFillType import PictureFillType
|
|
123
|
+
from spire.presentation.drawing.SchemeColor import SchemeColor
|
|
124
|
+
from spire.presentation.animation.AnimateType import AnimateType
|
|
125
|
+
from spire.presentation.transition.TransitionCornerDirection import TransitionCornerDirection
|
|
126
|
+
from spire.presentation.transition.TransitionDirection import TransitionDirection
|
|
127
|
+
from spire.presentation.transition.TransitionEightDirection import TransitionEightDirection
|
|
128
|
+
from spire.presentation.transition.TransitionInOutDirection import TransitionInOutDirection
|
|
129
|
+
from spire.presentation.transition.TransitionSideDirectionType import TransitionSideDirectionType
|
|
130
|
+
from spire.presentation.transition.GlitterTransitionDirection import GlitterTransitionDirection
|
|
131
|
+
from spire.presentation.transition.TransitionTwoDirection import TransitionTwoDirection
|
|
132
|
+
from spire.presentation.transition.TransitionShredInOutDirection import TransitionShredInOutDirection
|
|
133
|
+
from spire.presentation.transition.TransitionFlythroughInOutDirection import TransitionFlythroughInOutDirection
|
|
134
|
+
from spire.presentation.transition.TransitionRevealLRDirection import TransitionRevealLRDirection
|
|
135
|
+
from spire.presentation.transition.TransitionSplitDirection import TransitionSplitDirection
|
|
136
|
+
from spire.presentation.transition.TransitionSoundMode import TransitionSoundMode
|
|
137
|
+
from spire.presentation.transition.TransitionSpeed import TransitionSpeed
|
|
138
|
+
from spire.presentation.transition.TransitionType import TransitionType
|
|
139
|
+
from spire.presentation.animation.BehaviorAccumulateType import BehaviorAccumulateType
|
|
140
|
+
from spire.presentation.animation.BehaviorAdditiveType import BehaviorAdditiveType
|
|
141
|
+
from spire.presentation.animation.ParagraphBuildType import ParagraphBuildType
|
|
142
|
+
from spire.presentation.animation.GraphicBuildType import GraphicBuildType
|
|
143
|
+
from spire.presentation.animation.AnimationColorDirection import AnimationColorDirection
|
|
144
|
+
from spire.presentation.animation.AnimationColorspace import AnimationColorspace
|
|
145
|
+
from spire.presentation.animation.AnimationCommandType import AnimationCommandType
|
|
146
|
+
from spire.presentation.drawing.EffectFillType import EffectFillType
|
|
147
|
+
from spire.presentation.animation.TimeNodePresetClassType import TimeNodePresetClassType
|
|
148
|
+
from spire.presentation.animation.AnimationRestartType import AnimationRestartType
|
|
149
|
+
from spire.presentation.animation.AnimationEffectSubtype import AnimationEffectSubtype
|
|
150
|
+
from spire.presentation.animation.AnimationTriggerType import AnimationTriggerType
|
|
151
|
+
from spire.presentation.animation.FilterRevealType import FilterRevealType
|
|
152
|
+
from spire.presentation.animation.FilterEffectSubtype import FilterEffectSubtype
|
|
153
|
+
from spire.presentation.animation.FilterEffectType import FilterEffectType
|
|
154
|
+
from spire.presentation.animation.MotionCommandPathType import MotionCommandPathType
|
|
155
|
+
from spire.presentation.animation.AnimationMotionOrigin import AnimationMotionOrigin
|
|
156
|
+
from spire.presentation.animation.AnimationMotionPathEditMode import AnimationMotionPathEditMode
|
|
157
|
+
from spire.presentation.animation.MotionPathPointsType import MotionPathPointsType
|
|
158
|
+
from spire.presentation.animation.AnimationCalculationMode import AnimationCalculationMode
|
|
159
|
+
from spire.presentation.animation.PropertyValueType import PropertyValueType
|
|
160
|
+
from spire.presentation.animation.AnimationEffectType import AnimationEffectType
|
|
161
|
+
from spire.presentation.diagrams.SmartArtColorType import SmartArtColorType
|
|
162
|
+
from spire.presentation.diagrams.SmartArtLayoutType import SmartArtLayoutType
|
|
163
|
+
from spire.presentation.diagrams.SmartArtStyleType import SmartArtStyleType
|
|
164
|
+
#from spire.presentation.HeaderType import HeaderType
|
|
165
|
+
from spire.presentation.charts.AxisPositionType import AxisPositionType
|
|
166
|
+
from spire.presentation.charts.AxisType import AxisType
|
|
167
|
+
from spire.presentation.charts.ChartBaseUnitType import ChartBaseUnitType
|
|
168
|
+
from spire.presentation.charts.ChartDisplayUnitType import ChartDisplayUnitType
|
|
169
|
+
from spire.presentation.charts.ChartMarkerType import ChartMarkerType
|
|
170
|
+
from spire.presentation.charts.ChartShapeType import ChartShapeType
|
|
171
|
+
from spire.presentation.charts.ChartType import ChartType
|
|
172
|
+
from spire.presentation.charts.CrossBetweenType import CrossBetweenType
|
|
173
|
+
from spire.presentation.charts.ChartCrossesType import ChartCrossesType
|
|
174
|
+
from spire.presentation.charts.DataLabelShapeType import DataLabelShapeType
|
|
175
|
+
from spire.presentation.charts.DisplayBlanksAsType import DisplayBlanksAsType
|
|
176
|
+
from spire.presentation.charts.ErrorBarSimpleType import ErrorBarSimpleType
|
|
177
|
+
from spire.presentation.charts.ErrorValueType import ErrorValueType
|
|
178
|
+
from spire.presentation.charts.InteriorColorPattern import InteriorColorPattern
|
|
179
|
+
from spire.presentation.charts.TreeMapLabelOption import TreeMapLabelOption
|
|
180
|
+
from spire.presentation.charts.QuartileCalculation import QuartileCalculation
|
|
181
|
+
from spire.presentation.charts.ChartLegendPositionType import ChartLegendPositionType
|
|
182
|
+
from spire.presentation.charts.PictureType import PictureType
|
|
183
|
+
from spire.presentation.charts.ChartStyle import ChartStyle
|
|
184
|
+
from spire.presentation.charts.TickLabelPositionType import TickLabelPositionType
|
|
185
|
+
from spire.presentation.charts.TickMarkType import TickMarkType
|
|
186
|
+
from spire.presentation.charts.TrendlinesType import TrendlinesType
|
|
187
|
+
from spire.presentation.charts.ChartDataLabelPosition import ChartDataLabelPosition
|
|
188
|
+
from spire.presentation.drawing.EffectNode import EffectNode
|
|
189
|
+
from spire.presentation.AudioCD import AudioCD
|
|
190
|
+
from spire.presentation.IDigitalSignature import IDigitalSignature
|
|
191
|
+
from spire.presentation.IDigitalSignatures import IDigitalSignatures
|
|
192
|
+
from spire.presentation.IActivePresentation import IActivePresentation
|
|
193
|
+
from spire.presentation.IActiveSlide import IActiveSlide
|
|
194
|
+
from spire.presentation.drawing.ColorFormat import ColorFormat
|
|
195
|
+
from spire.presentation.drawing.GradientStop import GradientStop
|
|
196
|
+
from spire.presentation.drawing.GradientStopData import GradientStopData
|
|
197
|
+
from spire.presentation.collections.GradientStopList import GradientStopList
|
|
198
|
+
from spire.presentation.collections.GradientStopDataCollection import GradientStopDataCollection
|
|
199
|
+
from spire.presentation.collections.GradientStopCollection import GradientStopCollection
|
|
200
|
+
from spire.presentation.LinearGradientFill import LinearGradientFill
|
|
201
|
+
from spire.presentation.drawing.PatternFillFormat import PatternFillFormat
|
|
202
|
+
from spire.presentation.drawing.GradientFillFormat import GradientFillFormat
|
|
203
|
+
from spire.presentation.drawing.PictureData import PictureData
|
|
204
|
+
from spire.presentation.PictureShape import PictureShape
|
|
205
|
+
from spire.presentation.RelativeRectangle import RelativeRectangle
|
|
206
|
+
from spire.presentation.drawing.PictureFillFormat import PictureFillFormat
|
|
207
|
+
from spire.presentation.drawing.FillFormat import FillFormat
|
|
208
|
+
from spire.presentation.LineFillFormat import LineFillFormat
|
|
209
|
+
from spire.presentation.charts.IChartGridLine import IChartGridLine
|
|
210
|
+
from spire.presentation.TextLineFormat import TextLineFormat
|
|
211
|
+
from spire.presentation.drawing.BlendEffect import BlendEffect
|
|
212
|
+
from spire.presentation.drawing.InnerShadowNode import InnerShadowNode
|
|
213
|
+
from spire.presentation.drawing.InnerShadowEffect import InnerShadowEffect
|
|
214
|
+
from spire.presentation.drawing.OuterShadowNode import OuterShadowNode
|
|
215
|
+
from spire.presentation.drawing.OuterShadowEffect import OuterShadowEffect
|
|
216
|
+
from spire.presentation.drawing.PresetShadow import PresetShadow
|
|
217
|
+
from spire.presentation.drawing.PresetShadowNode import PresetShadowNode
|
|
218
|
+
from spire.presentation.drawing.ReflectionNode import ReflectionNode
|
|
219
|
+
from spire.presentation.drawing.ReflectionEffect import ReflectionEffect
|
|
220
|
+
from spire.presentation.drawing.SoftEdgeNode import SoftEdgeNode
|
|
221
|
+
from spire.presentation.drawing.SoftEdgeEffect import SoftEdgeEffect
|
|
222
|
+
from spire.presentation.drawing.EffectDag import EffectDag
|
|
223
|
+
from spire.presentation.drawing.EffectStyle import EffectStyle
|
|
224
|
+
from spire.presentation.TextCharacterProperties import TextCharacterProperties
|
|
225
|
+
from spire.presentation.DefaultTextRangeProperties import DefaultTextRangeProperties
|
|
226
|
+
from spire.presentation.TextRange import TextRange
|
|
227
|
+
from spire.presentation.collections.TextRangeList import TextRangeList
|
|
228
|
+
from spire.presentation.collections.TextRangeCollection import TextRangeCollection
|
|
229
|
+
from spire.presentation.ParagraphProperties import ParagraphProperties
|
|
230
|
+
from spire.presentation.TextParagraph import TextParagraph
|
|
231
|
+
from spire.presentation.collections.ParagraphList import ParagraphList
|
|
232
|
+
from spire.presentation.collections.ParagraphCollection import ParagraphCollection
|
|
233
|
+
from spire.presentation.drawing.FormatScheme import FormatScheme
|
|
234
|
+
from spire.presentation.ShapeBevelStyle import ShapeBevelStyle
|
|
235
|
+
from spire.presentation.LightRig import LightRig
|
|
236
|
+
from spire.presentation.ShapeThreeD import ShapeThreeD
|
|
237
|
+
from spire.presentation.Camera import Camera
|
|
238
|
+
from spire.presentation.drawing.FormatThreeD import FormatThreeD
|
|
239
|
+
from spire.presentation.TextParagraphProperties import TextParagraphProperties
|
|
240
|
+
from spire.presentation.TextStyle import TextStyle
|
|
241
|
+
from spire.presentation.LineText import LineText
|
|
242
|
+
from spire.presentation.ITextFrameProperties import ITextFrameProperties
|
|
243
|
+
from spire.presentation.TextHighLightingOptions import TextHighLightingOptions
|
|
244
|
+
from spire.presentation.IAudioData import IAudioData
|
|
245
|
+
from spire.presentation.collections.WavAudioCollection import WavAudioCollection
|
|
246
|
+
from spire.presentation.collections.TagList import TagList
|
|
247
|
+
from spire.presentation.collections.TagCollection import TagCollection
|
|
248
|
+
from spire.presentation.IShape import IShape
|
|
249
|
+
from spire.presentation.Comment import Comment
|
|
250
|
+
from spire.presentation.collections.CommentList import CommentList
|
|
251
|
+
from spire.presentation.collections.CommentCollection import CommentCollection
|
|
252
|
+
from spire.presentation.ICommentAuthor import ICommentAuthor
|
|
253
|
+
from spire.presentation.InsertPlaceholderType import InsertPlaceholderType
|
|
254
|
+
from spire.presentation.charts.ProjectionType import ProjectionType
|
|
255
|
+
from spire.presentation.Field import Field
|
|
256
|
+
from spire.presentation.FieldType import FieldType
|
|
257
|
+
from spire.presentation.AppException import AppException
|
|
258
|
+
from spire.presentation.Placeholder import Placeholder
|
|
259
|
+
from spire.presentation.ShapeStyle import ShapeStyle
|
|
260
|
+
from spire.presentation.ClickHyperlink import ClickHyperlink
|
|
261
|
+
from spire.presentation.BaseShapeLocking import BaseShapeLocking
|
|
262
|
+
from spire.presentation.drawing.GraphicalNodeLocking import GraphicalNodeLocking
|
|
263
|
+
from spire.presentation.SimpleShapeBaseLocking import SimpleShapeBaseLocking
|
|
264
|
+
from spire.presentation.ShapeLocking import ShapeLocking
|
|
265
|
+
from spire.presentation.collections.FillListBase import FillListBase
|
|
266
|
+
from spire.presentation.collections.FillStyleList import FillStyleList
|
|
267
|
+
from spire.presentation.drawing.GraphicFrame import GraphicFrame
|
|
268
|
+
from spire.presentation.Shape import Shape
|
|
269
|
+
from spire.presentation.IEmbedImage import IEmbedImage
|
|
270
|
+
from spire.presentation.ShapeNode import ShapeNode
|
|
271
|
+
from spire.presentation.ShapeAdjust import ShapeAdjust
|
|
272
|
+
from spire.presentation.collections.ShapeAdjustmentList import ShapeAdjustmentList
|
|
273
|
+
from spire.presentation.collections.ShapeAdjustCollection import ShapeAdjustCollection
|
|
274
|
+
from spire.presentation.IAutoShape import IAutoShape
|
|
275
|
+
from spire.presentation.charts.HistogramAxisFormat import HistogramAxisFormat
|
|
276
|
+
from spire.presentation.charts.Geography import Geography
|
|
277
|
+
from spire.presentation.charts.IChartEffectFormat import IChartEffectFormat
|
|
278
|
+
from spire.presentation.charts.ChartTextArea import ChartTextArea
|
|
279
|
+
from spire.presentation.charts.IChartAxis import IChartAxis
|
|
280
|
+
from spire.presentation.charts.ChartAxis import ChartAxis
|
|
281
|
+
from spire.presentation.charts.CellRange import CellRange
|
|
282
|
+
from spire.presentation.charts.CellRanges import CellRanges
|
|
283
|
+
from spire.presentation.charts.ChartDataLabel import ChartDataLabel
|
|
284
|
+
from spire.presentation.charts.ChartDataLabelCollection import ChartDataLabelCollection
|
|
285
|
+
from spire.presentation.charts.ChartData import ChartData
|
|
286
|
+
from spire.presentation.charts.ChartEffectFormat import ChartEffectFormat
|
|
287
|
+
from spire.presentation.charts.ChartDataPoint import ChartDataPoint
|
|
288
|
+
from spire.presentation.charts.ChartDataPointCollection import ChartDataPointCollection
|
|
289
|
+
from spire.presentation.charts.IErrorBarsFormat import IErrorBarsFormat
|
|
290
|
+
from spire.presentation.charts.ITrendlineLabel import ITrendlineLabel
|
|
291
|
+
from spire.presentation.charts.ITrendlines import ITrendlines
|
|
292
|
+
from spire.presentation.charts.ChartSeriesDataFormat import ChartSeriesDataFormat
|
|
293
|
+
from spire.presentation.charts.ChartSeriesFormatCollection import ChartSeriesFormatCollection
|
|
294
|
+
from spire.presentation.charts.ChartCategory import ChartCategory
|
|
295
|
+
from spire.presentation.charts.ChartRotationThreeD import ChartRotationThreeD
|
|
296
|
+
from spire.presentation.charts.ChartDataTable import ChartDataTable
|
|
297
|
+
from spire.presentation.charts.LegendEntry import LegendEntry
|
|
298
|
+
from spire.presentation.charts.LegendEntryCollection import LegendEntryCollection
|
|
299
|
+
from spire.presentation.charts.ChartLegend import ChartLegend
|
|
300
|
+
from spire.presentation.charts.ChartWallsOrFloor import ChartWallsOrFloor
|
|
301
|
+
from spire.presentation.charts.ChartPlotArea import ChartPlotArea
|
|
302
|
+
from spire.presentation.charts.ChartCategoryCollection import ChartCategoryCollection
|
|
303
|
+
from spire.presentation.charts.IChart import IChart
|
|
304
|
+
from spire.presentation.SlidePictureLocking import SlidePictureLocking
|
|
305
|
+
from spire.presentation.IAudio import IAudio
|
|
306
|
+
from spire.presentation.SlidePicture import SlidePicture
|
|
307
|
+
from spire.presentation.table.Cell import Cell
|
|
308
|
+
from spire.presentation.table.CellCollection import CellCollection
|
|
309
|
+
from spire.presentation.table.TableRow import TableRow
|
|
310
|
+
from spire.presentation.table.RowList import RowList
|
|
311
|
+
from spire.presentation.table.TableRowCollection import TableRowCollection
|
|
312
|
+
from spire.presentation.table.TableColumn import TableColumn
|
|
313
|
+
from spire.presentation.table.ColumnList import ColumnList
|
|
314
|
+
from spire.presentation.table.ColumnCollection import ColumnCollection
|
|
315
|
+
from spire.presentation.table.ITable import ITable
|
|
316
|
+
from spire.presentation.VideoData import VideoData
|
|
317
|
+
from spire.presentation.IVideo import IVideo
|
|
318
|
+
from spire.presentation.IOleObject import IOleObject
|
|
319
|
+
from spire.presentation.diagrams.ISmartArtNode import ISmartArtNode
|
|
320
|
+
from spire.presentation.diagrams.ISmartArtNodeCollection import ISmartArtNodeCollection
|
|
321
|
+
from spire.presentation.diagrams.ISmartArt import ISmartArt
|
|
322
|
+
from spire.presentation.GroupShape import GroupShape
|
|
323
|
+
from spire.presentation.collections.ShapeList import ShapeList
|
|
324
|
+
from spire.presentation.TabData import TabData
|
|
325
|
+
from spire.presentation.drawing.ColorScheme import ColorScheme
|
|
326
|
+
from spire.presentation.SlideColorScheme import SlideColorScheme
|
|
327
|
+
from spire.presentation.FontScheme import FontScheme
|
|
328
|
+
from spire.presentation.Theme import Theme
|
|
329
|
+
from spire.presentation.SlideBackground import SlideBackground
|
|
330
|
+
from spire.presentation.ShapeCollection import ShapeCollection
|
|
331
|
+
from spire.presentation.ActiveSlide import ActiveSlide
|
|
332
|
+
from spire.presentation.ConnectorLocking import ConnectorLocking
|
|
333
|
+
from spire.presentation.LocaleFonts import LocaleFonts
|
|
334
|
+
from spire.presentation.GroupShapeLocking import GroupShapeLocking
|
|
335
|
+
from spire.presentation.collections.OleObjectProperties import OleObjectProperties
|
|
336
|
+
from spire.presentation.OleObject import OleObject
|
|
337
|
+
from spire.presentation.ILayout import ILayout
|
|
338
|
+
from spire.presentation.export.SaveToPdfOption import SaveToPdfOption
|
|
339
|
+
from spire.presentation.export.SaveToHtmlOption import SaveToHtmlOption
|
|
340
|
+
from spire.presentation.export.SaveToPptxOption import SaveToPptxOption
|
|
341
|
+
from spire.presentation.IDocumentProperty import IDocumentProperty
|
|
342
|
+
from spire.presentation.animation.TimeNode import TimeNode
|
|
343
|
+
from spire.presentation.animation.TimeNodeMedia import TimeNodeMedia
|
|
344
|
+
from spire.presentation.animation.TimeNodeAudio import TimeNodeAudio
|
|
345
|
+
from spire.presentation.animation.TimeNodes import TimeNodes
|
|
346
|
+
from spire.presentation.transition.Transition import Transition
|
|
347
|
+
from spire.presentation.transition.CoverSlideTransition import CoverSlideTransition
|
|
348
|
+
from spire.presentation.transition.ZoomSlideTransition import ZoomSlideTransition
|
|
349
|
+
from spire.presentation.transition.OptionalBlackTransition import OptionalBlackTransition
|
|
350
|
+
from spire.presentation.transition.BlindsSlideTransition import BlindsSlideTransition
|
|
351
|
+
from spire.presentation.transition.SideDirectionTransition import SideDirectionTransition
|
|
352
|
+
from spire.presentation.transition.GlitterTransition import GlitterTransition
|
|
353
|
+
from spire.presentation.transition.LRTransition import LRTransition
|
|
354
|
+
from spire.presentation.transition.ShredTransition import ShredTransition
|
|
355
|
+
from spire.presentation.transition.FlythroughTransition import FlythroughTransition
|
|
356
|
+
from spire.presentation.transition.RevealTransition import RevealTransition
|
|
357
|
+
from spire.presentation.transition.InvXTransition import InvXTransition
|
|
358
|
+
from spire.presentation.transition.SplitSlideTransition import SplitSlideTransition
|
|
359
|
+
from spire.presentation.transition.StripsSlideTransition import StripsSlideTransition
|
|
360
|
+
from spire.presentation.transition.WheelSlideTransition import WheelSlideTransition
|
|
361
|
+
from spire.presentation.transition.SlideShowTransition import SlideShowTransition
|
|
362
|
+
from spire.presentation.animation.GraphicAnimation import GraphicAnimation
|
|
363
|
+
from spire.presentation.animation.Timing import Timing
|
|
364
|
+
from spire.presentation.animation.CommonBehavior import CommonBehavior
|
|
365
|
+
from spire.presentation.animation.AnimationColorBehavior import AnimationColorBehavior
|
|
366
|
+
from spire.presentation.animation.AnimationColorTransform import AnimationColorTransform
|
|
367
|
+
from spire.presentation.animation.AnimationCommandBehavior import AnimationCommandBehavior
|
|
368
|
+
from spire.presentation.animation.TextAnimation import TextAnimation
|
|
369
|
+
from spire.presentation.animation.AnimationEffect import AnimationEffect
|
|
370
|
+
from spire.presentation.animation.AnimationFilterEffect import AnimationFilterEffect
|
|
371
|
+
from spire.presentation.animation.MotionCmdPath import MotionCmdPath
|
|
372
|
+
from spire.presentation.animation.AnimationMotion import AnimationMotion
|
|
373
|
+
from spire.presentation.animation.MotionPath import MotionPath
|
|
374
|
+
from spire.presentation.animation.TimeAnimationValue import TimeAnimationValue
|
|
375
|
+
from spire.presentation.animation.TimeAnimationValueCollection import TimeAnimationValueCollection
|
|
376
|
+
from spire.presentation.animation.AnimationProperty import AnimationProperty
|
|
377
|
+
from spire.presentation.animation.AnimationRotation import AnimationRotation
|
|
378
|
+
from spire.presentation.animation.AnimationScale import AnimationScale
|
|
379
|
+
from spire.presentation.animation.AnimationEffectCollection import AnimationEffectCollection
|
|
380
|
+
from spire.presentation.animation.SequenceCollection import SequenceCollection
|
|
381
|
+
from spire.presentation.animation.AnimationSet import AnimationSet
|
|
382
|
+
from spire.presentation.animation.TextAnimationCollection import TextAnimationCollection
|
|
383
|
+
from spire.presentation.animation.TimeLine import TimeLine
|
|
384
|
+
from spire.presentation.collections.IMasterLayouts import IMasterLayouts
|
|
385
|
+
from spire.presentation.NotesSlide import NotesSlide
|
|
386
|
+
from spire.presentation.INoteMasterSlide import INoteMasterSlide
|
|
387
|
+
from spire.presentation.IMasterSlide import IMasterSlide
|
|
388
|
+
from spire.presentation.collections.OleObjectCollection import OleObjectCollection
|
|
389
|
+
from spire.presentation.ISlide import ISlide
|
|
390
|
+
from spire.presentation.SlideList import SlideList
|
|
391
|
+
from spire.presentation.SlideSize import SlideSize
|
|
392
|
+
from spire.presentation.TabStop import TabStop
|
|
393
|
+
from spire.presentation.Section import Section
|
|
394
|
+
from spire.presentation.SectionList import SectionList
|
|
395
|
+
from spire.presentation.MasterTheme import MasterTheme
|
|
396
|
+
from spire.presentation._Presentation import _Presentation
|
|
397
|
+
from spire.presentation.collections.SlideCollection import SlideCollection
|
|
398
|
+
from spire.presentation.collections.VideoCollection import VideoCollection
|
|
399
|
+
from spire.presentation.drawing.IImageData import IImageData
|
|
400
|
+
from spire.presentation.collections.EmbedImageList import EmbedImageList
|
|
401
|
+
from spire.presentation.collections.ImageCollection import ImageCollection
|
|
402
|
+
from spire.presentation.collections.MasterSlideList import MasterSlideList
|
|
403
|
+
from spire.presentation.collections.MasterSlideCollection import MasterSlideCollection
|
|
404
|
+
from spire.presentation.collections.CommentAuthorList import CommentAuthorList
|
|
405
|
+
from spire.presentation.collections.CommentAuthorCollection import CommentAuthorCollection
|
|
406
|
+
from spire.presentation.Presentation import Presentation
|
|
407
|
+
from spire.presentation.drawing.Backdrop import Backdrop
|
|
408
|
+
from spire.presentation.drawing.ExtensionList import ExtensionList
|
|
409
|
+
from spire.presentation.drawing.ImageTransformBase import ImageTransformBase
|
|
410
|
+
from spire.presentation.drawing.BlurNode import BlurNode
|
|
411
|
+
from spire.presentation.drawing.FillOverlayEffect import FillOverlayEffect
|
|
412
|
+
from spire.presentation.drawing.GlowNode import GlowNode
|
|
413
|
+
from spire.presentation.drawing.GlowEffect import GlowEffect
|
|
414
|
+
from spire.presentation.drawing.ImageTransform import ImageTransform
|
|
415
|
+
from spire.presentation.animation.CommonBehaviorCollection import CommonBehaviorCollection
|
|
416
|
+
from spire.presentation.collections.EffectStyleList import EffectStyleList
|
|
417
|
+
from spire.presentation.collections.EffectStyleCollection import EffectStyleCollection
|
|
418
|
+
from spire.presentation.collections.FillStyleCollection import FillStyleCollection
|
|
419
|
+
from spire.presentation.collections.FillFormatList import FillFormatList
|
|
420
|
+
from spire.presentation.collections.FillFormatCollection import FillFormatCollection
|
|
421
|
+
from spire.presentation.collections.TextLineFormatList import TextLineFormatList
|
|
422
|
+
from spire.presentation.collections.TextLineFormatCollection import TextLineFormatCollection
|
|
423
|
+
from spire.presentation.collections.LineStyleList import LineStyleList
|
|
424
|
+
from spire.presentation.collections.LineStyleCollection import LineStyleCollection
|
|
425
|
+
from spire.presentation.collections.TabStopList import TabStopList
|
|
426
|
+
from spire.presentation.collections.TabStopCollection import TabStopCollection
|
|
427
|
+
from spire.presentation.animation.GraphicAnimationCollection import GraphicAnimationCollection
|
|
428
|
+
from spire.presentation.collections.EffectDataCollection import EffectDataCollection
|
|
429
|
+
from spire.presentation.collections.ImageTransformEffectCollection import ImageTransformEffectCollection
|
|
430
|
+
from spire.presentation.collections.SlideColorSchemeCollection import SlideColorSchemeCollection
|
|
431
|
+
from spire.presentation.charts.LayoutProperty import LayoutProperty
|
|
@@ -0,0 +1,24 @@
|
|
|
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
|
+
Animate type of text.
|
|
12
|
+
|
|
13
|
+
Attributes:
|
|
14
|
+
All:Default animation mode:Apply animation to the entire text block as a single unit.
|
|
15
|
+
Word:word-level animation :Animate text word-by-word with spacing boundaries.
|
|
16
|
+
Letter:Character-level animation:Animate text character-by-character for fine-grained effects.
|
|
17
|
+
|
|
18
|
+
"""
|
|
19
|
+
All = 0
|
|
20
|
+
Word = 1
|
|
21
|
+
Letter = 2
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
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 AnimationCalculationMode(Enum):
|
|
10
|
+
"""
|
|
11
|
+
Represents calculation modes for animation properties.
|
|
12
|
+
|
|
13
|
+
Attributes:
|
|
14
|
+
none: No calculation mode specified.
|
|
15
|
+
Discrete: Discrete calculation mode.
|
|
16
|
+
Linear: Linear calculation mode.
|
|
17
|
+
Formula: Formula-based calculation mode.
|
|
18
|
+
"""
|
|
19
|
+
none = -1
|
|
20
|
+
Discrete = 0
|
|
21
|
+
Linear = 1
|
|
22
|
+
Formula = 2
|
|
23
|
+
|
|
@@ -0,0 +1,146 @@
|
|
|
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 AnimationColorBehavior ( CommonBehavior) :
|
|
10
|
+
"""
|
|
11
|
+
Represents a color effect for an animation behavior.
|
|
12
|
+
|
|
13
|
+
"""
|
|
14
|
+
@property
|
|
15
|
+
|
|
16
|
+
def From(self)->'ColorFormat':
|
|
17
|
+
"""
|
|
18
|
+
Gets the starting color of the behavior.
|
|
19
|
+
|
|
20
|
+
Returns:
|
|
21
|
+
ColorFormat: The starting color.
|
|
22
|
+
"""
|
|
23
|
+
GetDllLibPpt().AnimationColorBehavior_get_From.argtypes=[c_void_p]
|
|
24
|
+
GetDllLibPpt().AnimationColorBehavior_get_From.restype=c_void_p
|
|
25
|
+
intPtr = CallCFunction(GetDllLibPpt().AnimationColorBehavior_get_From,self.Ptr)
|
|
26
|
+
ret = None if intPtr==None else ColorFormat(intPtr)
|
|
27
|
+
return ret
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
@From.setter
|
|
31
|
+
def From(self, value:'ColorFormat'):
|
|
32
|
+
"""
|
|
33
|
+
Sets the starting color of the behavior.
|
|
34
|
+
|
|
35
|
+
Args:
|
|
36
|
+
value: The starting color to set.
|
|
37
|
+
"""
|
|
38
|
+
GetDllLibPpt().AnimationColorBehavior_set_From.argtypes=[c_void_p, c_void_p]
|
|
39
|
+
CallCFunction(GetDllLibPpt().AnimationColorBehavior_set_From,self.Ptr, value.Ptr)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
|
|
43
|
+
def To(self)->'ColorFormat':
|
|
44
|
+
"""
|
|
45
|
+
Gets the ending color of the behavior.
|
|
46
|
+
|
|
47
|
+
Returns:
|
|
48
|
+
ColorFormat: The ending color.
|
|
49
|
+
"""
|
|
50
|
+
GetDllLibPpt().AnimationColorBehavior_get_To.argtypes=[c_void_p]
|
|
51
|
+
GetDllLibPpt().AnimationColorBehavior_get_To.restype=c_void_p
|
|
52
|
+
intPtr = CallCFunction(GetDllLibPpt().AnimationColorBehavior_get_To,self.Ptr)
|
|
53
|
+
ret = None if intPtr==None else ColorFormat(intPtr)
|
|
54
|
+
return ret
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
@To.setter
|
|
58
|
+
def To(self, value:'ColorFormat'):
|
|
59
|
+
"""
|
|
60
|
+
Sets the ending color of the behavior.
|
|
61
|
+
|
|
62
|
+
Args:
|
|
63
|
+
value: The ending color to set.
|
|
64
|
+
"""
|
|
65
|
+
GetDllLibPpt().AnimationColorBehavior_set_To.argtypes=[c_void_p, c_void_p]
|
|
66
|
+
CallCFunction(GetDllLibPpt().AnimationColorBehavior_set_To,self.Ptr, value.Ptr)
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
|
|
70
|
+
def By(self)->'AnimationColorTransform':
|
|
71
|
+
"""
|
|
72
|
+
Gets the relative color value for the animation.
|
|
73
|
+
|
|
74
|
+
Returns:
|
|
75
|
+
AnimationColorTransform: The relative color transformation.
|
|
76
|
+
"""
|
|
77
|
+
GetDllLibPpt().AnimationColorBehavior_get_By.argtypes=[c_void_p]
|
|
78
|
+
GetDllLibPpt().AnimationColorBehavior_get_By.restype=c_void_p
|
|
79
|
+
intPtr = CallCFunction(GetDllLibPpt().AnimationColorBehavior_get_By,self.Ptr)
|
|
80
|
+
ret = None if intPtr==None else AnimationColorTransform(intPtr)
|
|
81
|
+
return ret
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
@By.setter
|
|
85
|
+
def By(self, value:'AnimationColorTransform'):
|
|
86
|
+
"""
|
|
87
|
+
Sets the relative color value for the animation.
|
|
88
|
+
|
|
89
|
+
Args:
|
|
90
|
+
value: The relative color transformation to set.
|
|
91
|
+
"""
|
|
92
|
+
GetDllLibPpt().AnimationColorBehavior_set_By.argtypes=[c_void_p, c_void_p]
|
|
93
|
+
CallCFunction(GetDllLibPpt().AnimationColorBehavior_set_By,self.Ptr, value.Ptr)
|
|
94
|
+
|
|
95
|
+
@property
|
|
96
|
+
|
|
97
|
+
def AnimationColorspace(self)->'AnimationColorspace':
|
|
98
|
+
"""
|
|
99
|
+
Gets the color space used for the behavior.
|
|
100
|
+
|
|
101
|
+
Returns:
|
|
102
|
+
AnimationColorspace: The color space setting.
|
|
103
|
+
"""
|
|
104
|
+
GetDllLibPpt().AnimationColorBehavior_get_AnimationColorspace.argtypes=[c_void_p]
|
|
105
|
+
GetDllLibPpt().AnimationColorBehavior_get_AnimationColorspace.restype=c_int
|
|
106
|
+
ret = CallCFunction(GetDllLibPpt().AnimationColorBehavior_get_AnimationColorspace,self.Ptr)
|
|
107
|
+
objwraped = AnimationColorspace(ret)
|
|
108
|
+
return objwraped
|
|
109
|
+
|
|
110
|
+
@AnimationColorspace.setter
|
|
111
|
+
def AnimationColorspace(self, value:'AnimationColorspace'):
|
|
112
|
+
"""
|
|
113
|
+
Sets the color space used for the behavior.
|
|
114
|
+
|
|
115
|
+
Args:
|
|
116
|
+
value: The color space to set.
|
|
117
|
+
"""
|
|
118
|
+
GetDllLibPpt().AnimationColorBehavior_set_AnimationColorspace.argtypes=[c_void_p, c_int]
|
|
119
|
+
CallCFunction(GetDllLibPpt().AnimationColorBehavior_set_AnimationColorspace,self.Ptr, value.value)
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
|
|
123
|
+
def Direction(self)->'AnimationColorDirection':
|
|
124
|
+
"""
|
|
125
|
+
Gets the direction to cycle the hue.
|
|
126
|
+
|
|
127
|
+
Returns:
|
|
128
|
+
AnimationColorDirection: The color direction.
|
|
129
|
+
"""
|
|
130
|
+
GetDllLibPpt().AnimationColorBehavior_get_Direction.argtypes=[c_void_p]
|
|
131
|
+
GetDllLibPpt().AnimationColorBehavior_get_Direction.restype=c_int
|
|
132
|
+
ret = CallCFunction(GetDllLibPpt().AnimationColorBehavior_get_Direction,self.Ptr)
|
|
133
|
+
objwraped = AnimationColorDirection(ret)
|
|
134
|
+
return objwraped
|
|
135
|
+
|
|
136
|
+
@Direction.setter
|
|
137
|
+
def Direction(self, value:'AnimationColorDirection'):
|
|
138
|
+
"""
|
|
139
|
+
Sets the direction to cycle the hue.
|
|
140
|
+
|
|
141
|
+
Args:
|
|
142
|
+
value: The color direction to set.
|
|
143
|
+
"""
|
|
144
|
+
GetDllLibPpt().AnimationColorBehavior_set_Direction.argtypes=[c_void_p, c_int]
|
|
145
|
+
CallCFunction(GetDllLibPpt().AnimationColorBehavior_set_Direction,self.Ptr, value.value)
|
|
146
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
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 AnimationColorDirection(Enum):
|
|
10
|
+
"""
|
|
11
|
+
Represents the direction of color animation.
|
|
12
|
+
|
|
13
|
+
Attributes:
|
|
14
|
+
none: No direction specified.
|
|
15
|
+
Clockwise: Color changes in clockwise direction.
|
|
16
|
+
CounterClockwise: Color changes in counter-clockwise direction.
|
|
17
|
+
"""
|
|
18
|
+
none = -1
|
|
19
|
+
Clockwise = 0
|
|
20
|
+
CounterClockwise = 1
|
|
21
|
+
|