spire-xls 15.5.0__py3-none-manylinux2014_aarch64.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/xls/AddInFunctionsCollection.py +29 -0
- spire/xls/AddtionalFormatWrapper.py +976 -0
- spire/xls/AlertStyleType.py +18 -0
- spire/xls/ArcShapeCollection.py +70 -0
- spire/xls/AutoFiltersCollection.py +527 -0
- spire/xls/AutoFitterOptions.py +66 -0
- spire/xls/AutoFormatOptions.py +23 -0
- spire/xls/AutoFormatType.py +32 -0
- spire/xls/AutoSortScope.py +25 -0
- spire/xls/Average.py +29 -0
- spire/xls/AverageType.py +25 -0
- spire/xls/AxisLineIdentifierType.py +19 -0
- spire/xls/AxisTextDirectionType.py +18 -0
- spire/xls/AxisType.py +18 -0
- spire/xls/AxisTypes.py +18 -0
- spire/xls/BaseFormatType.py +17 -0
- spire/xls/BordersCollection.py +158 -0
- spire/xls/BordersCollectionArrayWrapper.py +95 -0
- spire/xls/BordersLineType.py +23 -0
- spire/xls/BubbleSizeType.py +17 -0
- spire/xls/BuiltInDocumentProperties.py +12 -0
- spire/xls/BuiltInPropertyType.py +50 -0
- spire/xls/BuiltInStyles.py +66 -0
- spire/xls/ButtonShapeCollection.py +70 -0
- spire/xls/CategoryType.py +18 -0
- spire/xls/CellBaseStyle.py +26 -0
- spire/xls/CellBorder.py +154 -0
- spire/xls/CellDataType.py +23 -0
- spire/xls/CellFormatType.py +21 -0
- spire/xls/CellRange.py +915 -0
- spire/xls/CellStyle.py +85 -0
- spire/xls/CellStyleFlag.py +432 -0
- spire/xls/CellStyleObject.py +617 -0
- spire/xls/CellValueChangedEventArgs.py +75 -0
- spire/xls/CellValueChangedEventHandler.py +52 -0
- spire/xls/Chart.py +404 -0
- spire/xls/ChartArea.py +61 -0
- spire/xls/ChartBackgroundMode.py +18 -0
- spire/xls/ChartBaseUnitType.py +18 -0
- spire/xls/ChartBorder.py +12 -0
- spire/xls/ChartCategoryAxis.py +93 -0
- spire/xls/ChartDataLabels.py +42 -0
- spire/xls/ChartDataPoint.py +42 -0
- spire/xls/ChartDataPointsCollection.py +75 -0
- spire/xls/ChartDataTable.py +12 -0
- spire/xls/ChartDisplayUnitType.py +26 -0
- spire/xls/ChartDropBar.py +12 -0
- spire/xls/ChartFormat.py +72 -0
- spire/xls/ChartFormatCollection.py +59 -0
- spire/xls/ChartGridLine.py +27 -0
- spire/xls/ChartInterior.py +12 -0
- spire/xls/ChartLegend.py +42 -0
- spire/xls/ChartLegendEntriesColl.py +128 -0
- spire/xls/ChartLegendEntry.py +27 -0
- spire/xls/ChartLinePatternType.py +24 -0
- spire/xls/ChartLineWeightType.py +19 -0
- spire/xls/ChartMarkerType.py +27 -0
- spire/xls/ChartPageSetup.py +12 -0
- spire/xls/ChartParagraphType.py +18 -0
- spire/xls/ChartPieType.py +18 -0
- spire/xls/ChartPlotArea.py +53 -0
- spire/xls/ChartPlotEmptyType.py +18 -0
- spire/xls/ChartSerie.py +142 -0
- spire/xls/ChartSerieDataFormat.py +56 -0
- spire/xls/ChartSeries.py +154 -0
- spire/xls/ChartSeriesAxis.py +72 -0
- spire/xls/ChartShadow.py +235 -0
- spire/xls/ChartSheet.py +285 -0
- spire/xls/ChartTextArea.py +782 -0
- spire/xls/ChartTitle.py +12 -0
- spire/xls/ChartValueAxis.py +92 -0
- spire/xls/ChartWallOrFloor.py +12 -0
- spire/xls/ChartsCollection.py +113 -0
- spire/xls/CheckBoxCollection.py +70 -0
- spire/xls/CheckState.py +18 -0
- spire/xls/CollectionBase.py +184 -0
- spire/xls/CollectionChangeEventArgs.py +36 -0
- spire/xls/CollectionExtended.py +92 -0
- spire/xls/ColorConditionValue.py +91 -0
- spire/xls/ColorFilter.py +45 -0
- spire/xls/ColorScale.py +172 -0
- spire/xls/ColorType.py +18 -0
- spire/xls/ComboBoxCollection.py +70 -0
- spire/xls/CommentHAlignType.py +21 -0
- spire/xls/CommentVAlignType.py +20 -0
- spire/xls/CommentsCollection.py +109 -0
- spire/xls/CommentsRange.py +578 -0
- spire/xls/CommonWrapper.py +40 -0
- spire/xls/ComparisonOperatorType.py +24 -0
- spire/xls/CompoundLineType.py +18 -0
- spire/xls/CondFormatCollectionWrapper.py +125 -0
- spire/xls/ConditionValue.py +82 -0
- spire/xls/ConditionValuePosition.py +16 -0
- spire/xls/ConditionValueType.py +20 -0
- spire/xls/ConditionalFormat.py +14 -0
- spire/xls/ConditionalFormatScope.py +16 -0
- spire/xls/ConditionalFormatType.py +33 -0
- spire/xls/ConditionalFormatWrapper.py +986 -0
- spire/xls/ConditionalFormats.py +55 -0
- spire/xls/ConditionalTopNType.py +17 -0
- spire/xls/ConnectionDataSourceType.py +26 -0
- spire/xls/ConverterSetting.py +347 -0
- spire/xls/CopyRangeOptions.py +23 -0
- spire/xls/CustomFilter.py +147 -0
- spire/xls/CustomFilterCollection.py +113 -0
- spire/xls/DBConnection.py +198 -0
- spire/xls/DVAspect.py +15 -0
- spire/xls/DataBar.py +220 -0
- spire/xls/DataBarAxisPosition.py +16 -0
- spire/xls/DataBarBorder.py +47 -0
- spire/xls/DataBarBorderType.py +15 -0
- spire/xls/DataBarFillType.py +15 -0
- spire/xls/DataBarNegativeColorType.py +15 -0
- spire/xls/DataConnections.py +25 -0
- spire/xls/DataLabelPositionType.py +26 -0
- spire/xls/DataMarkerDirection.py +17 -0
- spire/xls/DataSorter.py +154 -0
- spire/xls/DataSourceType.py +19 -0
- spire/xls/DateTimeGroupItem.py +132 -0
- spire/xls/DateTimeGroupingType.py +19 -0
- spire/xls/DeleteOption.py +15 -0
- spire/xls/DocumentProperty.py +304 -0
- spire/xls/DropLineStyleType.py +18 -0
- spire/xls/DynamicFilter.py +71 -0
- spire/xls/DynamicFilterType.py +48 -0
- spire/xls/EncryptedKeyInfo.py +12 -0
- spire/xls/ErrorBarIncludeType.py +19 -0
- spire/xls/ErrorBarType.py +20 -0
- spire/xls/Excel2016Charttype.py +20 -0
- spire/xls/ExcelAddInFunction.py +12 -0
- spire/xls/ExcelCalculationMode.py +18 -0
- spire/xls/ExcelChartType.py +96 -0
- spire/xls/ExcelClearOptions.py +18 -0
- spire/xls/ExcelColors.py +121 -0
- spire/xls/ExcelComboType.py +22 -0
- spire/xls/ExcelComment.py +27 -0
- spire/xls/ExcelCommentObject.py +618 -0
- spire/xls/ExcelFindOptions.py +16 -0
- spire/xls/ExcelFont.py +310 -0
- spire/xls/ExcelGradient.py +174 -0
- spire/xls/ExcelHorizontalAlignment.py +21 -0
- spire/xls/ExcelInterior.py +128 -0
- spire/xls/ExcelPatternType.py +52 -0
- spire/xls/ExcelPicture.py +12 -0
- spire/xls/ExcelQuartileCalculation.py +17 -0
- spire/xls/ExcelSaveType.py +15 -0
- spire/xls/ExcelShapeType.py +41 -0
- spire/xls/ExcelSheetType.py +20 -0
- spire/xls/ExcelTotalsCalculation.py +23 -0
- spire/xls/ExcelTreeMapLabelOption.py +18 -0
- spire/xls/ExcelVersion.py +24 -0
- spire/xls/ExcelVerticalAlignment.py +21 -0
- spire/xls/ExpandCollapseFlags.py +18 -0
- spire/xls/ExportTableOptions.py +74 -0
- spire/xls/ExternalConnection.py +147 -0
- spire/xls/ExternalLink.py +58 -0
- spire/xls/ExternalLinkCollection.py +25 -0
- spire/xls/FileFormat.py +40 -0
- spire/xls/FillPictureType.py +16 -0
- spire/xls/FilterColumn.py +258 -0
- spire/xls/FilterConditionType.py +21 -0
- spire/xls/FilterDataType.py +22 -0
- spire/xls/FilterOperatorType.py +20 -0
- spire/xls/FilterType.py +20 -0
- spire/xls/FindType.py +19 -0
- spire/xls/Font.py +376 -0
- spire/xls/FontArrayWrapper.py +265 -0
- spire/xls/FontUnderlineType.py +20 -0
- spire/xls/FontVertialAlignmentType.py +20 -0
- spire/xls/FontWrapper.py +450 -0
- spire/xls/FontsCollection.py +87 -0
- spire/xls/Format3D.py +235 -0
- spire/xls/GeomertyAdjustValue.py +63 -0
- spire/xls/GeomertyAdjustValueFormulaType.py +30 -0
- spire/xls/GeomertyAdjustValuesCollection.py +39 -0
- spire/xls/GetText.py +15 -0
- spire/xls/GoalSeek.py +65 -0
- spire/xls/GoalSeekResult.py +57 -0
- spire/xls/GradientArrayWrapper.py +188 -0
- spire/xls/GradientColorType.py +18 -0
- spire/xls/GradientPatternType.py +64 -0
- spire/xls/GradientPresetType.py +39 -0
- spire/xls/GradientStops.py +146 -0
- spire/xls/GradientStyleType.py +21 -0
- spire/xls/GradientTextureType.py +40 -0
- spire/xls/GradientType.py +17 -0
- spire/xls/GradientVariantsType.py +19 -0
- spire/xls/GroupBoxCollection.py +70 -0
- spire/xls/GroupByType.py +15 -0
- spire/xls/GroupShape.py +21 -0
- spire/xls/GroupShapeCollection.py +46 -0
- spire/xls/HPageBreak.py +32 -0
- spire/xls/HPageBreaksCollection.py +108 -0
- spire/xls/HTMLOptions.py +144 -0
- spire/xls/HistogramAxisFormat.py +30 -0
- spire/xls/HorizontalAlignType.py +23 -0
- spire/xls/HttpContentType.py +18 -0
- spire/xls/HyperLink.py +32 -0
- spire/xls/HyperLinkType.py +20 -0
- spire/xls/HyperLinksCollection.py +72 -0
- spire/xls/IAddInFunction.py +22 -0
- spire/xls/IAddInFunctions.py +50 -0
- spire/xls/IArcShape.py +259 -0
- spire/xls/IArcShapes.py +50 -0
- spire/xls/IAutoFilter.py +167 -0
- spire/xls/IAutoFilterCondition.py +123 -0
- spire/xls/IAutoFilters.py +49 -0
- spire/xls/IBorder.py +116 -0
- spire/xls/IBorders.py +106 -0
- spire/xls/IBuiltInDocumentProperties.py +579 -0
- spire/xls/IButtonShape.py +12 -0
- spire/xls/IButtonShapes.py +50 -0
- spire/xls/IChart.py +1368 -0
- spire/xls/IChartAxis.py +722 -0
- spire/xls/IChartBorder.py +220 -0
- spire/xls/IChartCategoryAxis.py +410 -0
- spire/xls/IChartDataLabels.py +457 -0
- spire/xls/IChartDataPoint.py +131 -0
- spire/xls/IChartDataPoints.py +31 -0
- spire/xls/IChartDataTable.py +197 -0
- spire/xls/IChartDropBar.py +12 -0
- spire/xls/IChartErrorBars.py +373 -0
- spire/xls/IChartFillBorder.py +303 -0
- spire/xls/IChartFormat.py +571 -0
- spire/xls/IChartFrameFormat.py +93 -0
- spire/xls/IChartGridLine.py +107 -0
- spire/xls/IChartInterior.py +278 -0
- spire/xls/IChartLegend.py +499 -0
- spire/xls/IChartLegendEntries.py +30 -0
- spire/xls/IChartLegendEntry.py +178 -0
- spire/xls/IChartPageSetup.py +56 -0
- spire/xls/IChartSerie.py +779 -0
- spire/xls/IChartSerieDataFormat.py +566 -0
- spire/xls/IChartSeries.py +39 -0
- spire/xls/IChartSeriesAxis.py +128 -0
- spire/xls/IChartShape.py +92 -0
- spire/xls/IChartShapes.py +39 -0
- spire/xls/IChartTextArea.py +197 -0
- spire/xls/IChartTrendLine.py +548 -0
- spire/xls/IChartTrendLines.py +79 -0
- spire/xls/IChartValueAxis.py +518 -0
- spire/xls/IChartWallOrFloor.py +32 -0
- spire/xls/ICharts.py +70 -0
- spire/xls/ICheckBox.py +96 -0
- spire/xls/ICheckBoxes.py +50 -0
- spire/xls/ICloneParent.py +28 -0
- spire/xls/IColorConditionValue.py +31 -0
- spire/xls/IColorScale.py +32 -0
- spire/xls/ICombinedRange.py +87 -0
- spire/xls/IComboBoxShape.py +95 -0
- spire/xls/IComboBoxes.py +50 -0
- spire/xls/IComment.py +85 -0
- spire/xls/ICommentShape.py +12 -0
- spire/xls/IComments.py +50 -0
- spire/xls/IConditionValue.py +68 -0
- spire/xls/IConditionalFormat.py +606 -0
- spire/xls/IConditionalFormats.py +48 -0
- spire/xls/IConditionalFormatsCollection.py +134 -0
- spire/xls/ICustomDocumentProperties.py +128 -0
- spire/xls/IDataBar.py +105 -0
- spire/xls/IDataSort.py +95 -0
- spire/xls/IDataValidation.py +421 -0
- spire/xls/IDataValidationCollection.py +132 -0
- spire/xls/IDataValidationTable.py +68 -0
- spire/xls/IDigitalSignature.py +99 -0
- spire/xls/IDigitalSignatures.py +29 -0
- spire/xls/IDocumentProperty.py +226 -0
- spire/xls/IErrorIndicator.py +31 -0
- spire/xls/IExcelApplication.py +22 -0
- spire/xls/IExtendIndex.py +21 -0
- spire/xls/IExtendedFormat.py +530 -0
- spire/xls/IFont.py +271 -0
- spire/xls/IFormat3D.py +252 -0
- spire/xls/IGeomPath.py +23 -0
- spire/xls/IGeomPathInfo.py +112 -0
- spire/xls/IGeomPathShape.py +30 -0
- spire/xls/IGlow.py +85 -0
- spire/xls/IGradient.py +174 -0
- spire/xls/IGroupBox.py +67 -0
- spire/xls/IGroupBoxes.py +50 -0
- spire/xls/IHPageBreak.py +22 -0
- spire/xls/IHPageBreaks.py +31 -0
- spire/xls/IHyperLink.py +118 -0
- spire/xls/IHyperLinks.py +48 -0
- spire/xls/IIconSet.py +96 -0
- spire/xls/IInterior.py +117 -0
- spire/xls/IInternalAddtionalFormat.py +238 -0
- spire/xls/IInternalFont.py +31 -0
- spire/xls/IInternalWorksheet.py +132 -0
- spire/xls/ILabelShape.py +49 -0
- spire/xls/ILabelShapes.py +50 -0
- spire/xls/ILineShape.py +305 -0
- spire/xls/ILines.py +50 -0
- spire/xls/IListBox.py +86 -0
- spire/xls/IListBoxes.py +50 -0
- spire/xls/IListObject.py +493 -0
- spire/xls/IListObjectColumn.py +222 -0
- spire/xls/IListObjects.py +31 -0
- spire/xls/IMarkersDesigner.py +113 -0
- spire/xls/IMigrantRange.py +21 -0
- spire/xls/INameRanges.py +162 -0
- spire/xls/INamedObject.py +22 -0
- spire/xls/INamedRange.py +162 -0
- spire/xls/INumberFormat.py +77 -0
- spire/xls/IOleObject.py +176 -0
- spire/xls/IOleObjects.py +32 -0
- spire/xls/IOptimizedUpdate.py +28 -0
- spire/xls/IOvalShape.py +154 -0
- spire/xls/IOvalShapes.py +50 -0
- spire/xls/IPageSetup.py +195 -0
- spire/xls/IPageSetupBase.py +642 -0
- spire/xls/IPictureShape.py +99 -0
- spire/xls/IPictures.py +250 -0
- spire/xls/IPivotCache.py +41 -0
- spire/xls/IPivotCaches.py +39 -0
- spire/xls/IPivotCalculatedFields.py +50 -0
- spire/xls/IPivotDataField.py +68 -0
- spire/xls/IPivotDataFields.py +50 -0
- spire/xls/IPivotField.py +291 -0
- spire/xls/IPivotFields.py +41 -0
- spire/xls/IPivotTable.py +393 -0
- spire/xls/IPivotTableOptions.py +428 -0
- spire/xls/IPivotTables.py +68 -0
- spire/xls/IPropertyData.py +70 -0
- spire/xls/IPrstGeomShape.py +71 -0
- spire/xls/IPrstGeomShapes.py +81 -0
- spire/xls/IRadioButton.py +105 -0
- spire/xls/IRadioButtons.py +71 -0
- spire/xls/IRectangleShape.py +60 -0
- spire/xls/IRectangleShapes.py +50 -0
- spire/xls/IReflectionEffect.py +138 -0
- spire/xls/IRichTextString.py +93 -0
- spire/xls/IScrollBarShape.py +140 -0
- spire/xls/IScrollBarShapes.py +50 -0
- spire/xls/IShadow.py +244 -0
- spire/xls/IShape.py +409 -0
- spire/xls/IShapeFill.py +522 -0
- spire/xls/IShapeLineFormat.py +331 -0
- spire/xls/IShapes.py +270 -0
- spire/xls/ISortColumn.py +96 -0
- spire/xls/ISortColumns.py +70 -0
- spire/xls/ISortedRule.py +112 -0
- spire/xls/ISparkline.py +68 -0
- spire/xls/ISparklineGroup.py +428 -0
- spire/xls/ISparklines.py +72 -0
- spire/xls/ISpinnerShape.py +102 -0
- spire/xls/ISpinnerShapes.py +50 -0
- spire/xls/IStyle.py +50 -0
- spire/xls/IStyles.py +69 -0
- spire/xls/ITabSheet.py +302 -0
- spire/xls/ITabSheets.py +57 -0
- spire/xls/ITextBox.py +116 -0
- spire/xls/ITextBoxLinkShape.py +40 -0
- spire/xls/ITextBoxShape.py +22 -0
- spire/xls/ITextBoxes.py +61 -0
- spire/xls/ITextFrame.py +120 -0
- spire/xls/IVPageBreak.py +22 -0
- spire/xls/IVPageBreaks.py +31 -0
- spire/xls/IWorkbook.py +1806 -0
- spire/xls/IWorksheet.py +2694 -0
- spire/xls/IWorksheetGroup.py +48 -0
- spire/xls/IWorksheets.py +159 -0
- spire/xls/IXLSRange.py +2479 -0
- spire/xls/IXLSRanges.py +35 -0
- spire/xls/IconSet.py +103 -0
- spire/xls/IconSetType.py +35 -0
- spire/xls/IgnoreErrorType.py +24 -0
- spire/xls/ImageFormatType.py +18 -0
- spire/xls/ImageLocationTypes.py +15 -0
- spire/xls/ImageType.py +17 -0
- spire/xls/ImportObjectOptions.py +89 -0
- spire/xls/InsertMoveOption.py +15 -0
- spire/xls/InsertOptionsType.py +16 -0
- spire/xls/InteriorArrayWrapper.py +126 -0
- spire/xls/LOGFONT.py +140 -0
- spire/xls/LabelShapeCollection.py +71 -0
- spire/xls/LegendPositionType.py +21 -0
- spire/xls/LegendSpacingType.py +18 -0
- spire/xls/LineCollection.py +85 -0
- spire/xls/LineShapeType.py +17 -0
- spire/xls/LineStyleType.py +29 -0
- spire/xls/ListBoxCollection.py +71 -0
- spire/xls/ListObjectCollection.py +45 -0
- spire/xls/MarkerDesigner.py +172 -0
- spire/xls/MeasureUnits.py +21 -0
- spire/xls/MsoPathInfo.py +38 -0
- spire/xls/MsoPathType.py +21 -0
- spire/xls/MultipleFilterCollection.py +166 -0
- spire/xls/NegativeBarFormat.py +82 -0
- spire/xls/OColor.py +165 -0
- spire/xls/OLEDBCommandType.py +19 -0
- spire/xls/OdsPageBackground.py +129 -0
- spire/xls/OdsPageBackgroundImagePositionType.py +22 -0
- spire/xls/OdsPageBackgroundImageType.py +16 -0
- spire/xls/OdsPageBackgroundType.py +16 -0
- spire/xls/OleLinkType.py +15 -0
- spire/xls/OleObjectType.py +51 -0
- spire/xls/OrderBy.py +19 -0
- spire/xls/OrderType.py +17 -0
- spire/xls/OvalShapeCollection.py +70 -0
- spire/xls/PageBreakExtentType.py +17 -0
- spire/xls/PageBreakType.py +18 -0
- spire/xls/PageColRow.py +48 -0
- spire/xls/PageOrientationType.py +17 -0
- spire/xls/PageSetup.py +14 -0
- spire/xls/PagesOrderType.py +17 -0
- spire/xls/PaperSizeEntry.py +30 -0
- spire/xls/PaperSizeType.py +135 -0
- spire/xls/PathFillMode.py +19 -0
- spire/xls/PdfConformanceLevel.py +20 -0
- spire/xls/PicStretch.py +104 -0
- spire/xls/PicTile.py +72 -0
- spire/xls/PicturesCollection.py +532 -0
- spire/xls/PivotAutoFomatTypes.py +35 -0
- spire/xls/PivotBuiltInStyles.py +97 -0
- spire/xls/PivotCache.py +12 -0
- spire/xls/PivotCachesCollection.py +12 -0
- spire/xls/PivotCalculatedFieldsCollection.py +38 -0
- spire/xls/PivotConditionalFormat.py +54 -0
- spire/xls/PivotConditionalFormatCollection.py +38 -0
- spire/xls/PivotDataField.py +118 -0
- spire/xls/PivotDataFields.py +104 -0
- spire/xls/PivotDataType.py +21 -0
- spire/xls/PivotField.py +12 -0
- spire/xls/PivotFieldFormatType.py +28 -0
- spire/xls/PivotFieldSortType.py +16 -0
- spire/xls/PivotGroupByTypes.py +23 -0
- spire/xls/PivotItem.py +161 -0
- spire/xls/PivotItemType.py +28 -0
- spire/xls/PivotLabelFilterType.py +27 -0
- spire/xls/PivotPageAreaFieldsOrderType.py +15 -0
- spire/xls/PivotReportFilter.py +92 -0
- spire/xls/PivotReportFilters.py +63 -0
- spire/xls/PivotStyle.py +79 -0
- spire/xls/PivotTable.py +12 -0
- spire/xls/PivotTableElement.py +38 -0
- spire/xls/PivotTableFields.py +85 -0
- spire/xls/PivotTableLayoutType.py +16 -0
- spire/xls/PivotTableStyle.py +63 -0
- spire/xls/PivotTablesCollection.py +12 -0
- spire/xls/PivotValueFilterType.py +21 -0
- spire/xls/PresetTextEffect.py +43 -0
- spire/xls/PrintCommentType.py +18 -0
- spire/xls/PrintErrorsType.py +19 -0
- spire/xls/PrintingPageType.py +16 -0
- spire/xls/PropertyType.py +31 -0
- spire/xls/PrstGeomShapeCollection.py +126 -0
- spire/xls/PrstGeomShapeType.py +201 -0
- spire/xls/QueryTableCollection.py +25 -0
- spire/xls/QueryTableXls.py +42 -0
- spire/xls/RTFCommentArray.py +112 -0
- spire/xls/RTFStringArray.py +112 -0
- spire/xls/RadioButtonCollection.py +137 -0
- spire/xls/RangeRichTextString.py +42 -0
- spire/xls/RangesCollection.py +537 -0
- spire/xls/ReadingOrderType.py +18 -0
- spire/xls/RectangleCollection.py +71 -0
- spire/xls/RectangleShapeType.py +22 -0
- spire/xls/RectangleStyleType.py +17 -0
- spire/xls/ReferRangeArea.py +88 -0
- spire/xls/RelationShip.py +15 -0
- spire/xls/RenameStrategy.py +16 -0
- spire/xls/ResizeBehaveType.py +18 -0
- spire/xls/RichText.py +49 -0
- spire/xls/RichTextObject.py +133 -0
- spire/xls/RichTextShape.py +168 -0
- spire/xls/RichTextString.py +126 -0
- spire/xls/RtfTags.py +30 -0
- spire/xls/RtfTextWriter.py +629 -0
- spire/xls/SaveShapeTypeOption.py +310 -0
- spire/xls/ScrollBarCollection.py +71 -0
- spire/xls/SelectionType.py +16 -0
- spire/xls/ShapeArrowLengthType.py +18 -0
- spire/xls/ShapeArrowStyleType.py +21 -0
- spire/xls/ShapeArrowWidthType.py +18 -0
- spire/xls/ShapeCollectionBase.py +87 -0
- spire/xls/ShapeDashLineStyleType.py +23 -0
- spire/xls/ShapeFillType.py +22 -0
- spire/xls/ShapeGeomPath.py +26 -0
- spire/xls/ShapeGlow.py +91 -0
- spire/xls/ShapeLayerChangeType.py +19 -0
- spire/xls/ShapeLineStyleType.py +20 -0
- spire/xls/ShapeReflection.py +131 -0
- spire/xls/ShapeSegmentPath.py +26 -0
- spire/xls/SheetProtectionType.py +33 -0
- spire/xls/SortColumn.py +120 -0
- spire/xls/SortColumns.py +185 -0
- spire/xls/SortComparsionType.py +19 -0
- spire/xls/SortOrientationType.py +17 -0
- spire/xls/SortedWayType.py +18 -0
- spire/xls/Sparkline.py +70 -0
- spire/xls/SparklineCollection.py +112 -0
- spire/xls/SparklineEmptyCells.py +16 -0
- spire/xls/SparklineGroup.py +523 -0
- spire/xls/SparklineGroupCollection.py +71 -0
- spire/xls/SparklineType.py +18 -0
- spire/xls/SpartlineVerticalAxisType.py +16 -0
- spire/xls/SpinnerShapeCollection.py +70 -0
- spire/xls/SplitType.py +19 -0
- spire/xls/StrikeThroughStyle.py +17 -0
- spire/xls/StringUtil.py +12 -0
- spire/xls/StyleArrayWrapper.py +621 -0
- spire/xls/StyleDefineType.py +15 -0
- spire/xls/StylesCollection.py +141 -0
- spire/xls/SubtotalTypes.py +26 -0
- spire/xls/TRangeValueType.py +19 -0
- spire/xls/TableBuiltInStyles.py +75 -0
- spire/xls/TextBoxCollection.py +70 -0
- spire/xls/TextBoxShapeBase.py +140 -0
- spire/xls/TextDirection.py +20 -0
- spire/xls/TextDirectionType.py +16 -0
- spire/xls/TextRotationType.py +19 -0
- spire/xls/TextSaveOptions.py +85 -0
- spire/xls/TextVerticalValue.py +19 -0
- spire/xls/ThemeColorType.py +27 -0
- spire/xls/TickLabelPositionType.py +19 -0
- spire/xls/TickMarkType.py +19 -0
- spire/xls/TimePeriodType.py +23 -0
- spire/xls/Top10Filter.py +75 -0
- spire/xls/TopBottom.py +44 -0
- spire/xls/TopBottomType.py +19 -0
- spire/xls/TopFormatType.py +18 -0
- spire/xls/TrendLineType.py +21 -0
- spire/xls/UnderlineStyle.py +32 -0
- spire/xls/UnknownVariableAction.py +18 -0
- spire/xls/UtilityMethods.py +55 -0
- spire/xls/VPageBreak.py +34 -0
- spire/xls/VPageBreaksCollection.py +96 -0
- spire/xls/Validation.py +33 -0
- spire/xls/ValidationComparisonOperator.py +23 -0
- spire/xls/VariableTypeAction.py +19 -0
- spire/xls/VerticalAlignType.py +20 -0
- spire/xls/ViewMode.py +18 -0
- spire/xls/WebQueryConnection.py +224 -0
- spire/xls/Workbook.py +3152 -0
- spire/xls/WorkbookObjectsCollection.py +25 -0
- spire/xls/Worksheet.py +1319 -0
- spire/xls/WorksheetChartsCollection.py +83 -0
- spire/xls/WorksheetConditionalFormats.py +12 -0
- spire/xls/WorksheetCopyType.py +31 -0
- spire/xls/WorksheetVisibility.py +18 -0
- spire/xls/WorksheetsCollection.py +341 -0
- spire/xls/WriteProtection.py +64 -0
- spire/xls/XLSXBorderJoinType.py +19 -0
- spire/xls/XLSXChartBevelType.py +26 -0
- spire/xls/XLSXChartLightingType.py +40 -0
- spire/xls/XLSXChartMaterialType.py +32 -0
- spire/xls/XLSXChartPrespectiveType.py +21 -0
- spire/xls/XLSXChartShadowInnerType.py +25 -0
- spire/xls/XLSXChartShadowOuterType.py +25 -0
- spire/xls/XLSXPivotItemType.py +28 -0
- spire/xls/XlsAddInFunction.py +78 -0
- spire/xls/XlsAddInFunctionsCollection.py +101 -0
- spire/xls/XlsArcShape.py +331 -0
- spire/xls/XlsAutoFiltersCollection.py +119 -0
- spire/xls/XlsBitmapShape.py +297 -0
- spire/xls/XlsBorder.py +172 -0
- spire/xls/XlsBorderArrayWrapper.py +116 -0
- spire/xls/XlsBordersCollection.py +101 -0
- spire/xls/XlsBuiltInDocumentProperties.py +639 -0
- spire/xls/XlsButtonShape.py +137 -0
- spire/xls/XlsChart.py +1510 -0
- spire/xls/XlsChartAxis.py +564 -0
- spire/xls/XlsChartBorder.py +165 -0
- spire/xls/XlsChartCategoryAxis.py +656 -0
- spire/xls/XlsChartDataLabelArea.py +387 -0
- spire/xls/XlsChartDataLabels.py +811 -0
- spire/xls/XlsChartDataPoint.py +108 -0
- spire/xls/XlsChartDataPointsCollection.py +120 -0
- spire/xls/XlsChartDataTable.py +393 -0
- spire/xls/XlsChartDropBar.py +301 -0
- spire/xls/XlsChartFill.py +571 -0
- spire/xls/XlsChartFormat.py +1069 -0
- spire/xls/XlsChartFormatCollection.py +162 -0
- spire/xls/XlsChartFrameFormat.py +614 -0
- spire/xls/XlsChartGridLine.py +171 -0
- spire/xls/XlsChartInterior.py +240 -0
- spire/xls/XlsChartLegend.py +355 -0
- spire/xls/XlsChartLegendArea.py +419 -0
- spire/xls/XlsChartLegendEntry.py +156 -0
- spire/xls/XlsChartPageSetup.py +56 -0
- spire/xls/XlsChartPlotArea.py +12 -0
- spire/xls/XlsChartSerie.py +589 -0
- spire/xls/XlsChartSerieDataFormat.py +1008 -0
- spire/xls/XlsChartSeries.py +111 -0
- spire/xls/XlsChartSeriesAxis.py +212 -0
- spire/xls/XlsChartShape.py +1142 -0
- spire/xls/XlsChartTitleArea.py +392 -0
- spire/xls/XlsChartValueAxis.py +317 -0
- spire/xls/XlsChartWallOrFloor.py +319 -0
- spire/xls/XlsChartsCollection.py +89 -0
- spire/xls/XlsCheckBoxShape.py +156 -0
- spire/xls/XlsComboBoxShape.py +128 -0
- spire/xls/XlsComment.py +234 -0
- spire/xls/XlsCommentsCollection.py +87 -0
- spire/xls/XlsConditionValue.py +111 -0
- spire/xls/XlsConditionalFormat.py +1119 -0
- spire/xls/XlsConditionalFormats.py +590 -0
- spire/xls/XlsDataValidationCollection.py +159 -0
- spire/xls/XlsDataValidationTable.py +105 -0
- spire/xls/XlsDocumentProperty.py +370 -0
- spire/xls/XlsEventArgs.py +93 -0
- spire/xls/XlsEventHandler.py +52 -0
- spire/xls/XlsFill.py +139 -0
- spire/xls/XlsFont.py +364 -0
- spire/xls/XlsFontStyle.py +12 -0
- spire/xls/XlsFontsCollection.py +51 -0
- spire/xls/XlsGradient.py +185 -0
- spire/xls/XlsGradientStop.py +85 -0
- spire/xls/XlsGroupBoxShape.py +88 -0
- spire/xls/XlsHPageBreak.py +105 -0
- spire/xls/XlsHPageBreaksCollection.py +85 -0
- spire/xls/XlsHeaderFooterShapeCollection.py +57 -0
- spire/xls/XlsHyperLink.py +229 -0
- spire/xls/XlsHyperLinksCollection.py +102 -0
- spire/xls/XlsLabelShape.py +73 -0
- spire/xls/XlsLineShape.py +367 -0
- spire/xls/XlsListBoxShape.py +124 -0
- spire/xls/XlsName.py +1871 -0
- spire/xls/XlsObject.py +36 -0
- spire/xls/XlsOvalShape.py +176 -0
- spire/xls/XlsPageSetup.py +220 -0
- spire/xls/XlsPageSetupBase.py +1354 -0
- spire/xls/XlsPicturesCollection.py +365 -0
- spire/xls/XlsPivotCache.py +401 -0
- spire/xls/XlsPivotCacheField.py +209 -0
- spire/xls/XlsPivotCachesCollection.py +124 -0
- spire/xls/XlsPivotField.py +885 -0
- spire/xls/XlsPivotTable.py +905 -0
- spire/xls/XlsPivotTablesCollection.py +131 -0
- spire/xls/XlsPrstGeomShape.py +97 -0
- spire/xls/XlsRadioButtonShape.py +188 -0
- spire/xls/XlsRange.py +3193 -0
- spire/xls/XlsRangesCollection.py +1566 -0
- spire/xls/XlsRectangleShape.py +174 -0
- spire/xls/XlsScrollBarShape.py +146 -0
- spire/xls/XlsShape.py +967 -0
- spire/xls/XlsShapeFill.py +627 -0
- spire/xls/XlsShapeLineFormat.py +341 -0
- spire/xls/XlsSpinnerShape.py +116 -0
- spire/xls/XlsStyle.py +106 -0
- spire/xls/XlsStylesCollection.py +73 -0
- spire/xls/XlsTextBoxShape.py +480 -0
- spire/xls/XlsVPageBreak.py +98 -0
- spire/xls/XlsVPageBreaksCollection.py +84 -0
- spire/xls/XlsValidation.py +520 -0
- spire/xls/XlsValidationWrapper.py +397 -0
- spire/xls/XlsWorkbook.py +1947 -0
- spire/xls/XlsWorkbookObjectsCollection.py +94 -0
- spire/xls/XlsWorksheet.py +4352 -0
- spire/xls/XlsWorksheetBase.py +1273 -0
- spire/xls/XlsWorksheetChartsCollection.py +25 -0
- spire/xls/XlsWorksheetConditionalFormats.py +215 -0
- spire/xls/XlsWorksheetsCollection.py +416 -0
- spire/xls/XmlOpenType.py +14 -0
- spire/xls/__init__.py +723 -0
- spire/xls/common/Boolean.py +192 -0
- spire/xls/common/Byte.py +256 -0
- spire/xls/common/Char.py +740 -0
- spire/xls/common/Color.py +2187 -0
- spire/xls/common/Common.py +150 -0
- spire/xls/common/CultureInfo.py +565 -0
- spire/xls/common/DateTime.py +1147 -0
- spire/xls/common/Double.py +438 -0
- spire/xls/common/EmfType.py +23 -0
- spire/xls/common/Encoding.py +928 -0
- spire/xls/common/FontStyle.py +25 -0
- spire/xls/common/GraphicsUnit.py +27 -0
- spire/xls/common/ICollection.py +70 -0
- spire/xls/common/IDictionary.py +122 -0
- spire/xls/common/IEnumerable.py +41 -0
- spire/xls/common/IEnumerator.py +60 -0
- spire/xls/common/IList.py +145 -0
- spire/xls/common/Int16.py +272 -0
- spire/xls/common/Int32.py +280 -0
- spire/xls/common/Int64.py +256 -0
- spire/xls/common/License.py +175 -0
- spire/xls/common/PixelFormat.py +43 -0
- spire/xls/common/Point.py +298 -0
- spire/xls/common/PointF.py +274 -0
- spire/xls/common/Rectangle.py +449 -0
- spire/xls/common/RectangleF.py +436 -0
- spire/xls/common/Regex.py +962 -0
- spire/xls/common/RegexOptions.py +29 -0
- spire/xls/common/Single.py +416 -0
- spire/xls/common/Size.py +271 -0
- spire/xls/common/SizeF.py +259 -0
- spire/xls/common/SpireObject.py +79 -0
- spire/xls/common/Stream.py +550 -0
- spire/xls/common/String.py +1878 -0
- spire/xls/common/TimeSpan.py +872 -0
- spire/xls/common/UInt16.py +272 -0
- spire/xls/common/UInt32.py +272 -0
- spire/xls/common/UInt64.py +272 -0
- spire/xls/common/__init__.py +316 -0
- spire/xls/lib/Spire.Xls.Base.so +0 -0
- spire/xls/lib/__init__.py +0 -0
- spire/xls/lib/libSkiaSharp.so +0 -0
- spire_xls-15.5.0.dist-info/METADATA +197 -0
- spire_xls-15.5.0.dist-info/RECORD +703 -0
- spire_xls-15.5.0.dist-info/WHEEL +5 -0
- spire_xls-15.5.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,976 @@
|
|
|
1
|
+
from enum import Enum
|
|
2
|
+
from plum import dispatch
|
|
3
|
+
from typing import TypeVar,Union,Generic,List,Tuple
|
|
4
|
+
from spire.xls.common import *
|
|
5
|
+
from spire.xls import *
|
|
6
|
+
from ctypes import *
|
|
7
|
+
import abc
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class AddtionalFormatWrapper ( CommonWrapper, IInternalAddtionalFormat, IExtendIndex, IStyle) :
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
"""
|
|
14
|
+
@property
|
|
15
|
+
def BuiltIn(self)->bool:
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
"""
|
|
19
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BuiltIn.argtypes=[c_void_p]
|
|
20
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BuiltIn.restype=c_bool
|
|
21
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_BuiltIn, self.Ptr)
|
|
22
|
+
return ret
|
|
23
|
+
|
|
24
|
+
@property
|
|
25
|
+
|
|
26
|
+
def Name(self)->str:
|
|
27
|
+
"""
|
|
28
|
+
|
|
29
|
+
"""
|
|
30
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Name.argtypes=[c_void_p]
|
|
31
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Name.restype=c_void_p
|
|
32
|
+
ret = PtrToStr(CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Name, self.Ptr))
|
|
33
|
+
return ret
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
@property
|
|
37
|
+
def IsInitialized(self)->bool:
|
|
38
|
+
"""
|
|
39
|
+
|
|
40
|
+
"""
|
|
41
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IsInitialized.argtypes=[c_void_p]
|
|
42
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IsInitialized.restype=c_bool
|
|
43
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IsInitialized, self.Ptr)
|
|
44
|
+
return ret
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
|
|
48
|
+
def Parent(self)->'SpireObject':
|
|
49
|
+
"""
|
|
50
|
+
|
|
51
|
+
"""
|
|
52
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Parent.argtypes=[c_void_p]
|
|
53
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Parent.restype=c_void_p
|
|
54
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Parent, self.Ptr)
|
|
55
|
+
ret = None if intPtr==None else SpireObject(intPtr)
|
|
56
|
+
return ret
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
|
|
61
|
+
def Workbook(self)->'XlsWorkbook':
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
"""
|
|
65
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Workbook.argtypes=[c_void_p]
|
|
66
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Workbook.restype=c_void_p
|
|
67
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Workbook, self.Ptr)
|
|
68
|
+
ret = None if intPtr==None else XlsWorkbook(intPtr)
|
|
69
|
+
return ret
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
|
|
74
|
+
def BottomBorderColor(self)->'OColor':
|
|
75
|
+
"""
|
|
76
|
+
<summary>
|
|
77
|
+
Gets or sets bottom border color.
|
|
78
|
+
</summary>
|
|
79
|
+
"""
|
|
80
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BottomBorderColor.argtypes=[c_void_p]
|
|
81
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BottomBorderColor.restype=c_void_p
|
|
82
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_BottomBorderColor, self.Ptr)
|
|
83
|
+
ret = None if intPtr==None else OColor(intPtr)
|
|
84
|
+
return ret
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
@property
|
|
88
|
+
|
|
89
|
+
def TopBorderColor(self)->'OColor':
|
|
90
|
+
"""
|
|
91
|
+
<summary>
|
|
92
|
+
Gets or sets top border color.
|
|
93
|
+
</summary>
|
|
94
|
+
"""
|
|
95
|
+
GetDllLibXls().AddtionalFormatWrapper_get_TopBorderColor.argtypes=[c_void_p]
|
|
96
|
+
GetDllLibXls().AddtionalFormatWrapper_get_TopBorderColor.restype=c_void_p
|
|
97
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_TopBorderColor, self.Ptr)
|
|
98
|
+
ret = None if intPtr==None else OColor(intPtr)
|
|
99
|
+
return ret
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
|
|
104
|
+
def LeftBorderColor(self)->'OColor':
|
|
105
|
+
"""
|
|
106
|
+
<summary>
|
|
107
|
+
Gets or sets left border color.
|
|
108
|
+
</summary>
|
|
109
|
+
"""
|
|
110
|
+
GetDllLibXls().AddtionalFormatWrapper_get_LeftBorderColor.argtypes=[c_void_p]
|
|
111
|
+
GetDllLibXls().AddtionalFormatWrapper_get_LeftBorderColor.restype=c_void_p
|
|
112
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_LeftBorderColor, self.Ptr)
|
|
113
|
+
ret = None if intPtr==None else OColor(intPtr)
|
|
114
|
+
return ret
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
|
|
119
|
+
def RightBorderColor(self)->'OColor':
|
|
120
|
+
"""
|
|
121
|
+
<summary>
|
|
122
|
+
Gets or sets right border color.
|
|
123
|
+
</summary>
|
|
124
|
+
"""
|
|
125
|
+
GetDllLibXls().AddtionalFormatWrapper_get_RightBorderColor.argtypes=[c_void_p]
|
|
126
|
+
GetDllLibXls().AddtionalFormatWrapper_get_RightBorderColor.restype=c_void_p
|
|
127
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_RightBorderColor, self.Ptr)
|
|
128
|
+
ret = None if intPtr==None else OColor(intPtr)
|
|
129
|
+
return ret
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
|
|
134
|
+
def DiagonalBorderColor(self)->'OColor':
|
|
135
|
+
"""
|
|
136
|
+
<summary>
|
|
137
|
+
Gets or sets diagonal border color.
|
|
138
|
+
</summary>
|
|
139
|
+
"""
|
|
140
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalBorderColor.argtypes=[c_void_p]
|
|
141
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalBorderColor.restype=c_void_p
|
|
142
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_DiagonalBorderColor, self.Ptr)
|
|
143
|
+
ret = None if intPtr==None else OColor(intPtr)
|
|
144
|
+
return ret
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
@property
|
|
148
|
+
|
|
149
|
+
def LeftBorderLineStyle(self)->'LineStyleType':
|
|
150
|
+
"""
|
|
151
|
+
<summary>
|
|
152
|
+
Gets or sets line style of the left border.
|
|
153
|
+
</summary>
|
|
154
|
+
"""
|
|
155
|
+
GetDllLibXls().AddtionalFormatWrapper_get_LeftBorderLineStyle.argtypes=[c_void_p]
|
|
156
|
+
GetDllLibXls().AddtionalFormatWrapper_get_LeftBorderLineStyle.restype=c_int
|
|
157
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_LeftBorderLineStyle, self.Ptr)
|
|
158
|
+
objwraped = LineStyleType(ret)
|
|
159
|
+
return objwraped
|
|
160
|
+
|
|
161
|
+
@LeftBorderLineStyle.setter
|
|
162
|
+
def LeftBorderLineStyle(self, value:'LineStyleType'):
|
|
163
|
+
GetDllLibXls().AddtionalFormatWrapper_set_LeftBorderLineStyle.argtypes=[c_void_p, c_int]
|
|
164
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_LeftBorderLineStyle, self.Ptr, value.value)
|
|
165
|
+
|
|
166
|
+
@property
|
|
167
|
+
|
|
168
|
+
def RightBorderLineStyle(self)->'LineStyleType':
|
|
169
|
+
"""
|
|
170
|
+
<summary>
|
|
171
|
+
Gets or sets line style of the right border.
|
|
172
|
+
</summary>
|
|
173
|
+
"""
|
|
174
|
+
GetDllLibXls().AddtionalFormatWrapper_get_RightBorderLineStyle.argtypes=[c_void_p]
|
|
175
|
+
GetDllLibXls().AddtionalFormatWrapper_get_RightBorderLineStyle.restype=c_int
|
|
176
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_RightBorderLineStyle, self.Ptr)
|
|
177
|
+
objwraped = LineStyleType(ret)
|
|
178
|
+
return objwraped
|
|
179
|
+
|
|
180
|
+
@RightBorderLineStyle.setter
|
|
181
|
+
def RightBorderLineStyle(self, value:'LineStyleType'):
|
|
182
|
+
GetDllLibXls().AddtionalFormatWrapper_set_RightBorderLineStyle.argtypes=[c_void_p, c_int]
|
|
183
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_RightBorderLineStyle, self.Ptr, value.value)
|
|
184
|
+
|
|
185
|
+
@property
|
|
186
|
+
|
|
187
|
+
def TopBorderLineStyle(self)->'LineStyleType':
|
|
188
|
+
"""
|
|
189
|
+
<summary>
|
|
190
|
+
Gets or sets line style of the top border.
|
|
191
|
+
</summary>
|
|
192
|
+
"""
|
|
193
|
+
GetDllLibXls().AddtionalFormatWrapper_get_TopBorderLineStyle.argtypes=[c_void_p]
|
|
194
|
+
GetDllLibXls().AddtionalFormatWrapper_get_TopBorderLineStyle.restype=c_int
|
|
195
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_TopBorderLineStyle, self.Ptr)
|
|
196
|
+
objwraped = LineStyleType(ret)
|
|
197
|
+
return objwraped
|
|
198
|
+
|
|
199
|
+
@TopBorderLineStyle.setter
|
|
200
|
+
def TopBorderLineStyle(self, value:'LineStyleType'):
|
|
201
|
+
GetDllLibXls().AddtionalFormatWrapper_set_TopBorderLineStyle.argtypes=[c_void_p, c_int]
|
|
202
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_TopBorderLineStyle, self.Ptr, value.value)
|
|
203
|
+
|
|
204
|
+
@property
|
|
205
|
+
|
|
206
|
+
def BottomBorderLineStyle(self)->'LineStyleType':
|
|
207
|
+
"""
|
|
208
|
+
<summary>
|
|
209
|
+
Gets or sets line style of the bottom border.
|
|
210
|
+
</summary>
|
|
211
|
+
"""
|
|
212
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BottomBorderLineStyle.argtypes=[c_void_p]
|
|
213
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BottomBorderLineStyle.restype=c_int
|
|
214
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_BottomBorderLineStyle, self.Ptr)
|
|
215
|
+
objwraped = LineStyleType(ret)
|
|
216
|
+
return objwraped
|
|
217
|
+
|
|
218
|
+
@BottomBorderLineStyle.setter
|
|
219
|
+
def BottomBorderLineStyle(self, value:'LineStyleType'):
|
|
220
|
+
GetDllLibXls().AddtionalFormatWrapper_set_BottomBorderLineStyle.argtypes=[c_void_p, c_int]
|
|
221
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_BottomBorderLineStyle, self.Ptr, value.value)
|
|
222
|
+
|
|
223
|
+
@property
|
|
224
|
+
|
|
225
|
+
def DiagonalUpBorderLineStyle(self)->'LineStyleType':
|
|
226
|
+
"""
|
|
227
|
+
<summary>
|
|
228
|
+
Gets or sets line style of the diagonal border.
|
|
229
|
+
</summary>
|
|
230
|
+
"""
|
|
231
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalUpBorderLineStyle.argtypes=[c_void_p]
|
|
232
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalUpBorderLineStyle.restype=c_int
|
|
233
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_DiagonalUpBorderLineStyle, self.Ptr)
|
|
234
|
+
objwraped = LineStyleType(ret)
|
|
235
|
+
return objwraped
|
|
236
|
+
|
|
237
|
+
@DiagonalUpBorderLineStyle.setter
|
|
238
|
+
def DiagonalUpBorderLineStyle(self, value:'LineStyleType'):
|
|
239
|
+
GetDllLibXls().AddtionalFormatWrapper_set_DiagonalUpBorderLineStyle.argtypes=[c_void_p, c_int]
|
|
240
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_DiagonalUpBorderLineStyle, self.Ptr, value.value)
|
|
241
|
+
|
|
242
|
+
@property
|
|
243
|
+
|
|
244
|
+
def DiagonalDownBorderLineStyle(self)->'LineStyleType':
|
|
245
|
+
"""
|
|
246
|
+
<summary>
|
|
247
|
+
Gets or sets line style of the diagonal border.
|
|
248
|
+
</summary>
|
|
249
|
+
"""
|
|
250
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalDownBorderLineStyle.argtypes=[c_void_p]
|
|
251
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalDownBorderLineStyle.restype=c_int
|
|
252
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_DiagonalDownBorderLineStyle, self.Ptr)
|
|
253
|
+
objwraped = LineStyleType(ret)
|
|
254
|
+
return objwraped
|
|
255
|
+
|
|
256
|
+
@DiagonalDownBorderLineStyle.setter
|
|
257
|
+
def DiagonalDownBorderLineStyle(self, value:'LineStyleType'):
|
|
258
|
+
GetDllLibXls().AddtionalFormatWrapper_set_DiagonalDownBorderLineStyle.argtypes=[c_void_p, c_int]
|
|
259
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_DiagonalDownBorderLineStyle, self.Ptr, value.value)
|
|
260
|
+
|
|
261
|
+
@property
|
|
262
|
+
def DiagonalUpVisible(self)->bool:
|
|
263
|
+
"""
|
|
264
|
+
<summary>
|
|
265
|
+
Indicates whether DiagonalUp line is visible.
|
|
266
|
+
</summary>
|
|
267
|
+
"""
|
|
268
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalUpVisible.argtypes=[c_void_p]
|
|
269
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalUpVisible.restype=c_bool
|
|
270
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_DiagonalUpVisible, self.Ptr)
|
|
271
|
+
return ret
|
|
272
|
+
|
|
273
|
+
@DiagonalUpVisible.setter
|
|
274
|
+
def DiagonalUpVisible(self, value:bool):
|
|
275
|
+
GetDllLibXls().AddtionalFormatWrapper_set_DiagonalUpVisible.argtypes=[c_void_p, c_bool]
|
|
276
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_DiagonalUpVisible, self.Ptr, value)
|
|
277
|
+
|
|
278
|
+
@property
|
|
279
|
+
def DiagonalDownVisible(self)->bool:
|
|
280
|
+
"""
|
|
281
|
+
<summary>
|
|
282
|
+
Indicates whether diagonal down line is visible.
|
|
283
|
+
</summary>
|
|
284
|
+
"""
|
|
285
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalDownVisible.argtypes=[c_void_p]
|
|
286
|
+
GetDllLibXls().AddtionalFormatWrapper_get_DiagonalDownVisible.restype=c_bool
|
|
287
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_DiagonalDownVisible, self.Ptr)
|
|
288
|
+
return ret
|
|
289
|
+
|
|
290
|
+
@DiagonalDownVisible.setter
|
|
291
|
+
def DiagonalDownVisible(self, value:bool):
|
|
292
|
+
GetDllLibXls().AddtionalFormatWrapper_set_DiagonalDownVisible.argtypes=[c_void_p, c_bool]
|
|
293
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_DiagonalDownVisible, self.Ptr, value)
|
|
294
|
+
|
|
295
|
+
@property
|
|
296
|
+
|
|
297
|
+
def FillPattern(self)->'ExcelPatternType':
|
|
298
|
+
"""
|
|
299
|
+
<summary>
|
|
300
|
+
Gets or Sets fill pattern type.
|
|
301
|
+
</summary>
|
|
302
|
+
"""
|
|
303
|
+
GetDllLibXls().AddtionalFormatWrapper_get_FillPattern.argtypes=[c_void_p]
|
|
304
|
+
GetDllLibXls().AddtionalFormatWrapper_get_FillPattern.restype=c_int
|
|
305
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_FillPattern, self.Ptr)
|
|
306
|
+
objwraped = ExcelPatternType(ret)
|
|
307
|
+
return objwraped
|
|
308
|
+
|
|
309
|
+
@FillPattern.setter
|
|
310
|
+
def FillPattern(self, value:'ExcelPatternType'):
|
|
311
|
+
GetDllLibXls().AddtionalFormatWrapper_set_FillPattern.argtypes=[c_void_p, c_int]
|
|
312
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_FillPattern, self.Ptr, value.value)
|
|
313
|
+
|
|
314
|
+
@property
|
|
315
|
+
def ExtendedFormatIndex(self)->int:
|
|
316
|
+
"""
|
|
317
|
+
<summary>
|
|
318
|
+
Gets extended format index.
|
|
319
|
+
</summary>
|
|
320
|
+
"""
|
|
321
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ExtendedFormatIndex.argtypes=[c_void_p]
|
|
322
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ExtendedFormatIndex.restype=c_int
|
|
323
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_ExtendedFormatIndex, self.Ptr)
|
|
324
|
+
return ret
|
|
325
|
+
|
|
326
|
+
@property
|
|
327
|
+
|
|
328
|
+
def BackgroundKnownColor(self)->'ExcelColors':
|
|
329
|
+
"""
|
|
330
|
+
<summary>
|
|
331
|
+
Gets or Sets index of fill background excel color.
|
|
332
|
+
</summary>
|
|
333
|
+
"""
|
|
334
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BackgroundKnownColor.argtypes=[c_void_p]
|
|
335
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BackgroundKnownColor.restype=c_int
|
|
336
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_BackgroundKnownColor, self.Ptr)
|
|
337
|
+
objwraped = ExcelColors(ret)
|
|
338
|
+
return objwraped
|
|
339
|
+
|
|
340
|
+
@BackgroundKnownColor.setter
|
|
341
|
+
def BackgroundKnownColor(self, value:'ExcelColors'):
|
|
342
|
+
GetDllLibXls().AddtionalFormatWrapper_set_BackgroundKnownColor.argtypes=[c_void_p, c_int]
|
|
343
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_BackgroundKnownColor, self.Ptr, value.value)
|
|
344
|
+
|
|
345
|
+
@property
|
|
346
|
+
|
|
347
|
+
def BackgroundColor(self)->'Color':
|
|
348
|
+
"""
|
|
349
|
+
<summary>
|
|
350
|
+
Gets or Sets fill background color.
|
|
351
|
+
</summary>
|
|
352
|
+
"""
|
|
353
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BackgroundColor.argtypes=[c_void_p]
|
|
354
|
+
GetDllLibXls().AddtionalFormatWrapper_get_BackgroundColor.restype=c_void_p
|
|
355
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_BackgroundColor, self.Ptr)
|
|
356
|
+
ret = None if intPtr==None else Color(intPtr)
|
|
357
|
+
return ret
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
@BackgroundColor.setter
|
|
361
|
+
def BackgroundColor(self, value:'Color'):
|
|
362
|
+
GetDllLibXls().AddtionalFormatWrapper_set_BackgroundColor.argtypes=[c_void_p, c_void_p]
|
|
363
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_BackgroundColor, self.Ptr, value.Ptr)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
def SetThemeColor(self ,type:'ThemeColorType',tint:float):
|
|
367
|
+
"""
|
|
368
|
+
|
|
369
|
+
"""
|
|
370
|
+
enumtype:c_int = type.value
|
|
371
|
+
|
|
372
|
+
GetDllLibXls().AddtionalFormatWrapper_SetThemeColor.argtypes=[c_void_p ,c_int,c_double]
|
|
373
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_SetThemeColor, self.Ptr, enumtype,tint)
|
|
374
|
+
|
|
375
|
+
#
|
|
376
|
+
# def GetThemeColor(self ,type:'ThemeColorType&',tint:'Double&')->bool:
|
|
377
|
+
# """
|
|
378
|
+
#
|
|
379
|
+
# """
|
|
380
|
+
# intPtrtype:c_void_p = type.Ptr
|
|
381
|
+
# intPtrtint:c_void_p = tint.Ptr
|
|
382
|
+
#
|
|
383
|
+
# GetDllLibXls().AddtionalFormatWrapper_GetThemeColor.argtypes=[c_void_p ,c_void_p,c_void_p]
|
|
384
|
+
# GetDllLibXls().AddtionalFormatWrapper_GetThemeColor.restype=c_bool
|
|
385
|
+
# ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_GetThemeColor, self.Ptr, intPtrtype,intPtrtint)
|
|
386
|
+
# return ret
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
def SetBackgroundThemeColor(self ,type:'ThemeColorType',tint:int):
|
|
391
|
+
"""
|
|
392
|
+
|
|
393
|
+
"""
|
|
394
|
+
enumtype:c_int = type.value
|
|
395
|
+
|
|
396
|
+
GetDllLibXls().AddtionalFormatWrapper_SetBackgroundThemeColor.argtypes=[c_void_p ,c_int,c_int]
|
|
397
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_SetBackgroundThemeColor, self.Ptr, enumtype,tint)
|
|
398
|
+
|
|
399
|
+
#
|
|
400
|
+
# def GetBackgroundThemeColor(self ,type:'ThemeColorType&',tint:'Double&')->bool:
|
|
401
|
+
# """
|
|
402
|
+
#
|
|
403
|
+
# """
|
|
404
|
+
# intPtrtype:c_void_p = type.Ptr
|
|
405
|
+
# intPtrtint:c_void_p = tint.Ptr
|
|
406
|
+
#
|
|
407
|
+
# GetDllLibXls().AddtionalFormatWrapper_GetBackgroundThemeColor.argtypes=[c_void_p ,c_void_p,c_void_p]
|
|
408
|
+
# GetDllLibXls().AddtionalFormatWrapper_GetBackgroundThemeColor.restype=c_bool
|
|
409
|
+
# ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_GetBackgroundThemeColor, self.Ptr, intPtrtype,intPtrtint)
|
|
410
|
+
# return ret
|
|
411
|
+
|
|
412
|
+
|
|
413
|
+
@property
|
|
414
|
+
|
|
415
|
+
def ForegroundKnownColor(self)->'ExcelColors':
|
|
416
|
+
"""
|
|
417
|
+
<summary>
|
|
418
|
+
Gets or Sets fill foreground excel color.
|
|
419
|
+
</summary>
|
|
420
|
+
"""
|
|
421
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ForegroundKnownColor.argtypes=[c_void_p]
|
|
422
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ForegroundKnownColor.restype=c_int
|
|
423
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_ForegroundKnownColor, self.Ptr)
|
|
424
|
+
objwraped = ExcelColors(ret)
|
|
425
|
+
return objwraped
|
|
426
|
+
|
|
427
|
+
@ForegroundKnownColor.setter
|
|
428
|
+
def ForegroundKnownColor(self, value:'ExcelColors'):
|
|
429
|
+
GetDllLibXls().AddtionalFormatWrapper_set_ForegroundKnownColor.argtypes=[c_void_p, c_int]
|
|
430
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_ForegroundKnownColor, self.Ptr, value.value)
|
|
431
|
+
|
|
432
|
+
@property
|
|
433
|
+
|
|
434
|
+
def ForegroundColor(self)->'Color':
|
|
435
|
+
"""
|
|
436
|
+
<summary>
|
|
437
|
+
Gets or Sets fill foreground color.
|
|
438
|
+
</summary>
|
|
439
|
+
"""
|
|
440
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ForegroundColor.argtypes=[c_void_p]
|
|
441
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ForegroundColor.restype=c_void_p
|
|
442
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_ForegroundColor, self.Ptr)
|
|
443
|
+
ret = None if intPtr==None else Color(intPtr)
|
|
444
|
+
return ret
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
@ForegroundColor.setter
|
|
448
|
+
def ForegroundColor(self, value:'Color'):
|
|
449
|
+
GetDllLibXls().AddtionalFormatWrapper_set_ForegroundColor.argtypes=[c_void_p, c_void_p]
|
|
450
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_ForegroundColor, self.Ptr, value.Ptr)
|
|
451
|
+
|
|
452
|
+
@property
|
|
453
|
+
def NumberFormatIndex(self)->int:
|
|
454
|
+
"""
|
|
455
|
+
<summary>
|
|
456
|
+
Gets or Sets format index.
|
|
457
|
+
</summary>
|
|
458
|
+
"""
|
|
459
|
+
GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatIndex.argtypes=[c_void_p]
|
|
460
|
+
GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatIndex.restype=c_int
|
|
461
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatIndex, self.Ptr)
|
|
462
|
+
return ret
|
|
463
|
+
|
|
464
|
+
@NumberFormatIndex.setter
|
|
465
|
+
def NumberFormatIndex(self, value:int):
|
|
466
|
+
GetDllLibXls().AddtionalFormatWrapper_set_NumberFormatIndex.argtypes=[c_void_p, c_int]
|
|
467
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_NumberFormatIndex, self.Ptr, value)
|
|
468
|
+
|
|
469
|
+
@property
|
|
470
|
+
|
|
471
|
+
def HorizontalAlignment(self)->'HorizontalAlignType':
|
|
472
|
+
"""
|
|
473
|
+
<summary>
|
|
474
|
+
Returns or sets the horizontal alignment for the specified object.
|
|
475
|
+
</summary>
|
|
476
|
+
"""
|
|
477
|
+
GetDllLibXls().AddtionalFormatWrapper_get_HorizontalAlignment.argtypes=[c_void_p]
|
|
478
|
+
GetDllLibXls().AddtionalFormatWrapper_get_HorizontalAlignment.restype=c_int
|
|
479
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_HorizontalAlignment, self.Ptr)
|
|
480
|
+
objwraped = HorizontalAlignType(ret)
|
|
481
|
+
return objwraped
|
|
482
|
+
|
|
483
|
+
@HorizontalAlignment.setter
|
|
484
|
+
def HorizontalAlignment(self, value:'HorizontalAlignType'):
|
|
485
|
+
GetDllLibXls().AddtionalFormatWrapper_set_HorizontalAlignment.argtypes=[c_void_p, c_int]
|
|
486
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_HorizontalAlignment, self.Ptr, value.value)
|
|
487
|
+
|
|
488
|
+
@property
|
|
489
|
+
def IncludeAlignment(self)->bool:
|
|
490
|
+
"""
|
|
491
|
+
<summary>
|
|
492
|
+
True if the style includes the AddIndent, HorizontalAlignment,
|
|
493
|
+
VerticalAlignment, WrapText, and Orientation properties.
|
|
494
|
+
</summary>
|
|
495
|
+
"""
|
|
496
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeAlignment.argtypes=[c_void_p]
|
|
497
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeAlignment.restype=c_bool
|
|
498
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IncludeAlignment, self.Ptr)
|
|
499
|
+
return ret
|
|
500
|
+
|
|
501
|
+
@IncludeAlignment.setter
|
|
502
|
+
def IncludeAlignment(self, value:bool):
|
|
503
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IncludeAlignment.argtypes=[c_void_p, c_bool]
|
|
504
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IncludeAlignment, self.Ptr, value)
|
|
505
|
+
|
|
506
|
+
@property
|
|
507
|
+
def IncludeBorder(self)->bool:
|
|
508
|
+
"""
|
|
509
|
+
<summary>
|
|
510
|
+
True if the style includes the Color, KnownColor, LineStyle, and Weight border properties
|
|
511
|
+
</summary>
|
|
512
|
+
"""
|
|
513
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeBorder.argtypes=[c_void_p]
|
|
514
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeBorder.restype=c_bool
|
|
515
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IncludeBorder, self.Ptr)
|
|
516
|
+
return ret
|
|
517
|
+
|
|
518
|
+
@IncludeBorder.setter
|
|
519
|
+
def IncludeBorder(self, value:bool):
|
|
520
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IncludeBorder.argtypes=[c_void_p, c_bool]
|
|
521
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IncludeBorder, self.Ptr, value)
|
|
522
|
+
|
|
523
|
+
@property
|
|
524
|
+
def IncludeFont(self)->bool:
|
|
525
|
+
"""
|
|
526
|
+
<summary>
|
|
527
|
+
True if the style includes the Background, Bold, Color, KnownColor, FontStyle, Italic, Name, OutlineFont, Shadow, Size, Strikethrough, Subscript, Superscript, and Underline font properties.
|
|
528
|
+
</summary>
|
|
529
|
+
"""
|
|
530
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeFont.argtypes=[c_void_p]
|
|
531
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeFont.restype=c_bool
|
|
532
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IncludeFont, self.Ptr)
|
|
533
|
+
return ret
|
|
534
|
+
|
|
535
|
+
@IncludeFont.setter
|
|
536
|
+
def IncludeFont(self, value:bool):
|
|
537
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IncludeFont.argtypes=[c_void_p, c_bool]
|
|
538
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IncludeFont, self.Ptr, value)
|
|
539
|
+
|
|
540
|
+
@property
|
|
541
|
+
def IncludeNumberFormat(self)->bool:
|
|
542
|
+
"""
|
|
543
|
+
<summary>
|
|
544
|
+
True if the style includes the NumberFormat property.
|
|
545
|
+
</summary>
|
|
546
|
+
"""
|
|
547
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeNumberFormat.argtypes=[c_void_p]
|
|
548
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeNumberFormat.restype=c_bool
|
|
549
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IncludeNumberFormat, self.Ptr)
|
|
550
|
+
return ret
|
|
551
|
+
|
|
552
|
+
@IncludeNumberFormat.setter
|
|
553
|
+
def IncludeNumberFormat(self, value:bool):
|
|
554
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IncludeNumberFormat.argtypes=[c_void_p, c_bool]
|
|
555
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IncludeNumberFormat, self.Ptr, value)
|
|
556
|
+
|
|
557
|
+
@property
|
|
558
|
+
def IncludePatterns(self)->bool:
|
|
559
|
+
"""
|
|
560
|
+
<summary>
|
|
561
|
+
True if the style includes the Color, KnownColor,
|
|
562
|
+
InvertIfNegative, Pattern, PatternColor, and PatternKnownColor
|
|
563
|
+
interior properties.
|
|
564
|
+
</summary>
|
|
565
|
+
"""
|
|
566
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludePatterns.argtypes=[c_void_p]
|
|
567
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludePatterns.restype=c_bool
|
|
568
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IncludePatterns, self.Ptr)
|
|
569
|
+
return ret
|
|
570
|
+
|
|
571
|
+
@IncludePatterns.setter
|
|
572
|
+
def IncludePatterns(self, value:bool):
|
|
573
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IncludePatterns.argtypes=[c_void_p, c_bool]
|
|
574
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IncludePatterns, self.Ptr, value)
|
|
575
|
+
|
|
576
|
+
@property
|
|
577
|
+
def IncludeProtection(self)->bool:
|
|
578
|
+
"""
|
|
579
|
+
<summary>
|
|
580
|
+
True if the style includes the FormulaHidden and Locked protection
|
|
581
|
+
properties.
|
|
582
|
+
</summary>
|
|
583
|
+
"""
|
|
584
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeProtection.argtypes=[c_void_p]
|
|
585
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IncludeProtection.restype=c_bool
|
|
586
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IncludeProtection, self.Ptr)
|
|
587
|
+
return ret
|
|
588
|
+
|
|
589
|
+
@IncludeProtection.setter
|
|
590
|
+
def IncludeProtection(self, value:bool):
|
|
591
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IncludeProtection.argtypes=[c_void_p, c_bool]
|
|
592
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IncludeProtection, self.Ptr, value)
|
|
593
|
+
|
|
594
|
+
@property
|
|
595
|
+
def IndentLevel(self)->int:
|
|
596
|
+
"""
|
|
597
|
+
<summary>
|
|
598
|
+
Returns or sets the indent level for the style.
|
|
599
|
+
</summary>
|
|
600
|
+
"""
|
|
601
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IndentLevel.argtypes=[c_void_p]
|
|
602
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IndentLevel.restype=c_int
|
|
603
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IndentLevel, self.Ptr)
|
|
604
|
+
return ret
|
|
605
|
+
|
|
606
|
+
@IndentLevel.setter
|
|
607
|
+
def IndentLevel(self, value:int):
|
|
608
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IndentLevel.argtypes=[c_void_p, c_int]
|
|
609
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IndentLevel, self.Ptr, value)
|
|
610
|
+
|
|
611
|
+
@property
|
|
612
|
+
def FormulaHidden(self)->bool:
|
|
613
|
+
"""
|
|
614
|
+
<summary>
|
|
615
|
+
True if the formula will be hidden when the worksheet is protected.
|
|
616
|
+
</summary>
|
|
617
|
+
"""
|
|
618
|
+
GetDllLibXls().AddtionalFormatWrapper_get_FormulaHidden.argtypes=[c_void_p]
|
|
619
|
+
GetDllLibXls().AddtionalFormatWrapper_get_FormulaHidden.restype=c_bool
|
|
620
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_FormulaHidden, self.Ptr)
|
|
621
|
+
return ret
|
|
622
|
+
|
|
623
|
+
@FormulaHidden.setter
|
|
624
|
+
def FormulaHidden(self, value:bool):
|
|
625
|
+
GetDllLibXls().AddtionalFormatWrapper_set_FormulaHidden.argtypes=[c_void_p, c_bool]
|
|
626
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_FormulaHidden, self.Ptr, value)
|
|
627
|
+
|
|
628
|
+
@property
|
|
629
|
+
def Locked(self)->bool:
|
|
630
|
+
"""
|
|
631
|
+
<summary>
|
|
632
|
+
True if the object is locked; False if the object can be modified when the sheet is protected.
|
|
633
|
+
</summary>
|
|
634
|
+
"""
|
|
635
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Locked.argtypes=[c_void_p]
|
|
636
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Locked.restype=c_bool
|
|
637
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Locked, self.Ptr)
|
|
638
|
+
return ret
|
|
639
|
+
|
|
640
|
+
@Locked.setter
|
|
641
|
+
def Locked(self, value:bool):
|
|
642
|
+
GetDllLibXls().AddtionalFormatWrapper_set_Locked.argtypes=[c_void_p, c_bool]
|
|
643
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_Locked, self.Ptr, value)
|
|
644
|
+
|
|
645
|
+
@property
|
|
646
|
+
def JustifyLast(self)->bool:
|
|
647
|
+
"""
|
|
648
|
+
<summary>
|
|
649
|
+
Represents justify text alignment
|
|
650
|
+
</summary>
|
|
651
|
+
"""
|
|
652
|
+
GetDllLibXls().AddtionalFormatWrapper_get_JustifyLast.argtypes=[c_void_p]
|
|
653
|
+
GetDllLibXls().AddtionalFormatWrapper_get_JustifyLast.restype=c_bool
|
|
654
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_JustifyLast, self.Ptr)
|
|
655
|
+
return ret
|
|
656
|
+
|
|
657
|
+
@JustifyLast.setter
|
|
658
|
+
def JustifyLast(self, value:bool):
|
|
659
|
+
GetDllLibXls().AddtionalFormatWrapper_set_JustifyLast.argtypes=[c_void_p, c_bool]
|
|
660
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_JustifyLast, self.Ptr, value)
|
|
661
|
+
|
|
662
|
+
@property
|
|
663
|
+
|
|
664
|
+
def NumberFormat(self)->str:
|
|
665
|
+
"""
|
|
666
|
+
<summary>
|
|
667
|
+
Returns or sets the format code for the object.
|
|
668
|
+
</summary>
|
|
669
|
+
"""
|
|
670
|
+
GetDllLibXls().AddtionalFormatWrapper_get_NumberFormat.argtypes=[c_void_p]
|
|
671
|
+
GetDllLibXls().AddtionalFormatWrapper_get_NumberFormat.restype=c_void_p
|
|
672
|
+
ret = PtrToStr(CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_NumberFormat, self.Ptr))
|
|
673
|
+
return ret
|
|
674
|
+
|
|
675
|
+
|
|
676
|
+
@NumberFormat.setter
|
|
677
|
+
def NumberFormat(self, value:str):
|
|
678
|
+
GetDllLibXls().AddtionalFormatWrapper_set_NumberFormat.argtypes=[c_void_p, c_wchar_p]
|
|
679
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_NumberFormat, self.Ptr, value)
|
|
680
|
+
|
|
681
|
+
@property
|
|
682
|
+
|
|
683
|
+
def NumberFormatLocal(self)->str:
|
|
684
|
+
"""
|
|
685
|
+
<summary>
|
|
686
|
+
Returns or sets the format code for the object as a string in the
|
|
687
|
+
language of the user.
|
|
688
|
+
</summary>
|
|
689
|
+
"""
|
|
690
|
+
GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatLocal.argtypes=[c_void_p]
|
|
691
|
+
GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatLocal.restype=c_void_p
|
|
692
|
+
ret = PtrToStr(CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatLocal, self.Ptr))
|
|
693
|
+
return ret
|
|
694
|
+
|
|
695
|
+
|
|
696
|
+
@NumberFormatLocal.setter
|
|
697
|
+
def NumberFormatLocal(self, value:str):
|
|
698
|
+
GetDllLibXls().AddtionalFormatWrapper_set_NumberFormatLocal.argtypes=[c_void_p, c_wchar_p]
|
|
699
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_NumberFormatLocal, self.Ptr, value)
|
|
700
|
+
|
|
701
|
+
#@property
|
|
702
|
+
|
|
703
|
+
#def NumberFormatSettings(self)->'INumberFormat':
|
|
704
|
+
# """
|
|
705
|
+
#<summary>
|
|
706
|
+
# Returns object that describes number format. Read-only.
|
|
707
|
+
#</summary>
|
|
708
|
+
# """
|
|
709
|
+
# GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatSettings.argtypes=[c_void_p]
|
|
710
|
+
# GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatSettings.restype=c_void_p
|
|
711
|
+
# intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_NumberFormatSettings, self.Ptr)
|
|
712
|
+
# ret = None if intPtr==None else INumberFormat(intPtr)
|
|
713
|
+
# return ret
|
|
714
|
+
|
|
715
|
+
|
|
716
|
+
@property
|
|
717
|
+
|
|
718
|
+
def ReadingOrder(self)->'ReadingOrderType':
|
|
719
|
+
"""
|
|
720
|
+
<summary>
|
|
721
|
+
Returns or sets the reading order for the specified object.
|
|
722
|
+
</summary>
|
|
723
|
+
"""
|
|
724
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ReadingOrder.argtypes=[c_void_p]
|
|
725
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ReadingOrder.restype=c_int
|
|
726
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_ReadingOrder, self.Ptr)
|
|
727
|
+
objwraped = ReadingOrderType(ret)
|
|
728
|
+
return objwraped
|
|
729
|
+
|
|
730
|
+
@ReadingOrder.setter
|
|
731
|
+
def ReadingOrder(self, value:'ReadingOrderType'):
|
|
732
|
+
GetDllLibXls().AddtionalFormatWrapper_set_ReadingOrder.argtypes=[c_void_p, c_int]
|
|
733
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_ReadingOrder, self.Ptr, value.value)
|
|
734
|
+
|
|
735
|
+
@property
|
|
736
|
+
def Rotation(self)->int:
|
|
737
|
+
"""
|
|
738
|
+
<summary>
|
|
739
|
+
The text orientation. Can be an integer value from 1 to 180 degrees
|
|
740
|
+
</summary>
|
|
741
|
+
"""
|
|
742
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Rotation.argtypes=[c_void_p]
|
|
743
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Rotation.restype=c_int
|
|
744
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Rotation, self.Ptr)
|
|
745
|
+
return ret
|
|
746
|
+
|
|
747
|
+
@Rotation.setter
|
|
748
|
+
def Rotation(self, value:int):
|
|
749
|
+
GetDllLibXls().AddtionalFormatWrapper_set_Rotation.argtypes=[c_void_p, c_int]
|
|
750
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_Rotation, self.Ptr, value)
|
|
751
|
+
|
|
752
|
+
@property
|
|
753
|
+
def ShrinkToFit(self)->bool:
|
|
754
|
+
"""
|
|
755
|
+
<summary>
|
|
756
|
+
True if text automatically shrinks to fit in the available column width.
|
|
757
|
+
</summary>
|
|
758
|
+
"""
|
|
759
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ShrinkToFit.argtypes=[c_void_p]
|
|
760
|
+
GetDllLibXls().AddtionalFormatWrapper_get_ShrinkToFit.restype=c_bool
|
|
761
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_ShrinkToFit, self.Ptr)
|
|
762
|
+
return ret
|
|
763
|
+
|
|
764
|
+
@ShrinkToFit.setter
|
|
765
|
+
def ShrinkToFit(self, value:bool):
|
|
766
|
+
GetDllLibXls().AddtionalFormatWrapper_set_ShrinkToFit.argtypes=[c_void_p, c_bool]
|
|
767
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_ShrinkToFit, self.Ptr, value)
|
|
768
|
+
|
|
769
|
+
@property
|
|
770
|
+
|
|
771
|
+
def VerticalAlignment(self)->'VerticalAlignType':
|
|
772
|
+
"""
|
|
773
|
+
<summary>
|
|
774
|
+
Returns or sets the vertical alignment of the specified object.
|
|
775
|
+
</summary>
|
|
776
|
+
"""
|
|
777
|
+
GetDllLibXls().AddtionalFormatWrapper_get_VerticalAlignment.argtypes=[c_void_p]
|
|
778
|
+
GetDllLibXls().AddtionalFormatWrapper_get_VerticalAlignment.restype=c_int
|
|
779
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_VerticalAlignment, self.Ptr)
|
|
780
|
+
objwraped = VerticalAlignType(ret)
|
|
781
|
+
return objwraped
|
|
782
|
+
|
|
783
|
+
@VerticalAlignment.setter
|
|
784
|
+
def VerticalAlignment(self, value:'VerticalAlignType'):
|
|
785
|
+
GetDllLibXls().AddtionalFormatWrapper_set_VerticalAlignment.argtypes=[c_void_p, c_int]
|
|
786
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_VerticalAlignment, self.Ptr, value.value)
|
|
787
|
+
|
|
788
|
+
@property
|
|
789
|
+
def WrapText(self)->bool:
|
|
790
|
+
"""
|
|
791
|
+
<summary>
|
|
792
|
+
True if Microsoft Excel wraps the text in the object.
|
|
793
|
+
</summary>
|
|
794
|
+
"""
|
|
795
|
+
GetDllLibXls().AddtionalFormatWrapper_get_WrapText.argtypes=[c_void_p]
|
|
796
|
+
GetDllLibXls().AddtionalFormatWrapper_get_WrapText.restype=c_bool
|
|
797
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_WrapText, self.Ptr)
|
|
798
|
+
return ret
|
|
799
|
+
|
|
800
|
+
@WrapText.setter
|
|
801
|
+
def WrapText(self, value:bool):
|
|
802
|
+
GetDllLibXls().AddtionalFormatWrapper_set_WrapText.argtypes=[c_void_p, c_bool]
|
|
803
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_WrapText, self.Ptr, value)
|
|
804
|
+
|
|
805
|
+
@property
|
|
806
|
+
|
|
807
|
+
def Font(self)->'IFont':
|
|
808
|
+
"""
|
|
809
|
+
|
|
810
|
+
"""
|
|
811
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Font.argtypes=[c_void_p]
|
|
812
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Font.restype=c_void_p
|
|
813
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Font, self.Ptr)
|
|
814
|
+
ret = None if intPtr==None else XlsFont(intPtr)
|
|
815
|
+
return ret
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
@property
|
|
819
|
+
|
|
820
|
+
def Borders(self)->'IBorders':
|
|
821
|
+
"""
|
|
822
|
+
|
|
823
|
+
"""
|
|
824
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Borders.argtypes=[c_void_p]
|
|
825
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Borders.restype=c_void_p
|
|
826
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Borders, self.Ptr)
|
|
827
|
+
ret = None if intPtr==None else XlsBordersCollection(intPtr)
|
|
828
|
+
return ret
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
@property
|
|
832
|
+
def IsFirstSymbolApostrophe(self)->bool:
|
|
833
|
+
"""
|
|
834
|
+
<summary>
|
|
835
|
+
If true then first symbol in cell is apostrophe.
|
|
836
|
+
</summary>
|
|
837
|
+
"""
|
|
838
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IsFirstSymbolApostrophe.argtypes=[c_void_p]
|
|
839
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IsFirstSymbolApostrophe.restype=c_bool
|
|
840
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IsFirstSymbolApostrophe, self.Ptr)
|
|
841
|
+
return ret
|
|
842
|
+
|
|
843
|
+
@IsFirstSymbolApostrophe.setter
|
|
844
|
+
def IsFirstSymbolApostrophe(self, value:bool):
|
|
845
|
+
GetDllLibXls().AddtionalFormatWrapper_set_IsFirstSymbolApostrophe.argtypes=[c_void_p, c_bool]
|
|
846
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_IsFirstSymbolApostrophe, self.Ptr, value)
|
|
847
|
+
|
|
848
|
+
@property
|
|
849
|
+
|
|
850
|
+
def PatternKnownColor(self)->'ExcelColors':
|
|
851
|
+
"""
|
|
852
|
+
<summary>
|
|
853
|
+
Returns or sets the excel color of the interior.
|
|
854
|
+
</summary>
|
|
855
|
+
"""
|
|
856
|
+
GetDllLibXls().AddtionalFormatWrapper_get_PatternKnownColor.argtypes=[c_void_p]
|
|
857
|
+
GetDllLibXls().AddtionalFormatWrapper_get_PatternKnownColor.restype=c_int
|
|
858
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_PatternKnownColor, self.Ptr)
|
|
859
|
+
objwraped = ExcelColors(ret)
|
|
860
|
+
return objwraped
|
|
861
|
+
|
|
862
|
+
@PatternKnownColor.setter
|
|
863
|
+
def PatternKnownColor(self, value:'ExcelColors'):
|
|
864
|
+
GetDllLibXls().AddtionalFormatWrapper_set_PatternKnownColor.argtypes=[c_void_p, c_int]
|
|
865
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_PatternKnownColor, self.Ptr, value.value)
|
|
866
|
+
|
|
867
|
+
@property
|
|
868
|
+
|
|
869
|
+
def PatternColor(self)->'Color':
|
|
870
|
+
"""
|
|
871
|
+
<summary>
|
|
872
|
+
Returns or sets the color of the interior pattern.
|
|
873
|
+
</summary>
|
|
874
|
+
"""
|
|
875
|
+
GetDllLibXls().AddtionalFormatWrapper_get_PatternColor.argtypes=[c_void_p]
|
|
876
|
+
GetDllLibXls().AddtionalFormatWrapper_get_PatternColor.restype=c_void_p
|
|
877
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_PatternColor, self.Ptr)
|
|
878
|
+
ret = None if intPtr==None else Color(intPtr)
|
|
879
|
+
return ret
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
@PatternColor.setter
|
|
883
|
+
def PatternColor(self, value:'Color'):
|
|
884
|
+
GetDllLibXls().AddtionalFormatWrapper_set_PatternColor.argtypes=[c_void_p, c_void_p]
|
|
885
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_PatternColor, self.Ptr, value.Ptr)
|
|
886
|
+
|
|
887
|
+
@property
|
|
888
|
+
|
|
889
|
+
def KnownColor(self)->'ExcelColors':
|
|
890
|
+
"""
|
|
891
|
+
<summary>
|
|
892
|
+
Gets or sets the cell shading excel color.
|
|
893
|
+
</summary>
|
|
894
|
+
"""
|
|
895
|
+
GetDllLibXls().AddtionalFormatWrapper_get_KnownColor.argtypes=[c_void_p]
|
|
896
|
+
GetDllLibXls().AddtionalFormatWrapper_get_KnownColor.restype=c_int
|
|
897
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_KnownColor, self.Ptr)
|
|
898
|
+
objwraped = ExcelColors(ret)
|
|
899
|
+
return objwraped
|
|
900
|
+
|
|
901
|
+
@KnownColor.setter
|
|
902
|
+
def KnownColor(self, value:'ExcelColors'):
|
|
903
|
+
GetDllLibXls().AddtionalFormatWrapper_set_KnownColor.argtypes=[c_void_p, c_int]
|
|
904
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_KnownColor, self.Ptr, value.value)
|
|
905
|
+
|
|
906
|
+
@property
|
|
907
|
+
|
|
908
|
+
def Color(self)->'Color':
|
|
909
|
+
"""
|
|
910
|
+
<summary>
|
|
911
|
+
Gets or sets the cell shading color.
|
|
912
|
+
</summary>
|
|
913
|
+
"""
|
|
914
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Color.argtypes=[c_void_p]
|
|
915
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Color.restype=c_void_p
|
|
916
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Color, self.Ptr)
|
|
917
|
+
ret = None if intPtr==None else Color(intPtr)
|
|
918
|
+
return ret
|
|
919
|
+
|
|
920
|
+
|
|
921
|
+
@Color.setter
|
|
922
|
+
def Color(self, value:'Color'):
|
|
923
|
+
GetDllLibXls().AddtionalFormatWrapper_set_Color.argtypes=[c_void_p, c_void_p]
|
|
924
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_set_Color, self.Ptr, value.Ptr)
|
|
925
|
+
|
|
926
|
+
@property
|
|
927
|
+
|
|
928
|
+
def Interior(self)->'IInterior':
|
|
929
|
+
"""
|
|
930
|
+
|
|
931
|
+
"""
|
|
932
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Interior.argtypes=[c_void_p]
|
|
933
|
+
GetDllLibXls().AddtionalFormatWrapper_get_Interior.restype=c_void_p
|
|
934
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_Interior, self.Ptr)
|
|
935
|
+
ret = None if intPtr==None else ExcelInterior(intPtr)
|
|
936
|
+
return ret
|
|
937
|
+
|
|
938
|
+
|
|
939
|
+
@property
|
|
940
|
+
def IsModified(self)->bool:
|
|
941
|
+
"""
|
|
942
|
+
|
|
943
|
+
"""
|
|
944
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IsModified.argtypes=[c_void_p]
|
|
945
|
+
GetDllLibXls().AddtionalFormatWrapper_get_IsModified.restype=c_bool
|
|
946
|
+
ret = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_get_IsModified, self.Ptr)
|
|
947
|
+
return ret
|
|
948
|
+
|
|
949
|
+
def BeginUpdate(self):
|
|
950
|
+
"""
|
|
951
|
+
|
|
952
|
+
"""
|
|
953
|
+
GetDllLibXls().AddtionalFormatWrapper_BeginUpdate.argtypes=[c_void_p]
|
|
954
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_BeginUpdate, self.Ptr)
|
|
955
|
+
|
|
956
|
+
def EndUpdate(self):
|
|
957
|
+
"""
|
|
958
|
+
|
|
959
|
+
"""
|
|
960
|
+
GetDllLibXls().AddtionalFormatWrapper_EndUpdate.argtypes=[c_void_p]
|
|
961
|
+
CallCFunction(GetDllLibXls().AddtionalFormatWrapper_EndUpdate, self.Ptr)
|
|
962
|
+
|
|
963
|
+
|
|
964
|
+
def Clone(self ,parent:'SpireObject')->'SpireObject':
|
|
965
|
+
"""
|
|
966
|
+
|
|
967
|
+
"""
|
|
968
|
+
intPtrparent:c_void_p = parent.Ptr
|
|
969
|
+
|
|
970
|
+
GetDllLibXls().AddtionalFormatWrapper_Clone.argtypes=[c_void_p ,c_void_p]
|
|
971
|
+
GetDllLibXls().AddtionalFormatWrapper_Clone.restype=c_void_p
|
|
972
|
+
intPtr = CallCFunction(GetDllLibXls().AddtionalFormatWrapper_Clone, self.Ptr, intPtrparent)
|
|
973
|
+
ret = None if intPtr==None else SpireObject(intPtr)
|
|
974
|
+
return ret
|
|
975
|
+
|
|
976
|
+
|