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,828 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
from plum import dispatch
|
|
3
|
+
from typing import TypeVar,Union,Generic,List,Tuple
|
|
4
|
+
from spire.presentation.common import *
|
|
5
|
+
from spire.presentation import *
|
|
6
|
+
from ctypes import *
|
|
7
|
+
import abc
|
|
8
|
+
|
|
9
|
+
class ChartAxis ( PptObject, IChartAxis) :
|
|
10
|
+
"""
|
|
11
|
+
Represents a chart axis, defining scale, labels, and formatting for chart dimensions.
|
|
12
|
+
|
|
13
|
+
This class provides comprehensive control over axis properties including scaling,
|
|
14
|
+
tick marks, grid lines, labels, and positioning for both category and value axes.
|
|
15
|
+
"""
|
|
16
|
+
@property
|
|
17
|
+
def IsCrossCategories(self)->bool:
|
|
18
|
+
"""
|
|
19
|
+
Indicates whether the value axis crosses between categories.
|
|
20
|
+
|
|
21
|
+
Returns:
|
|
22
|
+
bool: True if crossing between categories, False otherwise
|
|
23
|
+
"""
|
|
24
|
+
GetDllLibPpt().ChartAxis_get_IsCrossCategories.argtypes=[c_void_p]
|
|
25
|
+
GetDllLibPpt().ChartAxis_get_IsCrossCategories.restype=c_bool
|
|
26
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsCrossCategories,self.Ptr)
|
|
27
|
+
return ret
|
|
28
|
+
|
|
29
|
+
@IsCrossCategories.setter
|
|
30
|
+
def IsCrossCategories(self, value:bool):
|
|
31
|
+
GetDllLibPpt().ChartAxis_set_IsCrossCategories.argtypes=[c_void_p, c_bool]
|
|
32
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsCrossCategories,self.Ptr, value)
|
|
33
|
+
|
|
34
|
+
@property
|
|
35
|
+
def CrossAt(self)->float:
|
|
36
|
+
"""
|
|
37
|
+
Gets or sets the point where the category axis crosses the value axis.
|
|
38
|
+
|
|
39
|
+
Returns:
|
|
40
|
+
float: The crossing point value
|
|
41
|
+
"""
|
|
42
|
+
GetDllLibPpt().ChartAxis_get_CrossAt.argtypes=[c_void_p]
|
|
43
|
+
GetDllLibPpt().ChartAxis_get_CrossAt.restype=c_float
|
|
44
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_CrossAt,self.Ptr)
|
|
45
|
+
return ret
|
|
46
|
+
|
|
47
|
+
@CrossAt.setter
|
|
48
|
+
def CrossAt(self, value:float):
|
|
49
|
+
GetDllLibPpt().ChartAxis_set_CrossAt.argtypes=[c_void_p, c_float]
|
|
50
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_CrossAt,self.Ptr, value)
|
|
51
|
+
|
|
52
|
+
@property
|
|
53
|
+
|
|
54
|
+
def DisplayUnit(self)->'ChartDisplayUnitType':
|
|
55
|
+
"""
|
|
56
|
+
Gets or sets the unit label for the axis.
|
|
57
|
+
|
|
58
|
+
Returns:
|
|
59
|
+
ChartDisplayUnitType: The current display unit type
|
|
60
|
+
"""
|
|
61
|
+
GetDllLibPpt().ChartAxis_get_DisplayUnit.argtypes=[c_void_p]
|
|
62
|
+
GetDllLibPpt().ChartAxis_get_DisplayUnit.restype=c_int
|
|
63
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_DisplayUnit,self.Ptr)
|
|
64
|
+
objwraped = ChartDisplayUnitType(ret)
|
|
65
|
+
return objwraped
|
|
66
|
+
|
|
67
|
+
@DisplayUnit.setter
|
|
68
|
+
def DisplayUnit(self, value:'ChartDisplayUnitType'):
|
|
69
|
+
GetDllLibPpt().ChartAxis_set_DisplayUnit.argtypes=[c_void_p, c_int]
|
|
70
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_DisplayUnit,self.Ptr, value.value)
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
def IsAutoMax(self)->bool:
|
|
74
|
+
"""
|
|
75
|
+
Indicates whether the axis maximum is automatically calculated.
|
|
76
|
+
|
|
77
|
+
Returns:
|
|
78
|
+
bool: True if maximum is automatic, False if manually specified
|
|
79
|
+
"""
|
|
80
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMax.argtypes=[c_void_p]
|
|
81
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMax.restype=c_bool
|
|
82
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsAutoMax,self.Ptr)
|
|
83
|
+
return ret
|
|
84
|
+
|
|
85
|
+
@IsAutoMax.setter
|
|
86
|
+
def IsAutoMax(self, value:bool):
|
|
87
|
+
GetDllLibPpt().ChartAxis_set_IsAutoMax.argtypes=[c_void_p, c_bool]
|
|
88
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsAutoMax,self.Ptr, value)
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
def MaxValue(self)->float:
|
|
92
|
+
"""
|
|
93
|
+
Gets or sets the maximum value for the axis.
|
|
94
|
+
|
|
95
|
+
Returns:
|
|
96
|
+
float: The maximum axis value
|
|
97
|
+
"""
|
|
98
|
+
GetDllLibPpt().ChartAxis_get_MaxValue.argtypes=[c_void_p]
|
|
99
|
+
GetDllLibPpt().ChartAxis_get_MaxValue.restype=c_float
|
|
100
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MaxValue,self.Ptr)
|
|
101
|
+
return ret
|
|
102
|
+
|
|
103
|
+
@MaxValue.setter
|
|
104
|
+
def MaxValue(self, value:float):
|
|
105
|
+
GetDllLibPpt().ChartAxis_set_MaxValue.argtypes=[c_void_p, c_float]
|
|
106
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MaxValue,self.Ptr, value)
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
def MinorUnit(self)->float:
|
|
110
|
+
"""
|
|
111
|
+
Gets or sets value of minor increment.
|
|
112
|
+
|
|
113
|
+
Returns:
|
|
114
|
+
float: The minor increment.
|
|
115
|
+
"""
|
|
116
|
+
GetDllLibPpt().ChartAxis_get_MinorUnit.argtypes=[c_void_p]
|
|
117
|
+
GetDllLibPpt().ChartAxis_get_MinorUnit.restype=c_float
|
|
118
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MinorUnit,self.Ptr)
|
|
119
|
+
return ret
|
|
120
|
+
|
|
121
|
+
@MinorUnit.setter
|
|
122
|
+
def MinorUnit(self, value:float):
|
|
123
|
+
GetDllLibPpt().ChartAxis_set_MinorUnit.argtypes=[c_void_p, c_float]
|
|
124
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MinorUnit,self.Ptr, value)
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
def IsAutoMinor(self)->bool:
|
|
128
|
+
"""
|
|
129
|
+
Gets or sets Indicates whether the minor unit of the axis is automatically assigned.
|
|
130
|
+
|
|
131
|
+
Returns:
|
|
132
|
+
bool: if the minor unit of the axis is automatically assigned.
|
|
133
|
+
"""
|
|
134
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMinor.argtypes=[c_void_p]
|
|
135
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMinor.restype=c_bool
|
|
136
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsAutoMinor,self.Ptr)
|
|
137
|
+
return ret
|
|
138
|
+
|
|
139
|
+
@IsAutoMinor.setter
|
|
140
|
+
def IsAutoMinor(self, value:bool):
|
|
141
|
+
GetDllLibPpt().ChartAxis_set_IsAutoMinor.argtypes=[c_void_p, c_bool]
|
|
142
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsAutoMinor,self.Ptr, value)
|
|
143
|
+
|
|
144
|
+
@property
|
|
145
|
+
def MajorUnit(self)->float:
|
|
146
|
+
"""
|
|
147
|
+
Gets or sets the major units for the axis.
|
|
148
|
+
|
|
149
|
+
Returns:
|
|
150
|
+
float: The major units value.
|
|
151
|
+
"""
|
|
152
|
+
GetDllLibPpt().ChartAxis_get_MajorUnit.argtypes=[c_void_p]
|
|
153
|
+
GetDllLibPpt().ChartAxis_get_MajorUnit.restype=c_float
|
|
154
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MajorUnit,self.Ptr)
|
|
155
|
+
return ret
|
|
156
|
+
|
|
157
|
+
@MajorUnit.setter
|
|
158
|
+
def MajorUnit(self, value:float):
|
|
159
|
+
GetDllLibPpt().ChartAxis_set_MajorUnit.argtypes=[c_void_p, c_float]
|
|
160
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MajorUnit,self.Ptr, value)
|
|
161
|
+
|
|
162
|
+
@property
|
|
163
|
+
def IsAutoMajor(self)->bool:
|
|
164
|
+
"""
|
|
165
|
+
Gets or sets automatic major selected.
|
|
166
|
+
|
|
167
|
+
Returns:
|
|
168
|
+
bool: if major unit is automatic.
|
|
169
|
+
"""
|
|
170
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMajor.argtypes=[c_void_p]
|
|
171
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMajor.restype=c_bool
|
|
172
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsAutoMajor,self.Ptr)
|
|
173
|
+
return ret
|
|
174
|
+
|
|
175
|
+
@IsAutoMajor.setter
|
|
176
|
+
def IsAutoMajor(self, value:bool):
|
|
177
|
+
GetDllLibPpt().ChartAxis_set_IsAutoMajor.argtypes=[c_void_p, c_bool]
|
|
178
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsAutoMajor,self.Ptr, value)
|
|
179
|
+
|
|
180
|
+
@property
|
|
181
|
+
def IsAutoMin(self)->bool:
|
|
182
|
+
"""
|
|
183
|
+
Gets or sets automatic min selected.
|
|
184
|
+
|
|
185
|
+
Returns:
|
|
186
|
+
bool: if min unit is automatic.
|
|
187
|
+
"""
|
|
188
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMin.argtypes=[c_void_p]
|
|
189
|
+
GetDllLibPpt().ChartAxis_get_IsAutoMin.restype=c_bool
|
|
190
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsAutoMin,self.Ptr)
|
|
191
|
+
return ret
|
|
192
|
+
|
|
193
|
+
@IsAutoMin.setter
|
|
194
|
+
def IsAutoMin(self, value:bool):
|
|
195
|
+
GetDllLibPpt().ChartAxis_set_IsAutoMin.argtypes=[c_void_p, c_bool]
|
|
196
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsAutoMin,self.Ptr, value)
|
|
197
|
+
|
|
198
|
+
@property
|
|
199
|
+
def MinValue(self)->float:
|
|
200
|
+
"""
|
|
201
|
+
Represents the minimum value on the value axis.
|
|
202
|
+
|
|
203
|
+
Returns:
|
|
204
|
+
float: minimum value.
|
|
205
|
+
"""
|
|
206
|
+
GetDllLibPpt().ChartAxis_get_MinValue.argtypes=[c_void_p]
|
|
207
|
+
GetDllLibPpt().ChartAxis_get_MinValue.restype=c_float
|
|
208
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MinValue,self.Ptr)
|
|
209
|
+
return ret
|
|
210
|
+
|
|
211
|
+
@MinValue.setter
|
|
212
|
+
def MinValue(self, value:float):
|
|
213
|
+
GetDllLibPpt().ChartAxis_set_MinValue.argtypes=[c_void_p, c_float]
|
|
214
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MinValue,self.Ptr, value)
|
|
215
|
+
|
|
216
|
+
@property
|
|
217
|
+
def IsLogScale(self)->bool:
|
|
218
|
+
"""
|
|
219
|
+
Logarithmic scale.
|
|
220
|
+
|
|
221
|
+
Returns:
|
|
222
|
+
bool: if Logarithmic scale.
|
|
223
|
+
"""
|
|
224
|
+
GetDllLibPpt().ChartAxis_get_IsLogScale.argtypes=[c_void_p]
|
|
225
|
+
GetDllLibPpt().ChartAxis_get_IsLogScale.restype=c_bool
|
|
226
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsLogScale,self.Ptr)
|
|
227
|
+
return ret
|
|
228
|
+
|
|
229
|
+
@IsLogScale.setter
|
|
230
|
+
def IsLogScale(self, value:bool):
|
|
231
|
+
GetDllLibPpt().ChartAxis_set_IsLogScale.argtypes=[c_void_p, c_bool]
|
|
232
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsLogScale,self.Ptr, value)
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
def LogScale(self)->int:
|
|
236
|
+
"""
|
|
237
|
+
Gets or sets the logarithmic base.
|
|
238
|
+
|
|
239
|
+
Returns:
|
|
240
|
+
int: logarithmic base.
|
|
241
|
+
"""
|
|
242
|
+
GetDllLibPpt().ChartAxis_get_LogScale.argtypes=[c_void_p]
|
|
243
|
+
GetDllLibPpt().ChartAxis_get_LogScale.restype=c_int
|
|
244
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_LogScale,self.Ptr)
|
|
245
|
+
return ret
|
|
246
|
+
|
|
247
|
+
@LogScale.setter
|
|
248
|
+
def LogScale(self, value:int):
|
|
249
|
+
GetDllLibPpt().ChartAxis_set_LogScale.argtypes=[c_void_p, c_int]
|
|
250
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_LogScale,self.Ptr, value)
|
|
251
|
+
|
|
252
|
+
@property
|
|
253
|
+
def IsReversed(self)->bool:
|
|
254
|
+
"""
|
|
255
|
+
Gets or set plots data points from last to first.
|
|
256
|
+
|
|
257
|
+
Returns:
|
|
258
|
+
bool:if plots data points are from last to first.
|
|
259
|
+
"""
|
|
260
|
+
GetDllLibPpt().ChartAxis_get_IsReversed.argtypes=[c_void_p]
|
|
261
|
+
GetDllLibPpt().ChartAxis_get_IsReversed.restype=c_bool
|
|
262
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsReversed,self.Ptr)
|
|
263
|
+
return ret
|
|
264
|
+
|
|
265
|
+
@IsReversed.setter
|
|
266
|
+
def IsReversed(self, value:bool):
|
|
267
|
+
GetDllLibPpt().ChartAxis_set_IsReversed.argtypes=[c_void_p, c_bool]
|
|
268
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsReversed,self.Ptr, value)
|
|
269
|
+
|
|
270
|
+
@property
|
|
271
|
+
def IsVisible(self)->bool:
|
|
272
|
+
"""
|
|
273
|
+
Gets or sets if the axis is visible.
|
|
274
|
+
"""
|
|
275
|
+
GetDllLibPpt().ChartAxis_get_IsVisible.argtypes=[c_void_p]
|
|
276
|
+
GetDllLibPpt().ChartAxis_get_IsVisible.restype=c_bool
|
|
277
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsVisible,self.Ptr)
|
|
278
|
+
return ret
|
|
279
|
+
|
|
280
|
+
@IsVisible.setter
|
|
281
|
+
def IsVisible(self, value:bool):
|
|
282
|
+
GetDllLibPpt().ChartAxis_set_IsVisible.argtypes=[c_void_p, c_bool]
|
|
283
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsVisible,self.Ptr, value)
|
|
284
|
+
|
|
285
|
+
@property
|
|
286
|
+
|
|
287
|
+
def MajorTickMark(self)->'TickMarkType':
|
|
288
|
+
"""
|
|
289
|
+
Represents major tick marks.
|
|
290
|
+
|
|
291
|
+
Returns:
|
|
292
|
+
TickMarkType:TickMark Type.
|
|
293
|
+
"""
|
|
294
|
+
GetDllLibPpt().ChartAxis_get_MajorTickMark.argtypes=[c_void_p]
|
|
295
|
+
GetDllLibPpt().ChartAxis_get_MajorTickMark.restype=c_int
|
|
296
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MajorTickMark,self.Ptr)
|
|
297
|
+
objwraped = TickMarkType(ret)
|
|
298
|
+
return objwraped
|
|
299
|
+
|
|
300
|
+
@MajorTickMark.setter
|
|
301
|
+
def MajorTickMark(self, value:'TickMarkType'):
|
|
302
|
+
GetDllLibPpt().ChartAxis_set_MajorTickMark.argtypes=[c_void_p, c_int]
|
|
303
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MajorTickMark,self.Ptr, value.value)
|
|
304
|
+
|
|
305
|
+
@property
|
|
306
|
+
|
|
307
|
+
def MinorTickMark(self)->'TickMarkType':
|
|
308
|
+
"""
|
|
309
|
+
Represents the type of minor tick mark for the specified axis.
|
|
310
|
+
"""
|
|
311
|
+
GetDllLibPpt().ChartAxis_get_MinorTickMark.argtypes=[c_void_p]
|
|
312
|
+
GetDllLibPpt().ChartAxis_get_MinorTickMark.restype=c_int
|
|
313
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MinorTickMark,self.Ptr)
|
|
314
|
+
objwraped = TickMarkType(ret)
|
|
315
|
+
return objwraped
|
|
316
|
+
|
|
317
|
+
@MinorTickMark.setter
|
|
318
|
+
def MinorTickMark(self, value:'TickMarkType'):
|
|
319
|
+
GetDllLibPpt().ChartAxis_set_MinorTickMark.argtypes=[c_void_p, c_int]
|
|
320
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MinorTickMark,self.Ptr, value.value)
|
|
321
|
+
|
|
322
|
+
@property
|
|
323
|
+
|
|
324
|
+
def TickLabelPosition(self)->'TickLabelPositionType':
|
|
325
|
+
"""
|
|
326
|
+
Represents the position of tick-mark labels on the specified axis.
|
|
327
|
+
"""
|
|
328
|
+
GetDllLibPpt().ChartAxis_get_TickLabelPosition.argtypes=[c_void_p]
|
|
329
|
+
GetDllLibPpt().ChartAxis_get_TickLabelPosition.restype=c_int
|
|
330
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_TickLabelPosition,self.Ptr)
|
|
331
|
+
objwraped = TickLabelPositionType(ret)
|
|
332
|
+
return objwraped
|
|
333
|
+
|
|
334
|
+
@TickLabelPosition.setter
|
|
335
|
+
def TickLabelPosition(self, value:'TickLabelPositionType'):
|
|
336
|
+
GetDllLibPpt().ChartAxis_set_TickLabelPosition.argtypes=[c_void_p, c_int]
|
|
337
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_TickLabelPosition,self.Ptr, value.value)
|
|
338
|
+
|
|
339
|
+
@property
|
|
340
|
+
|
|
341
|
+
def MajorUnitScale(self)->'ChartBaseUnitType':
|
|
342
|
+
|
|
343
|
+
"""
|
|
344
|
+
Represents the major unit scale for the category axis.
|
|
345
|
+
|
|
346
|
+
"""
|
|
347
|
+
GetDllLibPpt().ChartAxis_get_MajorUnitScale.argtypes=[c_void_p]
|
|
348
|
+
GetDllLibPpt().ChartAxis_get_MajorUnitScale.restype=c_int
|
|
349
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MajorUnitScale,self.Ptr)
|
|
350
|
+
objwraped = ChartBaseUnitType(ret)
|
|
351
|
+
return objwraped
|
|
352
|
+
|
|
353
|
+
@MajorUnitScale.setter
|
|
354
|
+
def MajorUnitScale(self, value:'ChartBaseUnitType'):
|
|
355
|
+
GetDllLibPpt().ChartAxis_set_MajorUnitScale.argtypes=[c_void_p, c_int]
|
|
356
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MajorUnitScale,self.Ptr, value.value)
|
|
357
|
+
|
|
358
|
+
@property
|
|
359
|
+
|
|
360
|
+
def MinorUnitScale(self)->'ChartBaseUnitType':
|
|
361
|
+
"""
|
|
362
|
+
Represents the major unit scale for the category axis.
|
|
363
|
+
|
|
364
|
+
"""
|
|
365
|
+
GetDllLibPpt().ChartAxis_get_MinorUnitScale.argtypes=[c_void_p]
|
|
366
|
+
GetDllLibPpt().ChartAxis_get_MinorUnitScale.restype=c_int
|
|
367
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_MinorUnitScale,self.Ptr)
|
|
368
|
+
objwraped = ChartBaseUnitType(ret)
|
|
369
|
+
return objwraped
|
|
370
|
+
|
|
371
|
+
@MinorUnitScale.setter
|
|
372
|
+
def MinorUnitScale(self, value:'ChartBaseUnitType'):
|
|
373
|
+
GetDllLibPpt().ChartAxis_set_MinorUnitScale.argtypes=[c_void_p, c_int]
|
|
374
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_MinorUnitScale,self.Ptr, value.value)
|
|
375
|
+
|
|
376
|
+
@property
|
|
377
|
+
|
|
378
|
+
def BaseUnitScale(self)->'ChartBaseUnitType':
|
|
379
|
+
"""
|
|
380
|
+
Represents the base unit scale for the category axis.
|
|
381
|
+
|
|
382
|
+
"""
|
|
383
|
+
GetDllLibPpt().ChartAxis_get_BaseUnitScale.argtypes=[c_void_p]
|
|
384
|
+
GetDllLibPpt().ChartAxis_get_BaseUnitScale.restype=c_int
|
|
385
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_BaseUnitScale,self.Ptr)
|
|
386
|
+
objwraped = ChartBaseUnitType(ret)
|
|
387
|
+
return objwraped
|
|
388
|
+
|
|
389
|
+
@BaseUnitScale.setter
|
|
390
|
+
def BaseUnitScale(self, value:'ChartBaseUnitType'):
|
|
391
|
+
GetDllLibPpt().ChartAxis_set_BaseUnitScale.argtypes=[c_void_p, c_int]
|
|
392
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_BaseUnitScale,self.Ptr, value.value)
|
|
393
|
+
|
|
394
|
+
@property
|
|
395
|
+
|
|
396
|
+
def MinorGridLines(self)->'IChartGridLine':
|
|
397
|
+
"""
|
|
398
|
+
Represents minor gridlines on a chart axis.
|
|
399
|
+
|
|
400
|
+
"""
|
|
401
|
+
GetDllLibPpt().ChartAxis_get_MinorGridLines.argtypes=[c_void_p]
|
|
402
|
+
GetDllLibPpt().ChartAxis_get_MinorGridLines.restype=c_void_p
|
|
403
|
+
intPtr = CallCFunction(GetDllLibPpt().ChartAxis_get_MinorGridLines,self.Ptr)
|
|
404
|
+
ret = None if intPtr==None else IChartGridLine(intPtr)
|
|
405
|
+
return ret
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
@property
|
|
409
|
+
|
|
410
|
+
def MajorGridTextLines(self)->'IChartGridLine':
|
|
411
|
+
"""
|
|
412
|
+
Represents major gridlines on a chart axis.
|
|
413
|
+
|
|
414
|
+
"""
|
|
415
|
+
GetDllLibPpt().ChartAxis_get_MajorGridTextLines.argtypes=[c_void_p]
|
|
416
|
+
GetDllLibPpt().ChartAxis_get_MajorGridTextLines.restype=c_void_p
|
|
417
|
+
intPtr = CallCFunction(GetDllLibPpt().ChartAxis_get_MajorGridTextLines,self.Ptr)
|
|
418
|
+
ret = None if intPtr==None else IChartGridLine(intPtr)
|
|
419
|
+
return ret
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
@property
|
|
423
|
+
|
|
424
|
+
def ChartEffectFormat(self)->'IChartEffectFormat':
|
|
425
|
+
"""
|
|
426
|
+
Represents format of axis.
|
|
427
|
+
|
|
428
|
+
"""
|
|
429
|
+
GetDllLibPpt().ChartAxis_get_ChartEffectFormat.argtypes=[c_void_p]
|
|
430
|
+
GetDllLibPpt().ChartAxis_get_ChartEffectFormat.restype=c_void_p
|
|
431
|
+
intPtr = CallCFunction(GetDllLibPpt().ChartAxis_get_ChartEffectFormat,self.Ptr)
|
|
432
|
+
ret = None if intPtr==None else IChartEffectFormat(intPtr)
|
|
433
|
+
return ret
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
@property
|
|
437
|
+
|
|
438
|
+
def TextProperties(self)->'ITextFrameProperties':
|
|
439
|
+
"""
|
|
440
|
+
Represent text properties of axis
|
|
441
|
+
|
|
442
|
+
"""
|
|
443
|
+
GetDllLibPpt().ChartAxis_get_TextProperties.argtypes=[c_void_p]
|
|
444
|
+
GetDllLibPpt().ChartAxis_get_TextProperties.restype=c_void_p
|
|
445
|
+
intPtr = CallCFunction(GetDllLibPpt().ChartAxis_get_TextProperties,self.Ptr)
|
|
446
|
+
ret = None if intPtr==None else ITextFrameProperties(intPtr)
|
|
447
|
+
return ret
|
|
448
|
+
|
|
449
|
+
|
|
450
|
+
@property
|
|
451
|
+
|
|
452
|
+
def Title(self)->'ChartTextArea':
|
|
453
|
+
"""
|
|
454
|
+
Gets the axis' title.
|
|
455
|
+
|
|
456
|
+
"""
|
|
457
|
+
GetDllLibPpt().ChartAxis_get_Title.argtypes=[c_void_p]
|
|
458
|
+
GetDllLibPpt().ChartAxis_get_Title.restype=c_void_p
|
|
459
|
+
intPtr = CallCFunction(GetDllLibPpt().ChartAxis_get_Title,self.Ptr)
|
|
460
|
+
ret = None if intPtr==None else ChartTextArea(intPtr)
|
|
461
|
+
return ret
|
|
462
|
+
|
|
463
|
+
|
|
464
|
+
@property
|
|
465
|
+
|
|
466
|
+
def ChartCrossType(self)->'ChartCrossesType':
|
|
467
|
+
"""
|
|
468
|
+
Represents the CrossType on the specified axis where the other axis crosses.
|
|
469
|
+
|
|
470
|
+
"""
|
|
471
|
+
GetDllLibPpt().ChartAxis_get_ChartCrossType.argtypes=[c_void_p]
|
|
472
|
+
GetDllLibPpt().ChartAxis_get_ChartCrossType.restype=c_int
|
|
473
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_ChartCrossType,self.Ptr)
|
|
474
|
+
objwraped = ChartCrossesType(ret)
|
|
475
|
+
return objwraped
|
|
476
|
+
|
|
477
|
+
@ChartCrossType.setter
|
|
478
|
+
def ChartCrossType(self, value:'ChartCrossesType'):
|
|
479
|
+
GetDllLibPpt().ChartAxis_set_ChartCrossType.argtypes=[c_void_p, c_int]
|
|
480
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_ChartCrossType,self.Ptr, value.value)
|
|
481
|
+
|
|
482
|
+
@property
|
|
483
|
+
|
|
484
|
+
def Position(self)->'AxisPositionType':
|
|
485
|
+
"""
|
|
486
|
+
Represents position of axis
|
|
487
|
+
|
|
488
|
+
"""
|
|
489
|
+
GetDllLibPpt().ChartAxis_get_Position.argtypes=[c_void_p]
|
|
490
|
+
GetDllLibPpt().ChartAxis_get_Position.restype=c_int
|
|
491
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_Position,self.Ptr)
|
|
492
|
+
objwraped = AxisPositionType(ret)
|
|
493
|
+
return objwraped
|
|
494
|
+
|
|
495
|
+
@Position.setter
|
|
496
|
+
def Position(self, value:'AxisPositionType'):
|
|
497
|
+
GetDllLibPpt().ChartAxis_set_Position.argtypes=[c_void_p, c_int]
|
|
498
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_Position,self.Ptr, value.value)
|
|
499
|
+
|
|
500
|
+
@property
|
|
501
|
+
def HasTitle(self)->bool:
|
|
502
|
+
"""
|
|
503
|
+
Indicates whether a axis has a visible title.
|
|
504
|
+
|
|
505
|
+
"""
|
|
506
|
+
GetDllLibPpt().ChartAxis_get_HasTitle.argtypes=[c_void_p]
|
|
507
|
+
GetDllLibPpt().ChartAxis_get_HasTitle.restype=c_bool
|
|
508
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_HasTitle,self.Ptr)
|
|
509
|
+
return ret
|
|
510
|
+
|
|
511
|
+
@HasTitle.setter
|
|
512
|
+
def HasTitle(self, value:bool):
|
|
513
|
+
GetDllLibPpt().ChartAxis_set_HasTitle.argtypes=[c_void_p, c_bool]
|
|
514
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_HasTitle,self.Ptr, value)
|
|
515
|
+
|
|
516
|
+
@property
|
|
517
|
+
|
|
518
|
+
def CrossBetweenType(self)->'CrossBetweenType':
|
|
519
|
+
"""
|
|
520
|
+
|
|
521
|
+
"""
|
|
522
|
+
GetDllLibPpt().ChartAxis_get_CrossBetweenType.argtypes=[c_void_p]
|
|
523
|
+
GetDllLibPpt().ChartAxis_get_CrossBetweenType.restype=c_int
|
|
524
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_CrossBetweenType,self.Ptr)
|
|
525
|
+
objwraped = CrossBetweenType(ret)
|
|
526
|
+
return objwraped
|
|
527
|
+
|
|
528
|
+
@CrossBetweenType.setter
|
|
529
|
+
def CrossBetweenType(self, value:'CrossBetweenType'):
|
|
530
|
+
GetDllLibPpt().ChartAxis_set_CrossBetweenType.argtypes=[c_void_p, c_int]
|
|
531
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_CrossBetweenType,self.Ptr, value.value)
|
|
532
|
+
|
|
533
|
+
@property
|
|
534
|
+
|
|
535
|
+
def NumberFormat(self)->str:
|
|
536
|
+
"""
|
|
537
|
+
Gets or sets number format string.
|
|
538
|
+
|
|
539
|
+
"""
|
|
540
|
+
GetDllLibPpt().ChartAxis_get_NumberFormat.argtypes=[c_void_p]
|
|
541
|
+
GetDllLibPpt().ChartAxis_get_NumberFormat.restype=c_void_p
|
|
542
|
+
ret = PtrToStr(CallCFunction(GetDllLibPpt().ChartAxis_get_NumberFormat,self.Ptr))
|
|
543
|
+
return ret
|
|
544
|
+
|
|
545
|
+
|
|
546
|
+
@NumberFormat.setter
|
|
547
|
+
def NumberFormat(self, value:str):
|
|
548
|
+
valuePtr = StrToPtr(value)
|
|
549
|
+
GetDllLibPpt().ChartAxis_set_NumberFormat.argtypes=[c_void_p, c_char_p]
|
|
550
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_NumberFormat,self.Ptr,valuePtr)
|
|
551
|
+
|
|
552
|
+
@property
|
|
553
|
+
def HasDataSource(self)->bool:
|
|
554
|
+
"""
|
|
555
|
+
Indicates whether the format is linked source data.
|
|
556
|
+
|
|
557
|
+
"""
|
|
558
|
+
GetDllLibPpt().ChartAxis_get_HasDataSource.argtypes=[c_void_p]
|
|
559
|
+
GetDllLibPpt().ChartAxis_get_HasDataSource.restype=c_bool
|
|
560
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_HasDataSource,self.Ptr)
|
|
561
|
+
return ret
|
|
562
|
+
|
|
563
|
+
@HasDataSource.setter
|
|
564
|
+
def HasDataSource(self, value:bool):
|
|
565
|
+
GetDllLibPpt().ChartAxis_set_HasDataSource.argtypes=[c_void_p, c_bool]
|
|
566
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_HasDataSource,self.Ptr, value)
|
|
567
|
+
|
|
568
|
+
@property
|
|
569
|
+
def TextRotationAngle(self)->float:
|
|
570
|
+
"""
|
|
571
|
+
Text rotation angle.
|
|
572
|
+
|
|
573
|
+
"""
|
|
574
|
+
GetDllLibPpt().ChartAxis_get_TextRotationAngle.argtypes=[c_void_p]
|
|
575
|
+
GetDllLibPpt().ChartAxis_get_TextRotationAngle.restype=c_float
|
|
576
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_TextRotationAngle,self.Ptr)
|
|
577
|
+
return ret
|
|
578
|
+
|
|
579
|
+
@TextRotationAngle.setter
|
|
580
|
+
def TextRotationAngle(self, value:float):
|
|
581
|
+
GetDllLibPpt().ChartAxis_set_TextRotationAngle.argtypes=[c_void_p, c_float]
|
|
582
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_TextRotationAngle,self.Ptr, value)
|
|
583
|
+
|
|
584
|
+
@property
|
|
585
|
+
|
|
586
|
+
def TickLabelSpacing(self)->'UInt32':
|
|
587
|
+
"""
|
|
588
|
+
Represents the number of categories or series between tick-mark labels.
|
|
589
|
+
|
|
590
|
+
"""
|
|
591
|
+
GetDllLibPpt().ChartAxis_get_TickLabelSpacing.argtypes=[c_void_p]
|
|
592
|
+
GetDllLibPpt().ChartAxis_get_TickLabelSpacing.restype=c_void_p
|
|
593
|
+
intPtr = CallCFunction(GetDllLibPpt().ChartAxis_get_TickLabelSpacing,self.Ptr)
|
|
594
|
+
ret = None if intPtr==None else UInt32(intPtr)
|
|
595
|
+
return ret
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
@TickLabelSpacing.setter
|
|
599
|
+
def TickLabelSpacing(self, value:'UInt32'):
|
|
600
|
+
GetDllLibPpt().ChartAxis_set_TickLabelSpacing.argtypes=[c_void_p, c_void_p]
|
|
601
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_TickLabelSpacing,self.Ptr, value.Ptr)
|
|
602
|
+
|
|
603
|
+
@property
|
|
604
|
+
def IsAutomaticTickLabelSpacing(self)->bool:
|
|
605
|
+
"""
|
|
606
|
+
Indicates whether tick label spacing is automatic.
|
|
607
|
+
"""
|
|
608
|
+
GetDllLibPpt().ChartAxis_get_IsAutomaticTickLabelSpacing.argtypes=[c_void_p]
|
|
609
|
+
GetDllLibPpt().ChartAxis_get_IsAutomaticTickLabelSpacing.restype=c_bool
|
|
610
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsAutomaticTickLabelSpacing,self.Ptr)
|
|
611
|
+
return ret
|
|
612
|
+
|
|
613
|
+
@IsAutomaticTickLabelSpacing.setter
|
|
614
|
+
def IsAutomaticTickLabelSpacing(self, value:bool):
|
|
615
|
+
GetDllLibPpt().ChartAxis_set_IsAutomaticTickLabelSpacing.argtypes=[c_void_p, c_bool]
|
|
616
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsAutomaticTickLabelSpacing,self.Ptr, value)
|
|
617
|
+
|
|
618
|
+
@property
|
|
619
|
+
|
|
620
|
+
def TickMarkSpacing(self)->'UInt32':
|
|
621
|
+
"""
|
|
622
|
+
Represents the number of ticks between tick-mark labels.
|
|
623
|
+
|
|
624
|
+
"""
|
|
625
|
+
GetDllLibPpt().ChartAxis_get_TickMarkSpacing.argtypes=[c_void_p]
|
|
626
|
+
GetDllLibPpt().ChartAxis_get_TickMarkSpacing.restype=c_void_p
|
|
627
|
+
intPtr = CallCFunction(GetDllLibPpt().ChartAxis_get_TickMarkSpacing,self.Ptr)
|
|
628
|
+
ret = None if intPtr==None else UInt32(intPtr)
|
|
629
|
+
return ret
|
|
630
|
+
|
|
631
|
+
|
|
632
|
+
@TickMarkSpacing.setter
|
|
633
|
+
def TickMarkSpacing(self, value:'UInt32'):
|
|
634
|
+
GetDllLibPpt().ChartAxis_set_TickMarkSpacing.argtypes=[c_void_p, c_void_p]
|
|
635
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_TickMarkSpacing,self.Ptr, value.Ptr)
|
|
636
|
+
|
|
637
|
+
@property
|
|
638
|
+
def IsAutomaticTickMarkSpacing(self)->bool:
|
|
639
|
+
"""
|
|
640
|
+
|
|
641
|
+
"""
|
|
642
|
+
GetDllLibPpt().ChartAxis_get_IsAutomaticTickMarkSpacing.argtypes=[c_void_p]
|
|
643
|
+
GetDllLibPpt().ChartAxis_get_IsAutomaticTickMarkSpacing.restype=c_bool
|
|
644
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsAutomaticTickMarkSpacing,self.Ptr)
|
|
645
|
+
return ret
|
|
646
|
+
|
|
647
|
+
@IsAutomaticTickMarkSpacing.setter
|
|
648
|
+
def IsAutomaticTickMarkSpacing(self, value:bool):
|
|
649
|
+
GetDllLibPpt().ChartAxis_set_IsAutomaticTickMarkSpacing.argtypes=[c_void_p, c_bool]
|
|
650
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsAutomaticTickMarkSpacing,self.Ptr, value)
|
|
651
|
+
|
|
652
|
+
@property
|
|
653
|
+
def LblOffset(self)->int:
|
|
654
|
+
"""
|
|
655
|
+
Represents the distance between tick-mark labels and axis.
|
|
656
|
+
|
|
657
|
+
"""
|
|
658
|
+
GetDllLibPpt().ChartAxis_get_LblOffset.argtypes=[c_void_p]
|
|
659
|
+
GetDllLibPpt().ChartAxis_get_LblOffset.restype=c_int
|
|
660
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_LblOffset,self.Ptr)
|
|
661
|
+
return ret
|
|
662
|
+
|
|
663
|
+
@property
|
|
664
|
+
def HasMultiLvlLbl(self)->bool:
|
|
665
|
+
"""
|
|
666
|
+
Gets or sets if the label of categoryAxis has multiple levels.
|
|
667
|
+
|
|
668
|
+
"""
|
|
669
|
+
GetDllLibPpt().ChartAxis_get_HasMultiLvlLbl.argtypes=[c_void_p]
|
|
670
|
+
GetDllLibPpt().ChartAxis_get_HasMultiLvlLbl.restype=c_bool
|
|
671
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_HasMultiLvlLbl,self.Ptr)
|
|
672
|
+
return ret
|
|
673
|
+
|
|
674
|
+
@HasMultiLvlLbl.setter
|
|
675
|
+
def HasMultiLvlLbl(self, value:bool):
|
|
676
|
+
GetDllLibPpt().ChartAxis_set_HasMultiLvlLbl.argtypes=[c_void_p, c_bool]
|
|
677
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_HasMultiLvlLbl,self.Ptr, value)
|
|
678
|
+
|
|
679
|
+
@property
|
|
680
|
+
def IsMergeSameLabel(self)->bool:
|
|
681
|
+
"""
|
|
682
|
+
Gets or sets if the first level label of categoryAxis merge the same item.
|
|
683
|
+
|
|
684
|
+
"""
|
|
685
|
+
GetDllLibPpt().ChartAxis_get_IsMergeSameLabel.argtypes=[c_void_p]
|
|
686
|
+
GetDllLibPpt().ChartAxis_get_IsMergeSameLabel.restype=c_bool
|
|
687
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsMergeSameLabel,self.Ptr)
|
|
688
|
+
return ret
|
|
689
|
+
|
|
690
|
+
@IsMergeSameLabel.setter
|
|
691
|
+
def IsMergeSameLabel(self, value:bool):
|
|
692
|
+
GetDllLibPpt().ChartAxis_set_IsMergeSameLabel.argtypes=[c_void_p, c_bool]
|
|
693
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsMergeSameLabel,self.Ptr, value)
|
|
694
|
+
|
|
695
|
+
@property
|
|
696
|
+
|
|
697
|
+
def AxisType(self)->'AxisType':
|
|
698
|
+
"""
|
|
699
|
+
Axis type.
|
|
700
|
+
"""
|
|
701
|
+
GetDllLibPpt().ChartAxis_get_AxisType.argtypes=[c_void_p]
|
|
702
|
+
GetDllLibPpt().ChartAxis_get_AxisType.restype=c_int
|
|
703
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_AxisType,self.Ptr)
|
|
704
|
+
objwraped = AxisType(ret)
|
|
705
|
+
return objwraped
|
|
706
|
+
|
|
707
|
+
@AxisType.setter
|
|
708
|
+
def AxisType(self, value:'AxisType'):
|
|
709
|
+
GetDllLibPpt().ChartAxis_set_AxisType.argtypes=[c_void_p, c_int]
|
|
710
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_AxisType,self.Ptr, value.value)
|
|
711
|
+
|
|
712
|
+
@property
|
|
713
|
+
def IsBinningByCategory(self)->bool:
|
|
714
|
+
"""
|
|
715
|
+
True if bins generated by category values. otherwise False
|
|
716
|
+
|
|
717
|
+
"""
|
|
718
|
+
GetDllLibPpt().ChartAxis_get_IsBinningByCategory.argtypes=[c_void_p]
|
|
719
|
+
GetDllLibPpt().ChartAxis_get_IsBinningByCategory.restype=c_bool
|
|
720
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_IsBinningByCategory,self.Ptr)
|
|
721
|
+
return ret
|
|
722
|
+
|
|
723
|
+
@IsBinningByCategory.setter
|
|
724
|
+
def IsBinningByCategory(self, value:bool):
|
|
725
|
+
GetDllLibPpt().ChartAxis_set_IsBinningByCategory.argtypes=[c_void_p, c_bool]
|
|
726
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_IsBinningByCategory,self.Ptr, value)
|
|
727
|
+
|
|
728
|
+
@property
|
|
729
|
+
def HasAutomaticBins(self)->bool:
|
|
730
|
+
"""
|
|
731
|
+
|
|
732
|
+
True if bins generated are automatic. otherwise False
|
|
733
|
+
Applies only to Histogram and Pareto charts.
|
|
734
|
+
|
|
735
|
+
"""
|
|
736
|
+
GetDllLibPpt().ChartAxis_get_HasAutomaticBins.argtypes=[c_void_p]
|
|
737
|
+
GetDllLibPpt().ChartAxis_get_HasAutomaticBins.restype=c_bool
|
|
738
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_HasAutomaticBins,self.Ptr)
|
|
739
|
+
return ret
|
|
740
|
+
|
|
741
|
+
@HasAutomaticBins.setter
|
|
742
|
+
def HasAutomaticBins(self, value:bool):
|
|
743
|
+
GetDllLibPpt().ChartAxis_set_HasAutomaticBins.argtypes=[c_void_p, c_bool]
|
|
744
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_HasAutomaticBins,self.Ptr, value)
|
|
745
|
+
|
|
746
|
+
@property
|
|
747
|
+
def NumberOfBins(self)->int:
|
|
748
|
+
"""
|
|
749
|
+
Get or set the Number of Bins in the axis
|
|
750
|
+
|
|
751
|
+
Applies only to Histogram and Pareto charts.Can be a value from 1 through 31999.
|
|
752
|
+
|
|
753
|
+
"""
|
|
754
|
+
GetDllLibPpt().ChartAxis_get_NumberOfBins.argtypes=[c_void_p]
|
|
755
|
+
GetDllLibPpt().ChartAxis_get_NumberOfBins.restype=c_int
|
|
756
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_NumberOfBins,self.Ptr)
|
|
757
|
+
return ret
|
|
758
|
+
|
|
759
|
+
@NumberOfBins.setter
|
|
760
|
+
def NumberOfBins(self, value:int):
|
|
761
|
+
GetDllLibPpt().ChartAxis_set_NumberOfBins.argtypes=[c_void_p, c_int]
|
|
762
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_NumberOfBins,self.Ptr, value)
|
|
763
|
+
|
|
764
|
+
@property
|
|
765
|
+
def BinWidth(self)->float:
|
|
766
|
+
"""
|
|
767
|
+
Get or Set the number of data points in each range.
|
|
768
|
+
|
|
769
|
+
Applies only to Histogram and Pareto charts.
|
|
770
|
+
"""
|
|
771
|
+
GetDllLibPpt().ChartAxis_get_BinWidth.argtypes=[c_void_p]
|
|
772
|
+
GetDllLibPpt().ChartAxis_get_BinWidth.restype=c_double
|
|
773
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_BinWidth,self.Ptr)
|
|
774
|
+
return ret
|
|
775
|
+
|
|
776
|
+
@BinWidth.setter
|
|
777
|
+
def BinWidth(self, value:float):
|
|
778
|
+
GetDllLibPpt().ChartAxis_set_BinWidth.argtypes=[c_void_p, c_double]
|
|
779
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_BinWidth,self.Ptr, value)
|
|
780
|
+
|
|
781
|
+
@property
|
|
782
|
+
def UnderflowBinValue(self)->float:
|
|
783
|
+
"""
|
|
784
|
+
Get or Set the UnderFlow Bin value
|
|
785
|
+
Applies only to Histogram and Pareto charts.
|
|
786
|
+
|
|
787
|
+
"""
|
|
788
|
+
GetDllLibPpt().ChartAxis_get_UnderflowBinValue.argtypes=[c_void_p]
|
|
789
|
+
GetDllLibPpt().ChartAxis_get_UnderflowBinValue.restype=c_double
|
|
790
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_UnderflowBinValue,self.Ptr)
|
|
791
|
+
return ret
|
|
792
|
+
|
|
793
|
+
@UnderflowBinValue.setter
|
|
794
|
+
def UnderflowBinValue(self, value:float):
|
|
795
|
+
GetDllLibPpt().ChartAxis_set_UnderflowBinValue.argtypes=[c_void_p, c_double]
|
|
796
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_UnderflowBinValue,self.Ptr, value)
|
|
797
|
+
|
|
798
|
+
@property
|
|
799
|
+
def OverflowBinValue(self)->float:
|
|
800
|
+
"""
|
|
801
|
+
Get or Set the OverFlow Bin value
|
|
802
|
+
Applies only to Histogram and Pareto charts.
|
|
803
|
+
"""
|
|
804
|
+
GetDllLibPpt().ChartAxis_get_OverflowBinValue.argtypes=[c_void_p]
|
|
805
|
+
GetDllLibPpt().ChartAxis_get_OverflowBinValue.restype=c_double
|
|
806
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_OverflowBinValue,self.Ptr)
|
|
807
|
+
return ret
|
|
808
|
+
|
|
809
|
+
@OverflowBinValue.setter
|
|
810
|
+
def OverflowBinValue(self, value:float):
|
|
811
|
+
GetDllLibPpt().ChartAxis_set_OverflowBinValue.argtypes=[c_void_p, c_double]
|
|
812
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_OverflowBinValue,self.Ptr, value)
|
|
813
|
+
|
|
814
|
+
@property
|
|
815
|
+
def GapWidth(self)->int:
|
|
816
|
+
"""
|
|
817
|
+
Get or Set the gap width between two ticks.
|
|
818
|
+
"""
|
|
819
|
+
GetDllLibPpt().ChartAxis_get_GapWidth.argtypes=[c_void_p]
|
|
820
|
+
GetDllLibPpt().ChartAxis_get_GapWidth.restype=c_int
|
|
821
|
+
ret = CallCFunction(GetDllLibPpt().ChartAxis_get_GapWidth,self.Ptr)
|
|
822
|
+
return ret
|
|
823
|
+
|
|
824
|
+
@GapWidth.setter
|
|
825
|
+
def GapWidth(self, value:int):
|
|
826
|
+
GetDllLibPpt().ChartAxis_set_GapWidth.argtypes=[c_void_p, c_int]
|
|
827
|
+
CallCFunction(GetDllLibPpt().ChartAxis_set_GapWidth,self.Ptr, value)
|
|
828
|
+
|