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,826 @@
|
|
|
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
|
+
|
|
8
|
+
class IChartAxis (SpireObject) :
|
|
9
|
+
"""
|
|
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
|
|
18
|
+
"""
|
|
19
|
+
@property
|
|
20
|
+
def UnderflowBinValue(self)->float:
|
|
21
|
+
"""
|
|
22
|
+
Gets or sets the underflow bin value (histogram/pareto only).
|
|
23
|
+
"""
|
|
24
|
+
GetDllLibPpt().IChartAxis_get_UnderflowBinValue.argtypes=[c_void_p]
|
|
25
|
+
GetDllLibPpt().IChartAxis_get_UnderflowBinValue.restype=c_double
|
|
26
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_UnderflowBinValue,self.Ptr)
|
|
27
|
+
return ret
|
|
28
|
+
|
|
29
|
+
@UnderflowBinValue.setter
|
|
30
|
+
def UnderflowBinValue(self, value:float):
|
|
31
|
+
"""
|
|
32
|
+
Sets the underflow bin value.
|
|
33
|
+
|
|
34
|
+
Args:
|
|
35
|
+
value: Numeric bin value.
|
|
36
|
+
"""
|
|
37
|
+
GetDllLibPpt().IChartAxis_set_UnderflowBinValue.argtypes=[c_void_p, c_double]
|
|
38
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_UnderflowBinValue,self.Ptr, value)
|
|
39
|
+
|
|
40
|
+
@property
|
|
41
|
+
def OverflowBinValue(self)->float:
|
|
42
|
+
"""
|
|
43
|
+
Get or Set the OverFlow Bin value
|
|
44
|
+
Applies only to Histogram and Pareto charts.
|
|
45
|
+
"""
|
|
46
|
+
GetDllLibPpt().IChartAxis_get_OverflowBinValue.argtypes=[c_void_p]
|
|
47
|
+
GetDllLibPpt().IChartAxis_get_OverflowBinValue.restype=c_double
|
|
48
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_OverflowBinValue,self.Ptr)
|
|
49
|
+
return ret
|
|
50
|
+
|
|
51
|
+
@OverflowBinValue.setter
|
|
52
|
+
def OverflowBinValue(self, value:float):
|
|
53
|
+
GetDllLibPpt().IChartAxis_set_OverflowBinValue.argtypes=[c_void_p, c_double]
|
|
54
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_OverflowBinValue,self.Ptr, value)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
def GapWidth(self)->int:
|
|
58
|
+
"""
|
|
59
|
+
Returns or sets the space between bar or column clusters, as a percentage of the bar or column width.
|
|
60
|
+
The value of this property must be between 0 and 500.
|
|
61
|
+
|
|
62
|
+
"""
|
|
63
|
+
GetDllLibPpt().IChartAxis_get_GapWidth.argtypes=[c_void_p]
|
|
64
|
+
GetDllLibPpt().IChartAxis_get_GapWidth.restype=c_int
|
|
65
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_GapWidth,self.Ptr)
|
|
66
|
+
return ret
|
|
67
|
+
|
|
68
|
+
@GapWidth.setter
|
|
69
|
+
def GapWidth(self, value:int):
|
|
70
|
+
GetDllLibPpt().IChartAxis_set_GapWidth.argtypes=[c_void_p, c_int]
|
|
71
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_GapWidth,self.Ptr, value)
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
def IsCrossCategories(self)->bool:
|
|
75
|
+
"""
|
|
76
|
+
Indicates that the value axis crosses the category axis between categorie
|
|
77
|
+
|
|
78
|
+
"""
|
|
79
|
+
GetDllLibPpt().IChartAxis_get_IsCrossCategories.argtypes=[c_void_p]
|
|
80
|
+
GetDllLibPpt().IChartAxis_get_IsCrossCategories.restype=c_bool
|
|
81
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsCrossCategories,self.Ptr)
|
|
82
|
+
return ret
|
|
83
|
+
|
|
84
|
+
@IsCrossCategories.setter
|
|
85
|
+
def IsCrossCategories(self, value:bool):
|
|
86
|
+
GetDllLibPpt().IChartAxis_set_IsCrossCategories.argtypes=[c_void_p, c_bool]
|
|
87
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsCrossCategories,self.Ptr, value)
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
def CrossAt(self)->float:
|
|
91
|
+
"""
|
|
92
|
+
Represents the point on the value axis where the category axis crosses it.
|
|
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.
|
|
97
|
+
"""
|
|
98
|
+
GetDllLibPpt().IChartAxis_get_CrossAt.argtypes=[c_void_p]
|
|
99
|
+
GetDllLibPpt().IChartAxis_get_CrossAt.restype=c_float
|
|
100
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_CrossAt,self.Ptr)
|
|
101
|
+
return ret
|
|
102
|
+
|
|
103
|
+
@CrossAt.setter
|
|
104
|
+
def CrossAt(self, value:float):
|
|
105
|
+
GetDllLibPpt().IChartAxis_set_CrossAt.argtypes=[c_void_p, c_float]
|
|
106
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_CrossAt,self.Ptr, value)
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
|
|
110
|
+
def DisplayUnit(self)->'ChartDisplayUnitType':
|
|
111
|
+
"""
|
|
112
|
+
Returns or sets the unit label for the specified axis.
|
|
113
|
+
|
|
114
|
+
"""
|
|
115
|
+
GetDllLibPpt().IChartAxis_get_DisplayUnit.argtypes=[c_void_p]
|
|
116
|
+
GetDllLibPpt().IChartAxis_get_DisplayUnit.restype=c_int
|
|
117
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_DisplayUnit,self.Ptr)
|
|
118
|
+
objwraped = ChartDisplayUnitType(ret)
|
|
119
|
+
return objwraped
|
|
120
|
+
|
|
121
|
+
@DisplayUnit.setter
|
|
122
|
+
def DisplayUnit(self, value:'ChartDisplayUnitType'):
|
|
123
|
+
GetDllLibPpt().IChartAxis_set_DisplayUnit.argtypes=[c_void_p, c_int]
|
|
124
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_DisplayUnit,self.Ptr, value.value)
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
def IsAutoMax(self)->bool:
|
|
128
|
+
"""
|
|
129
|
+
Automatic maximum selected.
|
|
130
|
+
|
|
131
|
+
"""
|
|
132
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMax.argtypes=[c_void_p]
|
|
133
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMax.restype=c_bool
|
|
134
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsAutoMax,self.Ptr)
|
|
135
|
+
return ret
|
|
136
|
+
|
|
137
|
+
@IsAutoMax.setter
|
|
138
|
+
def IsAutoMax(self, value:bool):
|
|
139
|
+
GetDllLibPpt().IChartAxis_set_IsAutoMax.argtypes=[c_void_p, c_bool]
|
|
140
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsAutoMax,self.Ptr, value)
|
|
141
|
+
|
|
142
|
+
@property
|
|
143
|
+
def MaxValue(self)->float:
|
|
144
|
+
"""
|
|
145
|
+
Maximum value on axis.
|
|
146
|
+
|
|
147
|
+
"""
|
|
148
|
+
GetDllLibPpt().IChartAxis_get_MaxValue.argtypes=[c_void_p]
|
|
149
|
+
GetDllLibPpt().IChartAxis_get_MaxValue.restype=c_float
|
|
150
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MaxValue,self.Ptr)
|
|
151
|
+
return ret
|
|
152
|
+
|
|
153
|
+
@MaxValue.setter
|
|
154
|
+
def MaxValue(self, value:float):
|
|
155
|
+
GetDllLibPpt().IChartAxis_set_MaxValue.argtypes=[c_void_p, c_float]
|
|
156
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MaxValue,self.Ptr, value)
|
|
157
|
+
|
|
158
|
+
@property
|
|
159
|
+
def MinorUnit(self)->float:
|
|
160
|
+
"""
|
|
161
|
+
Value of minor increment.
|
|
162
|
+
|
|
163
|
+
"""
|
|
164
|
+
GetDllLibPpt().IChartAxis_get_MinorUnit.argtypes=[c_void_p]
|
|
165
|
+
GetDllLibPpt().IChartAxis_get_MinorUnit.restype=c_float
|
|
166
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MinorUnit,self.Ptr)
|
|
167
|
+
return ret
|
|
168
|
+
|
|
169
|
+
@MinorUnit.setter
|
|
170
|
+
def MinorUnit(self, value:float):
|
|
171
|
+
GetDllLibPpt().IChartAxis_set_MinorUnit.argtypes=[c_void_p, c_float]
|
|
172
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MinorUnit,self.Ptr, value)
|
|
173
|
+
|
|
174
|
+
@property
|
|
175
|
+
def IsAutoMinor(self)->bool:
|
|
176
|
+
"""
|
|
177
|
+
Indicates whether the minor unit of the axis is automatically assigned.
|
|
178
|
+
|
|
179
|
+
"""
|
|
180
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMinor.argtypes=[c_void_p]
|
|
181
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMinor.restype=c_bool
|
|
182
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsAutoMinor,self.Ptr)
|
|
183
|
+
return ret
|
|
184
|
+
|
|
185
|
+
@IsAutoMinor.setter
|
|
186
|
+
def IsAutoMinor(self, value:bool):
|
|
187
|
+
GetDllLibPpt().IChartAxis_set_IsAutoMinor.argtypes=[c_void_p, c_bool]
|
|
188
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsAutoMinor,self.Ptr, value)
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
def MajorUnit(self)->float:
|
|
192
|
+
"""
|
|
193
|
+
Represents the major units for the axis.
|
|
194
|
+
|
|
195
|
+
"""
|
|
196
|
+
GetDllLibPpt().IChartAxis_get_MajorUnit.argtypes=[c_void_p]
|
|
197
|
+
GetDllLibPpt().IChartAxis_get_MajorUnit.restype=c_float
|
|
198
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MajorUnit,self.Ptr)
|
|
199
|
+
return ret
|
|
200
|
+
|
|
201
|
+
@MajorUnit.setter
|
|
202
|
+
def MajorUnit(self, value:float):
|
|
203
|
+
GetDllLibPpt().IChartAxis_set_MajorUnit.argtypes=[c_void_p, c_float]
|
|
204
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MajorUnit,self.Ptr, value)
|
|
205
|
+
|
|
206
|
+
@property
|
|
207
|
+
def IsAutoMajor(self)->bool:
|
|
208
|
+
"""
|
|
209
|
+
Automatic major selected.
|
|
210
|
+
|
|
211
|
+
"""
|
|
212
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMajor.argtypes=[c_void_p]
|
|
213
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMajor.restype=c_bool
|
|
214
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsAutoMajor,self.Ptr)
|
|
215
|
+
return ret
|
|
216
|
+
|
|
217
|
+
@IsAutoMajor.setter
|
|
218
|
+
def IsAutoMajor(self, value:bool):
|
|
219
|
+
GetDllLibPpt().IChartAxis_set_IsAutoMajor.argtypes=[c_void_p, c_bool]
|
|
220
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsAutoMajor,self.Ptr, value)
|
|
221
|
+
|
|
222
|
+
@property
|
|
223
|
+
def IsAutoMin(self)->bool:
|
|
224
|
+
"""
|
|
225
|
+
Automatic minimum selected.
|
|
226
|
+
|
|
227
|
+
"""
|
|
228
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMin.argtypes=[c_void_p]
|
|
229
|
+
GetDllLibPpt().IChartAxis_get_IsAutoMin.restype=c_bool
|
|
230
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsAutoMin,self.Ptr)
|
|
231
|
+
return ret
|
|
232
|
+
|
|
233
|
+
@IsAutoMin.setter
|
|
234
|
+
def IsAutoMin(self, value:bool):
|
|
235
|
+
GetDllLibPpt().IChartAxis_set_IsAutoMin.argtypes=[c_void_p, c_bool]
|
|
236
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsAutoMin,self.Ptr, value)
|
|
237
|
+
|
|
238
|
+
@property
|
|
239
|
+
def MinValue(self)->float:
|
|
240
|
+
"""
|
|
241
|
+
Represents the minimum value on the value axis.
|
|
242
|
+
|
|
243
|
+
"""
|
|
244
|
+
GetDllLibPpt().IChartAxis_get_MinValue.argtypes=[c_void_p]
|
|
245
|
+
GetDllLibPpt().IChartAxis_get_MinValue.restype=c_float
|
|
246
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MinValue,self.Ptr)
|
|
247
|
+
return ret
|
|
248
|
+
|
|
249
|
+
@MinValue.setter
|
|
250
|
+
def MinValue(self, value:float):
|
|
251
|
+
GetDllLibPpt().IChartAxis_set_MinValue.argtypes=[c_void_p, c_float]
|
|
252
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MinValue,self.Ptr, value)
|
|
253
|
+
|
|
254
|
+
@property
|
|
255
|
+
def IsLogScale(self)->bool:
|
|
256
|
+
"""
|
|
257
|
+
Logarithmic scale.
|
|
258
|
+
|
|
259
|
+
"""
|
|
260
|
+
GetDllLibPpt().IChartAxis_get_IsLogScale.argtypes=[c_void_p]
|
|
261
|
+
GetDllLibPpt().IChartAxis_get_IsLogScale.restype=c_bool
|
|
262
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsLogScale,self.Ptr)
|
|
263
|
+
return ret
|
|
264
|
+
|
|
265
|
+
@IsLogScale.setter
|
|
266
|
+
def IsLogScale(self, value:bool):
|
|
267
|
+
GetDllLibPpt().IChartAxis_set_IsLogScale.argtypes=[c_void_p, c_bool]
|
|
268
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsLogScale,self.Ptr, value)
|
|
269
|
+
|
|
270
|
+
@property
|
|
271
|
+
def LogScale(self)->int:
|
|
272
|
+
"""
|
|
273
|
+
Gets or sets the logarithmic base.
|
|
274
|
+
|
|
275
|
+
"""
|
|
276
|
+
GetDllLibPpt().IChartAxis_get_LogScale.argtypes=[c_void_p]
|
|
277
|
+
GetDllLibPpt().IChartAxis_get_LogScale.restype=c_int
|
|
278
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_LogScale,self.Ptr)
|
|
279
|
+
return ret
|
|
280
|
+
|
|
281
|
+
@LogScale.setter
|
|
282
|
+
def LogScale(self, value:int):
|
|
283
|
+
GetDllLibPpt().IChartAxis_set_LogScale.argtypes=[c_void_p, c_int]
|
|
284
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_LogScale,self.Ptr, value)
|
|
285
|
+
|
|
286
|
+
@property
|
|
287
|
+
def IsReversed(self)->bool:
|
|
288
|
+
"""
|
|
289
|
+
Gets or set plots data points from last to first.
|
|
290
|
+
|
|
291
|
+
"""
|
|
292
|
+
GetDllLibPpt().IChartAxis_get_IsReversed.argtypes=[c_void_p]
|
|
293
|
+
GetDllLibPpt().IChartAxis_get_IsReversed.restype=c_bool
|
|
294
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsReversed,self.Ptr)
|
|
295
|
+
return ret
|
|
296
|
+
|
|
297
|
+
@IsReversed.setter
|
|
298
|
+
def IsReversed(self, value:bool):
|
|
299
|
+
GetDllLibPpt().IChartAxis_set_IsReversed.argtypes=[c_void_p, c_bool]
|
|
300
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsReversed,self.Ptr, value)
|
|
301
|
+
|
|
302
|
+
@property
|
|
303
|
+
def IsVisible(self)->bool:
|
|
304
|
+
"""
|
|
305
|
+
Gets or sets if the axis is visible.
|
|
306
|
+
|
|
307
|
+
"""
|
|
308
|
+
GetDllLibPpt().IChartAxis_get_IsVisible.argtypes=[c_void_p]
|
|
309
|
+
GetDllLibPpt().IChartAxis_get_IsVisible.restype=c_bool
|
|
310
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsVisible,self.Ptr)
|
|
311
|
+
return ret
|
|
312
|
+
|
|
313
|
+
@IsVisible.setter
|
|
314
|
+
def IsVisible(self, value:bool):
|
|
315
|
+
GetDllLibPpt().IChartAxis_set_IsVisible.argtypes=[c_void_p, c_bool]
|
|
316
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsVisible,self.Ptr, value)
|
|
317
|
+
|
|
318
|
+
@property
|
|
319
|
+
|
|
320
|
+
def MajorTickMark(self)->'TickMarkType':
|
|
321
|
+
"""
|
|
322
|
+
Represents major tick marks.
|
|
323
|
+
|
|
324
|
+
"""
|
|
325
|
+
GetDllLibPpt().IChartAxis_get_MajorTickMark.argtypes=[c_void_p]
|
|
326
|
+
GetDllLibPpt().IChartAxis_get_MajorTickMark.restype=c_int
|
|
327
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MajorTickMark,self.Ptr)
|
|
328
|
+
objwraped = TickMarkType(ret)
|
|
329
|
+
return objwraped
|
|
330
|
+
|
|
331
|
+
@MajorTickMark.setter
|
|
332
|
+
def MajorTickMark(self, value:'TickMarkType'):
|
|
333
|
+
GetDllLibPpt().IChartAxis_set_MajorTickMark.argtypes=[c_void_p, c_int]
|
|
334
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MajorTickMark,self.Ptr, value.value)
|
|
335
|
+
|
|
336
|
+
@property
|
|
337
|
+
|
|
338
|
+
def MinorTickMark(self)->'TickMarkType':
|
|
339
|
+
"""
|
|
340
|
+
Represents the type of minor tick mark for the specified axis.
|
|
341
|
+
|
|
342
|
+
"""
|
|
343
|
+
GetDllLibPpt().IChartAxis_get_MinorTickMark.argtypes=[c_void_p]
|
|
344
|
+
GetDllLibPpt().IChartAxis_get_MinorTickMark.restype=c_int
|
|
345
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MinorTickMark,self.Ptr)
|
|
346
|
+
objwraped = TickMarkType(ret)
|
|
347
|
+
return objwraped
|
|
348
|
+
|
|
349
|
+
@MinorTickMark.setter
|
|
350
|
+
def MinorTickMark(self, value:'TickMarkType'):
|
|
351
|
+
GetDllLibPpt().IChartAxis_set_MinorTickMark.argtypes=[c_void_p, c_int]
|
|
352
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MinorTickMark,self.Ptr, value.value)
|
|
353
|
+
|
|
354
|
+
@property
|
|
355
|
+
|
|
356
|
+
def TickLabelPosition(self)->'TickLabelPositionType':
|
|
357
|
+
"""
|
|
358
|
+
Represents the position of tick-mark labels on the specified axis.
|
|
359
|
+
|
|
360
|
+
"""
|
|
361
|
+
GetDllLibPpt().IChartAxis_get_TickLabelPosition.argtypes=[c_void_p]
|
|
362
|
+
GetDllLibPpt().IChartAxis_get_TickLabelPosition.restype=c_int
|
|
363
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_TickLabelPosition,self.Ptr)
|
|
364
|
+
objwraped = TickLabelPositionType(ret)
|
|
365
|
+
return objwraped
|
|
366
|
+
|
|
367
|
+
@TickLabelPosition.setter
|
|
368
|
+
def TickLabelPosition(self, value:'TickLabelPositionType'):
|
|
369
|
+
GetDllLibPpt().IChartAxis_set_TickLabelPosition.argtypes=[c_void_p, c_int]
|
|
370
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_TickLabelPosition,self.Ptr, value.value)
|
|
371
|
+
|
|
372
|
+
@property
|
|
373
|
+
|
|
374
|
+
def MajorUnitScale(self)->'ChartBaseUnitType':
|
|
375
|
+
"""
|
|
376
|
+
Represents the major unit scale for the category axis.
|
|
377
|
+
|
|
378
|
+
"""
|
|
379
|
+
GetDllLibPpt().IChartAxis_get_MajorUnitScale.argtypes=[c_void_p]
|
|
380
|
+
GetDllLibPpt().IChartAxis_get_MajorUnitScale.restype=c_int
|
|
381
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MajorUnitScale,self.Ptr)
|
|
382
|
+
objwraped = ChartBaseUnitType(ret)
|
|
383
|
+
return objwraped
|
|
384
|
+
|
|
385
|
+
@MajorUnitScale.setter
|
|
386
|
+
def MajorUnitScale(self, value:'ChartBaseUnitType'):
|
|
387
|
+
GetDllLibPpt().IChartAxis_set_MajorUnitScale.argtypes=[c_void_p, c_int]
|
|
388
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MajorUnitScale,self.Ptr, value.value)
|
|
389
|
+
|
|
390
|
+
@property
|
|
391
|
+
|
|
392
|
+
def MinorUnitScale(self)->'ChartBaseUnitType':
|
|
393
|
+
"""
|
|
394
|
+
Represents the major unit scale for the category axis.
|
|
395
|
+
|
|
396
|
+
"""
|
|
397
|
+
GetDllLibPpt().IChartAxis_get_MinorUnitScale.argtypes=[c_void_p]
|
|
398
|
+
GetDllLibPpt().IChartAxis_get_MinorUnitScale.restype=c_int
|
|
399
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_MinorUnitScale,self.Ptr)
|
|
400
|
+
objwraped = ChartBaseUnitType(ret)
|
|
401
|
+
return objwraped
|
|
402
|
+
|
|
403
|
+
@MinorUnitScale.setter
|
|
404
|
+
def MinorUnitScale(self, value:'ChartBaseUnitType'):
|
|
405
|
+
GetDllLibPpt().IChartAxis_set_MinorUnitScale.argtypes=[c_void_p, c_int]
|
|
406
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_MinorUnitScale,self.Ptr, value.value)
|
|
407
|
+
|
|
408
|
+
@property
|
|
409
|
+
|
|
410
|
+
def BaseUnitScale(self)->'ChartBaseUnitType':
|
|
411
|
+
"""
|
|
412
|
+
Represents the base unit scale for the category axis.
|
|
413
|
+
|
|
414
|
+
"""
|
|
415
|
+
GetDllLibPpt().IChartAxis_get_BaseUnitScale.argtypes=[c_void_p]
|
|
416
|
+
GetDllLibPpt().IChartAxis_get_BaseUnitScale.restype=c_int
|
|
417
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_BaseUnitScale,self.Ptr)
|
|
418
|
+
objwraped = ChartBaseUnitType(ret)
|
|
419
|
+
return objwraped
|
|
420
|
+
|
|
421
|
+
@BaseUnitScale.setter
|
|
422
|
+
def BaseUnitScale(self, value:'ChartBaseUnitType'):
|
|
423
|
+
GetDllLibPpt().IChartAxis_set_BaseUnitScale.argtypes=[c_void_p, c_int]
|
|
424
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_BaseUnitScale,self.Ptr, value.value)
|
|
425
|
+
|
|
426
|
+
@property
|
|
427
|
+
|
|
428
|
+
def MinorGridLines(self)->'IChartGridLine':
|
|
429
|
+
"""
|
|
430
|
+
Represents minor gridlines on a chart axis.
|
|
431
|
+
|
|
432
|
+
"""
|
|
433
|
+
GetDllLibPpt().IChartAxis_get_MinorGridLines.argtypes=[c_void_p]
|
|
434
|
+
GetDllLibPpt().IChartAxis_get_MinorGridLines.restype=c_void_p
|
|
435
|
+
intPtr = CallCFunction(GetDllLibPpt().IChartAxis_get_MinorGridLines,self.Ptr)
|
|
436
|
+
ret = None if intPtr==None else IChartGridLine(intPtr)
|
|
437
|
+
return ret
|
|
438
|
+
|
|
439
|
+
|
|
440
|
+
@property
|
|
441
|
+
|
|
442
|
+
def MajorGridTextLines(self)->'IChartGridLine':
|
|
443
|
+
"""
|
|
444
|
+
Represents major gridlines on a chart axis.
|
|
445
|
+
|
|
446
|
+
"""
|
|
447
|
+
GetDllLibPpt().IChartAxis_get_MajorGridTextLines.argtypes=[c_void_p]
|
|
448
|
+
GetDllLibPpt().IChartAxis_get_MajorGridTextLines.restype=c_void_p
|
|
449
|
+
intPtr = CallCFunction(GetDllLibPpt().IChartAxis_get_MajorGridTextLines,self.Ptr)
|
|
450
|
+
ret = None if intPtr==None else IChartGridLine(intPtr)
|
|
451
|
+
return ret
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
@property
|
|
455
|
+
|
|
456
|
+
def ChartEffectFormat(self)->'IChartEffectFormat':
|
|
457
|
+
"""
|
|
458
|
+
Represents format of axis
|
|
459
|
+
|
|
460
|
+
"""
|
|
461
|
+
GetDllLibPpt().IChartAxis_get_ChartEffectFormat.argtypes=[c_void_p]
|
|
462
|
+
GetDllLibPpt().IChartAxis_get_ChartEffectFormat.restype=c_void_p
|
|
463
|
+
intPtr = CallCFunction(GetDllLibPpt().IChartAxis_get_ChartEffectFormat,self.Ptr)
|
|
464
|
+
ret = None if intPtr==None else IChartEffectFormat(intPtr)
|
|
465
|
+
return ret
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
@property
|
|
469
|
+
|
|
470
|
+
def TextProperties(self)->'ITextFrameProperties':
|
|
471
|
+
"""
|
|
472
|
+
Represent text properties of axis
|
|
473
|
+
|
|
474
|
+
"""
|
|
475
|
+
GetDllLibPpt().IChartAxis_get_TextProperties.argtypes=[c_void_p]
|
|
476
|
+
GetDllLibPpt().IChartAxis_get_TextProperties.restype=c_void_p
|
|
477
|
+
intPtr = CallCFunction(GetDllLibPpt().IChartAxis_get_TextProperties,self.Ptr)
|
|
478
|
+
ret = None if intPtr==None else ITextFrameProperties(intPtr)
|
|
479
|
+
return ret
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
@property
|
|
483
|
+
|
|
484
|
+
def Title(self)->'ChartTextArea':
|
|
485
|
+
"""
|
|
486
|
+
Gets the axis' title.
|
|
487
|
+
|
|
488
|
+
"""
|
|
489
|
+
GetDllLibPpt().IChartAxis_get_Title.argtypes=[c_void_p]
|
|
490
|
+
GetDllLibPpt().IChartAxis_get_Title.restype=c_void_p
|
|
491
|
+
intPtr = CallCFunction(GetDllLibPpt().IChartAxis_get_Title,self.Ptr)
|
|
492
|
+
ret = None if intPtr==None else ChartTextArea(intPtr)
|
|
493
|
+
return ret
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
@property
|
|
497
|
+
|
|
498
|
+
def ChartCrossType(self)->'ChartCrossesType':
|
|
499
|
+
"""
|
|
500
|
+
Represents the CrossType on the specified axis where the other axis crosses.
|
|
501
|
+
|
|
502
|
+
"""
|
|
503
|
+
GetDllLibPpt().IChartAxis_get_ChartCrossType.argtypes=[c_void_p]
|
|
504
|
+
GetDllLibPpt().IChartAxis_get_ChartCrossType.restype=c_int
|
|
505
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_ChartCrossType,self.Ptr)
|
|
506
|
+
objwraped = ChartCrossesType(ret)
|
|
507
|
+
return objwraped
|
|
508
|
+
|
|
509
|
+
@ChartCrossType.setter
|
|
510
|
+
def ChartCrossType(self, value:'ChartCrossesType'):
|
|
511
|
+
GetDllLibPpt().IChartAxis_set_ChartCrossType.argtypes=[c_void_p, c_int]
|
|
512
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_ChartCrossType,self.Ptr, value.value)
|
|
513
|
+
|
|
514
|
+
@property
|
|
515
|
+
|
|
516
|
+
def Position(self)->'AxisPositionType':
|
|
517
|
+
"""
|
|
518
|
+
Represents position of axis
|
|
519
|
+
|
|
520
|
+
"""
|
|
521
|
+
GetDllLibPpt().IChartAxis_get_Position.argtypes=[c_void_p]
|
|
522
|
+
GetDllLibPpt().IChartAxis_get_Position.restype=c_int
|
|
523
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_Position,self.Ptr)
|
|
524
|
+
objwraped = AxisPositionType(ret)
|
|
525
|
+
return objwraped
|
|
526
|
+
|
|
527
|
+
@Position.setter
|
|
528
|
+
def Position(self, value:'AxisPositionType'):
|
|
529
|
+
GetDllLibPpt().IChartAxis_set_Position.argtypes=[c_void_p, c_int]
|
|
530
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_Position,self.Ptr, value.value)
|
|
531
|
+
|
|
532
|
+
@property
|
|
533
|
+
def HasTitle(self)->bool:
|
|
534
|
+
"""
|
|
535
|
+
Indicates whether a axis has a visible title.
|
|
536
|
+
|
|
537
|
+
"""
|
|
538
|
+
GetDllLibPpt().IChartAxis_get_HasTitle.argtypes=[c_void_p]
|
|
539
|
+
GetDllLibPpt().IChartAxis_get_HasTitle.restype=c_bool
|
|
540
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_HasTitle,self.Ptr)
|
|
541
|
+
return ret
|
|
542
|
+
|
|
543
|
+
@HasTitle.setter
|
|
544
|
+
def HasTitle(self, value:bool):
|
|
545
|
+
GetDllLibPpt().IChartAxis_set_HasTitle.argtypes=[c_void_p, c_bool]
|
|
546
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_HasTitle,self.Ptr, value)
|
|
547
|
+
|
|
548
|
+
@property
|
|
549
|
+
|
|
550
|
+
def NumberFormat(self)->str:
|
|
551
|
+
"""
|
|
552
|
+
Gets or sets number format string.
|
|
553
|
+
|
|
554
|
+
"""
|
|
555
|
+
GetDllLibPpt().IChartAxis_get_NumberFormat.argtypes=[c_void_p]
|
|
556
|
+
GetDllLibPpt().IChartAxis_get_NumberFormat.restype=c_void_p
|
|
557
|
+
ret = PtrToStr(CallCFunction(GetDllLibPpt().IChartAxis_get_NumberFormat,self.Ptr))
|
|
558
|
+
return ret
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
@NumberFormat.setter
|
|
562
|
+
def NumberFormat(self, value:str):
|
|
563
|
+
valuePtr = StrToPtr(value)
|
|
564
|
+
GetDllLibPpt().IChartAxis_set_NumberFormat.argtypes=[c_void_p, c_char_p]
|
|
565
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_NumberFormat,self.Ptr,valuePtr)
|
|
566
|
+
|
|
567
|
+
@property
|
|
568
|
+
def HasDataSource(self)->bool:
|
|
569
|
+
"""
|
|
570
|
+
Indicates whether the format is linked source data.
|
|
571
|
+
|
|
572
|
+
"""
|
|
573
|
+
GetDllLibPpt().IChartAxis_get_HasDataSource.argtypes=[c_void_p]
|
|
574
|
+
GetDllLibPpt().IChartAxis_get_HasDataSource.restype=c_bool
|
|
575
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_HasDataSource,self.Ptr)
|
|
576
|
+
return ret
|
|
577
|
+
|
|
578
|
+
@HasDataSource.setter
|
|
579
|
+
def HasDataSource(self, value:bool):
|
|
580
|
+
GetDllLibPpt().IChartAxis_set_HasDataSource.argtypes=[c_void_p, c_bool]
|
|
581
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_HasDataSource,self.Ptr, value)
|
|
582
|
+
|
|
583
|
+
@property
|
|
584
|
+
def TextRotationAngle(self)->float:
|
|
585
|
+
"""
|
|
586
|
+
Text rotation angle.
|
|
587
|
+
|
|
588
|
+
"""
|
|
589
|
+
GetDllLibPpt().IChartAxis_get_TextRotationAngle.argtypes=[c_void_p]
|
|
590
|
+
GetDllLibPpt().IChartAxis_get_TextRotationAngle.restype=c_float
|
|
591
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_TextRotationAngle,self.Ptr)
|
|
592
|
+
return ret
|
|
593
|
+
|
|
594
|
+
@TextRotationAngle.setter
|
|
595
|
+
def TextRotationAngle(self, value:float):
|
|
596
|
+
GetDllLibPpt().IChartAxis_set_TextRotationAngle.argtypes=[c_void_p, c_float]
|
|
597
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_TextRotationAngle,self.Ptr, value)
|
|
598
|
+
|
|
599
|
+
@property
|
|
600
|
+
|
|
601
|
+
def TickLabelSpacing(self)->'int':
|
|
602
|
+
"""
|
|
603
|
+
Represents the number of categories or series between tick-mark labels.
|
|
604
|
+
Property IsAutomaticTickLabelSpacing is false ,this property is valid
|
|
605
|
+
|
|
606
|
+
"""
|
|
607
|
+
GetDllLibPpt().IChartAxis_get_TickLabelSpacing.argtypes=[c_void_p]
|
|
608
|
+
GetDllLibPpt().IChartAxis_get_TickLabelSpacing.restype=c_int
|
|
609
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_TickLabelSpacing,self.Ptr)
|
|
610
|
+
return ret
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
@TickLabelSpacing.setter
|
|
614
|
+
def TickLabelSpacing(self, value:'int'):
|
|
615
|
+
GetDllLibPpt().IChartAxis_set_TickLabelSpacing.argtypes=[c_void_p, c_int]
|
|
616
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_TickLabelSpacing,self.Ptr, value)
|
|
617
|
+
|
|
618
|
+
@property
|
|
619
|
+
|
|
620
|
+
def Parent(self)->'SpireObject':
|
|
621
|
+
"""
|
|
622
|
+
Reference to Parent object. Read-only.
|
|
623
|
+
|
|
624
|
+
"""
|
|
625
|
+
GetDllLibPpt().IChartAxis_get_Parent.argtypes=[c_void_p]
|
|
626
|
+
GetDllLibPpt().IChartAxis_get_Parent.restype=c_void_p
|
|
627
|
+
intPtr = CallCFunction(GetDllLibPpt().IChartAxis_get_Parent,self.Ptr)
|
|
628
|
+
ret = None if intPtr==None else SpireObject(intPtr)
|
|
629
|
+
return ret
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
def Dispose(self):
|
|
633
|
+
"""
|
|
634
|
+
Dispose object and free resources.
|
|
635
|
+
|
|
636
|
+
"""
|
|
637
|
+
GetDllLibPpt().IChartAxis_Dispose.argtypes=[c_void_p]
|
|
638
|
+
CallCFunction(GetDllLibPpt().IChartAxis_Dispose,self.Ptr)
|
|
639
|
+
|
|
640
|
+
@property
|
|
641
|
+
def IsAutomaticTickLabelSpacing(self)->bool:
|
|
642
|
+
"""
|
|
643
|
+
Specifies automatic tick label spacing value. If false: use TickLabelSpacing property.
|
|
644
|
+
|
|
645
|
+
"""
|
|
646
|
+
GetDllLibPpt().IChartAxis_get_IsAutomaticTickLabelSpacing.argtypes=[c_void_p]
|
|
647
|
+
GetDllLibPpt().IChartAxis_get_IsAutomaticTickLabelSpacing.restype=c_bool
|
|
648
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsAutomaticTickLabelSpacing,self.Ptr)
|
|
649
|
+
return ret
|
|
650
|
+
|
|
651
|
+
@IsAutomaticTickLabelSpacing.setter
|
|
652
|
+
def IsAutomaticTickLabelSpacing(self, value:bool):
|
|
653
|
+
GetDllLibPpt().IChartAxis_set_IsAutomaticTickLabelSpacing.argtypes=[c_void_p, c_bool]
|
|
654
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsAutomaticTickLabelSpacing,self.Ptr, value)
|
|
655
|
+
|
|
656
|
+
@property
|
|
657
|
+
|
|
658
|
+
def CrossBetweenType(self)->'CrossBetweenType':
|
|
659
|
+
"""
|
|
660
|
+
Specifies whether the value axis crosses the category axis between categories or on categories
|
|
661
|
+
Only support value axis set value
|
|
662
|
+
|
|
663
|
+
"""
|
|
664
|
+
GetDllLibPpt().IChartAxis_get_CrossBetweenType.argtypes=[c_void_p]
|
|
665
|
+
GetDllLibPpt().IChartAxis_get_CrossBetweenType.restype=c_int
|
|
666
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_CrossBetweenType,self.Ptr)
|
|
667
|
+
objwraped = CrossBetweenType(ret)
|
|
668
|
+
return objwraped
|
|
669
|
+
|
|
670
|
+
@CrossBetweenType.setter
|
|
671
|
+
def CrossBetweenType(self, value:'CrossBetweenType'):
|
|
672
|
+
GetDllLibPpt().IChartAxis_set_CrossBetweenType.argtypes=[c_void_p, c_int]
|
|
673
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_CrossBetweenType,self.Ptr, value.value)
|
|
674
|
+
|
|
675
|
+
@property
|
|
676
|
+
def HasMultiLvlLbl(self)->bool:
|
|
677
|
+
"""
|
|
678
|
+
Gets or sets if the label of categoryAxis has multiple levels.
|
|
679
|
+
|
|
680
|
+
"""
|
|
681
|
+
GetDllLibPpt().IChartAxis_get_HasMultiLvlLbl.argtypes=[c_void_p]
|
|
682
|
+
GetDllLibPpt().IChartAxis_get_HasMultiLvlLbl.restype=c_bool
|
|
683
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_HasMultiLvlLbl,self.Ptr)
|
|
684
|
+
return ret
|
|
685
|
+
|
|
686
|
+
@HasMultiLvlLbl.setter
|
|
687
|
+
def HasMultiLvlLbl(self, value:bool):
|
|
688
|
+
GetDllLibPpt().IChartAxis_set_HasMultiLvlLbl.argtypes=[c_void_p, c_bool]
|
|
689
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_HasMultiLvlLbl,self.Ptr, value)
|
|
690
|
+
|
|
691
|
+
@property
|
|
692
|
+
def IsMergeSameLabel(self)->bool:
|
|
693
|
+
"""
|
|
694
|
+
Gets or sets if the first level label of categoryAxis merge the same item.
|
|
695
|
+
|
|
696
|
+
"""
|
|
697
|
+
GetDllLibPpt().IChartAxis_get_IsMergeSameLabel.argtypes=[c_void_p]
|
|
698
|
+
GetDllLibPpt().IChartAxis_get_IsMergeSameLabel.restype=c_bool
|
|
699
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsMergeSameLabel,self.Ptr)
|
|
700
|
+
return ret
|
|
701
|
+
|
|
702
|
+
@IsMergeSameLabel.setter
|
|
703
|
+
def IsMergeSameLabel(self, value:bool):
|
|
704
|
+
GetDllLibPpt().IChartAxis_set_IsMergeSameLabel.argtypes=[c_void_p, c_bool]
|
|
705
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsMergeSameLabel,self.Ptr, value)
|
|
706
|
+
|
|
707
|
+
@property
|
|
708
|
+
|
|
709
|
+
def AxisType(self)->'AxisType':
|
|
710
|
+
"""
|
|
711
|
+
Gets or sets CategoryAxis Type.
|
|
712
|
+
|
|
713
|
+
"""
|
|
714
|
+
GetDllLibPpt().IChartAxis_get_AxisType.argtypes=[c_void_p]
|
|
715
|
+
GetDllLibPpt().IChartAxis_get_AxisType.restype=c_int
|
|
716
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_AxisType,self.Ptr)
|
|
717
|
+
objwraped = AxisType(ret)
|
|
718
|
+
return objwraped
|
|
719
|
+
|
|
720
|
+
@AxisType.setter
|
|
721
|
+
def AxisType(self, value:'AxisType'):
|
|
722
|
+
GetDllLibPpt().IChartAxis_set_AxisType.argtypes=[c_void_p, c_int]
|
|
723
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_AxisType,self.Ptr, value.value)
|
|
724
|
+
|
|
725
|
+
@property
|
|
726
|
+
|
|
727
|
+
def TickMarkSpacing(self)->'int':
|
|
728
|
+
"""
|
|
729
|
+
Represents the number of ticks between tick-mark labels.
|
|
730
|
+
Property IsAutomaticTickLabelSpacing is false ,this property is valid
|
|
731
|
+
|
|
732
|
+
"""
|
|
733
|
+
GetDllLibPpt().IChartAxis_get_TickMarkSpacing.argtypes=[c_void_p]
|
|
734
|
+
GetDllLibPpt().IChartAxis_get_TickMarkSpacing.restype=c_int
|
|
735
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_TickMarkSpacing,self.Ptr)
|
|
736
|
+
return ret
|
|
737
|
+
|
|
738
|
+
|
|
739
|
+
@TickMarkSpacing.setter
|
|
740
|
+
def TickMarkSpacing(self, value:'int'):
|
|
741
|
+
GetDllLibPpt().IChartAxis_set_TickMarkSpacing.argtypes=[c_void_p, c_int]
|
|
742
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_TickMarkSpacing,self.Ptr, value)
|
|
743
|
+
|
|
744
|
+
@property
|
|
745
|
+
def IsAutomaticTickMarkSpacing(self)->bool:
|
|
746
|
+
"""
|
|
747
|
+
|
|
748
|
+
"""
|
|
749
|
+
GetDllLibPpt().IChartAxis_get_IsAutomaticTickMarkSpacing.argtypes=[c_void_p]
|
|
750
|
+
GetDllLibPpt().IChartAxis_get_IsAutomaticTickMarkSpacing.restype=c_bool
|
|
751
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsAutomaticTickMarkSpacing,self.Ptr)
|
|
752
|
+
return ret
|
|
753
|
+
|
|
754
|
+
@IsAutomaticTickMarkSpacing.setter
|
|
755
|
+
def IsAutomaticTickMarkSpacing(self, value:bool):
|
|
756
|
+
GetDllLibPpt().IChartAxis_set_IsAutomaticTickMarkSpacing.argtypes=[c_void_p, c_bool]
|
|
757
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsAutomaticTickMarkSpacing,self.Ptr, value)
|
|
758
|
+
|
|
759
|
+
@property
|
|
760
|
+
def IsBinningByCategory(self)->bool:
|
|
761
|
+
"""
|
|
762
|
+
True if bins generated by category values. otherwise False
|
|
763
|
+
|
|
764
|
+
Applies only to Histogram and Pareto charts.
|
|
765
|
+
"""
|
|
766
|
+
GetDllLibPpt().IChartAxis_get_IsBinningByCategory.argtypes=[c_void_p]
|
|
767
|
+
GetDllLibPpt().IChartAxis_get_IsBinningByCategory.restype=c_bool
|
|
768
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_IsBinningByCategory,self.Ptr)
|
|
769
|
+
return ret
|
|
770
|
+
|
|
771
|
+
@IsBinningByCategory.setter
|
|
772
|
+
def IsBinningByCategory(self, value:bool):
|
|
773
|
+
GetDllLibPpt().IChartAxis_set_IsBinningByCategory.argtypes=[c_void_p, c_bool]
|
|
774
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_IsBinningByCategory,self.Ptr, value)
|
|
775
|
+
|
|
776
|
+
@property
|
|
777
|
+
def HasAutomaticBins(self)->bool:
|
|
778
|
+
"""
|
|
779
|
+
True if bins generated are automatic. otherwise False
|
|
780
|
+
|
|
781
|
+
Applies only to Histogram and Pareto charts.
|
|
782
|
+
"""
|
|
783
|
+
GetDllLibPpt().IChartAxis_get_HasAutomaticBins.argtypes=[c_void_p]
|
|
784
|
+
GetDllLibPpt().IChartAxis_get_HasAutomaticBins.restype=c_bool
|
|
785
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_HasAutomaticBins,self.Ptr)
|
|
786
|
+
return ret
|
|
787
|
+
|
|
788
|
+
@HasAutomaticBins.setter
|
|
789
|
+
def HasAutomaticBins(self, value:bool):
|
|
790
|
+
GetDllLibPpt().IChartAxis_set_HasAutomaticBins.argtypes=[c_void_p, c_bool]
|
|
791
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_HasAutomaticBins,self.Ptr, value)
|
|
792
|
+
|
|
793
|
+
@property
|
|
794
|
+
def NumberOfBins(self)->int:
|
|
795
|
+
"""
|
|
796
|
+
Get or set the Number of Bins in the axis
|
|
797
|
+
|
|
798
|
+
Applies only to Histogram and Pareto charts.Can be a value from 1 through 31999.
|
|
799
|
+
"""
|
|
800
|
+
GetDllLibPpt().IChartAxis_get_NumberOfBins.argtypes=[c_void_p]
|
|
801
|
+
GetDllLibPpt().IChartAxis_get_NumberOfBins.restype=c_int
|
|
802
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_NumberOfBins,self.Ptr)
|
|
803
|
+
return ret
|
|
804
|
+
|
|
805
|
+
@NumberOfBins.setter
|
|
806
|
+
def NumberOfBins(self, value:int):
|
|
807
|
+
GetDllLibPpt().IChartAxis_set_NumberOfBins.argtypes=[c_void_p, c_int]
|
|
808
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_NumberOfBins,self.Ptr, value)
|
|
809
|
+
|
|
810
|
+
@property
|
|
811
|
+
def BinWidth(self)->float:
|
|
812
|
+
"""
|
|
813
|
+
Get or Set the number of data points in each range.
|
|
814
|
+
|
|
815
|
+
Applies only to Histogram and Pareto charts.
|
|
816
|
+
"""
|
|
817
|
+
GetDllLibPpt().IChartAxis_get_BinWidth.argtypes=[c_void_p]
|
|
818
|
+
GetDllLibPpt().IChartAxis_get_BinWidth.restype=c_double
|
|
819
|
+
ret = CallCFunction(GetDllLibPpt().IChartAxis_get_BinWidth,self.Ptr)
|
|
820
|
+
return ret
|
|
821
|
+
|
|
822
|
+
@BinWidth.setter
|
|
823
|
+
def BinWidth(self, value:float):
|
|
824
|
+
GetDllLibPpt().IChartAxis_set_BinWidth.argtypes=[c_void_p, c_double]
|
|
825
|
+
CallCFunction(GetDllLibPpt().IChartAxis_set_BinWidth,self.Ptr, value)
|
|
826
|
+
|