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