spire-xls 15.5.0__py3-none-win_amd64.whl → 15.11.1__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1043) hide show
  1. spire/xls/AddtionalFormatWrapper.py +116 -132
  2. spire/xls/Average.py +18 -4
  3. spire/xls/CellBaseStyle.py +13 -6
  4. spire/xls/CellBorder.py +25 -20
  5. spire/xls/CellRange.py +315 -277
  6. spire/xls/CellStyle.py +26 -12
  7. spire/xls/CellStyleFlag.py +187 -57
  8. spire/xls/CellStyleObject.py +55 -79
  9. spire/xls/CellValueChangedEventArgs.py +3 -9
  10. spire/xls/ColorScale.py +31 -39
  11. spire/xls/CommentsRange.py +185 -95
  12. spire/xls/CommonWrapper.py +23 -8
  13. spire/xls/ConverterSetting.py +34 -36
  14. spire/xls/DBConnection.py +41 -8
  15. spire/xls/DVAspect.py +8 -2
  16. spire/xls/DataBar.py +29 -28
  17. spire/xls/DocumentProperty.py +87 -39
  18. spire/xls/Excel2016Charttype.py +14 -2
  19. spire/xls/ExcelComment.py +1 -2
  20. spire/xls/ExcelCommentObject.py +212 -122
  21. spire/xls/ExcelFont.py +94 -73
  22. spire/xls/ExcelGradient.py +70 -24
  23. spire/xls/ExcelInterior.py +43 -27
  24. spire/xls/ExportTableOptions.py +38 -9
  25. spire/xls/ExternalConnection.py +85 -20
  26. spire/xls/ExternalLink.py +26 -10
  27. spire/xls/FileFormat.py +32 -4
  28. spire/xls/Font.py +165 -112
  29. spire/xls/FontArrayWrapper.py +135 -36
  30. spire/xls/FontWrapper.py +207 -103
  31. spire/xls/Format3D.py +130 -30
  32. spire/xls/GeomertyAdjustValue.py +22 -10
  33. spire/xls/GetText.py +8 -2
  34. spire/xls/GoalSeek.py +44 -14
  35. spire/xls/GoalSeekResult.py +36 -3
  36. spire/xls/GradientArrayWrapper.py +92 -28
  37. spire/xls/GradientStops.py +75 -25
  38. spire/xls/GradientType.py +10 -2
  39. spire/xls/GroupShape.py +1 -2
  40. spire/xls/HPageBreak.py +2 -2
  41. spire/xls/HTMLOptions.py +7 -19
  42. spire/xls/HyperLink.py +2 -2
  43. spire/xls/LOGFONT.py +78 -30
  44. spire/xls/MsoTextFrame.py +102 -0
  45. spire/xls/OColor.py +62 -29
  46. spire/xls/OdsPageBackground.py +5 -10
  47. spire/xls/PageColRow.py +21 -10
  48. spire/xls/PageSetup.py +2 -3
  49. spire/xls/PaperSizeEntry.py +6 -0
  50. spire/xls/PicStretch.py +47 -14
  51. spire/xls/PicTile.py +35 -10
  52. spire/xls/QueryTableXls.py +19 -6
  53. spire/xls/RTFCommentArray.py +59 -22
  54. spire/xls/RTFStringArray.py +59 -22
  55. spire/xls/RangeRichTextString.py +22 -10
  56. spire/xls/ReferRangeArea.py +33 -18
  57. spire/xls/RichText.py +11 -9
  58. spire/xls/RichTextObject.py +63 -32
  59. spire/xls/RichTextShape.py +90 -33
  60. spire/xls/RichTextString.py +62 -24
  61. spire/xls/RtfTextWriter.py +68 -22
  62. spire/xls/SaveShapeTypeOption.py +19 -37
  63. spire/xls/ShapeGlow.py +35 -15
  64. spire/xls/ShapeReflection.py +55 -18
  65. spire/xls/StyleArrayWrapper.py +169 -78
  66. spire/xls/TextBoxShapeBase.py +63 -30
  67. spire/xls/TextSaveOptions.py +39 -17
  68. spire/xls/TopBottom.py +18 -6
  69. spire/xls/VPageBreak.py +4 -5
  70. spire/xls/Validation.py +12 -6
  71. spire/xls/WebQueryConnection.py +52 -20
  72. spire/xls/Workbook.py +884 -916
  73. spire/xls/Worksheet.py +507 -421
  74. spire/xls/WriteProtection.py +3 -6
  75. spire/xls/XlsAddInFunction.py +36 -22
  76. spire/xls/XlsArcShape.py +157 -41
  77. spire/xls/XlsBitmapShape.py +141 -43
  78. spire/xls/XlsBorder.py +73 -31
  79. spire/xls/XlsBorderArrayWrapper.py +50 -14
  80. spire/xls/XlsButtonShape.py +59 -17
  81. spire/xls/XlsCheckBoxShape.py +72 -18
  82. spire/xls/XlsComboBoxShape.py +53 -16
  83. spire/xls/XlsComment.py +109 -31
  84. spire/xls/XlsDataValidationTable.py +46 -17
  85. spire/xls/XlsDocumentProperty.py +163 -44
  86. spire/xls/XlsEventArgs.py +33 -24
  87. spire/xls/XlsEventHandler.py +10 -4
  88. spire/xls/XlsFill.py +64 -20
  89. spire/xls/XlsFont.py +202 -66
  90. spire/xls/XlsGradient.py +90 -26
  91. spire/xls/XlsGradientStop.py +57 -12
  92. spire/xls/XlsGroupBoxShape.py +36 -10
  93. spire/xls/XlsHPageBreak.py +47 -24
  94. spire/xls/XlsHyperLink.py +111 -42
  95. spire/xls/XlsLabelShape.py +27 -8
  96. spire/xls/XlsLineShape.py +188 -48
  97. spire/xls/XlsListBoxShape.py +63 -14
  98. spire/xls/XlsName.py +779 -331
  99. spire/xls/XlsObject.py +2 -4
  100. spire/xls/XlsOvalShape.py +79 -21
  101. spire/xls/XlsPageSetup.py +71 -32
  102. spire/xls/XlsPageSetupBase.py +29 -58
  103. spire/xls/XlsPrstGeomShape.py +29 -10
  104. spire/xls/XlsRadioButtonShape.py +84 -42
  105. spire/xls/XlsRange.py +907 -1087
  106. spire/xls/XlsRectangleShape.py +70 -23
  107. spire/xls/XlsScrollBarShape.py +78 -18
  108. spire/xls/XlsShape.py +396 -183
  109. spire/xls/XlsShapeFill.py +401 -92
  110. spire/xls/XlsShapeLineFormat.py +201 -44
  111. spire/xls/XlsSpinnerShape.py +57 -14
  112. spire/xls/XlsStyle.py +54 -23
  113. spire/xls/XlsTextBoxShape.py +263 -60
  114. spire/xls/XlsVPageBreak.py +9 -14
  115. spire/xls/XlsValidation.py +325 -72
  116. spire/xls/XlsValidationWrapper.py +217 -49
  117. spire/xls/XlsWorkbook.py +573 -88
  118. spire/xls/XlsWorksheet.py +1312 -1232
  119. spire/xls/XlsWorksheetBase.py +279 -185
  120. spire/xls/__init__.py +531 -529
  121. spire/xls/autofilter/AutoFitterOptions.py +91 -0
  122. spire/xls/autofilter/ColorFilter.py +61 -0
  123. spire/xls/autofilter/CustomFilter.py +207 -0
  124. spire/xls/autofilter/CustomFilterCollection.py +146 -0
  125. spire/xls/autofilter/DateTimeGroupItem.py +196 -0
  126. spire/xls/autofilter/DynamicFilter.py +89 -0
  127. spire/xls/autofilter/FilterColumn.py +289 -0
  128. spire/xls/autofilter/MultipleFilterCollection.py +218 -0
  129. spire/xls/autofilter/Top10Filter.py +109 -0
  130. spire/xls/autofilter/XlsAutoFiltersCollection.py +146 -0
  131. spire/xls/charts/Chart.py +369 -0
  132. spire/xls/charts/ChartArea.py +58 -0
  133. spire/xls/charts/ChartBackgroundMode.py +17 -0
  134. spire/xls/charts/ChartCategoryAxis.py +88 -0
  135. spire/xls/charts/ChartDataLabels.py +40 -0
  136. spire/xls/charts/ChartDataPoint.py +40 -0
  137. spire/xls/charts/ChartFormat.py +68 -0
  138. spire/xls/charts/ChartGridLine.py +26 -0
  139. spire/xls/charts/ChartLegend.py +40 -0
  140. spire/xls/charts/ChartLegendEntriesColl.py +165 -0
  141. spire/xls/charts/ChartLegendEntry.py +26 -0
  142. spire/xls/charts/ChartPlotArea.py +60 -0
  143. spire/xls/charts/ChartSerie.py +147 -0
  144. spire/xls/charts/ChartSerieDataFormat.py +54 -0
  145. spire/xls/charts/ChartSeriesAxis.py +68 -0
  146. spire/xls/charts/ChartShadow.py +288 -0
  147. spire/xls/charts/ChartSheet.py +269 -0
  148. spire/xls/charts/ChartTextArea.py +898 -0
  149. spire/xls/charts/ChartValueAxis.py +90 -0
  150. spire/xls/charts/HistogramAxisFormat.py +32 -0
  151. spire/xls/charts/XlsChart.py +1667 -0
  152. spire/xls/charts/XlsChartAxis.py +596 -0
  153. spire/xls/charts/XlsChartBorder.py +180 -0
  154. spire/xls/charts/XlsChartCategoryAxis.py +640 -0
  155. spire/xls/charts/XlsChartDataLabelArea.py +368 -0
  156. spire/xls/charts/XlsChartDataLabels.py +702 -0
  157. spire/xls/charts/XlsChartDataPoint.py +105 -0
  158. spire/xls/charts/XlsChartDataTable.py +373 -0
  159. spire/xls/charts/XlsChartDropBar.py +295 -0
  160. spire/xls/charts/XlsChartFill.py +659 -0
  161. spire/xls/charts/XlsChartFormat.py +1229 -0
  162. spire/xls/charts/XlsChartFrameFormat.py +613 -0
  163. spire/xls/charts/XlsChartGridLine.py +167 -0
  164. spire/xls/charts/XlsChartInterior.py +229 -0
  165. spire/xls/charts/XlsChartLegend.py +334 -0
  166. spire/xls/charts/XlsChartLegendArea.py +418 -0
  167. spire/xls/charts/XlsChartLegendEntry.py +152 -0
  168. spire/xls/charts/XlsChartSerie.py +607 -0
  169. spire/xls/charts/XlsChartSerieDataFormat.py +1070 -0
  170. spire/xls/charts/XlsChartSeriesAxis.py +306 -0
  171. spire/xls/charts/XlsChartShape.py +1256 -0
  172. spire/xls/charts/XlsChartTitleArea.py +399 -0
  173. spire/xls/charts/XlsChartValueAxis.py +344 -0
  174. spire/xls/charts/XlsChartWallOrFloor.py +349 -0
  175. spire/xls/charts/__init__.py +0 -0
  176. spire/xls/collection/AddInFunctionsCollection.py +31 -0
  177. spire/xls/collection/ArcShapeCollection.py +94 -0
  178. spire/xls/collection/AutoFiltersCollection.py +539 -0
  179. spire/xls/collection/BordersCollection.py +196 -0
  180. spire/xls/collection/BordersCollectionArrayWrapper.py +129 -0
  181. spire/xls/collection/BuiltInDocumentProperties.py +12 -0
  182. spire/xls/collection/ButtonShapeCollection.py +70 -0
  183. spire/xls/collection/ChartDataPointsCollection.py +72 -0
  184. spire/xls/collection/ChartFormatCollection.py +58 -0
  185. spire/xls/collection/ChartSeries.py +187 -0
  186. spire/xls/collection/ChartsCollection.py +119 -0
  187. spire/xls/collection/CollectionBase.py +201 -0
  188. spire/xls/collection/CollectionExtended.py +96 -0
  189. spire/xls/collection/ComboBoxCollection.py +89 -0
  190. spire/xls/collection/CommentsCollection.py +134 -0
  191. spire/xls/collection/DataConnections.py +25 -0
  192. spire/xls/collection/ExternalLinkCollection.py +26 -0
  193. spire/xls/collection/GroupBoxCollection.py +70 -0
  194. spire/xls/collection/GroupShapeCollection.py +45 -0
  195. spire/xls/collection/HPageBreaksCollection.py +116 -0
  196. spire/xls/collection/HyperLinksCollection.py +72 -0
  197. spire/xls/collection/ListObjectCollection.py +48 -0
  198. spire/xls/collection/OvalShapeCollection.py +89 -0
  199. spire/xls/collection/PicturesCollection.py +574 -0
  200. spire/xls/collection/PrstGeomShapeCollection.py +128 -0
  201. spire/xls/collection/QueryTableCollection.py +25 -0
  202. spire/xls/collection/RadioButtonCollection.py +139 -0
  203. spire/xls/collection/RangesCollection.py +556 -0
  204. spire/xls/collection/ShapeCollectionBase.py +87 -0
  205. spire/xls/collection/StylesCollection.py +140 -0
  206. spire/xls/collection/VPageBreaksCollection.py +95 -0
  207. spire/xls/collection/WorksheetsCollection.py +363 -0
  208. spire/xls/collection/XlsAddInFunctionsCollection.py +108 -0
  209. spire/xls/collection/XlsBordersCollection.py +98 -0
  210. spire/xls/collection/XlsBuiltInDocumentProperties.py +611 -0
  211. spire/xls/collection/XlsChartDataPointsCollection.py +119 -0
  212. spire/xls/collection/XlsChartFormatCollection.py +160 -0
  213. spire/xls/collection/XlsChartsCollection.py +91 -0
  214. spire/xls/collection/XlsCommentsCollection.py +116 -0
  215. spire/xls/collection/XlsDataValidationCollection.py +157 -0
  216. spire/xls/collection/XlsFontsCollection.py +52 -0
  217. spire/xls/collection/XlsHPageBreaksCollection.py +87 -0
  218. spire/xls/collection/XlsHyperLinksCollection.py +104 -0
  219. spire/xls/collection/XlsRangesCollection.py +1641 -0
  220. spire/xls/collection/XlsStylesCollection.py +74 -0
  221. spire/xls/collection/XlsVPageBreaksCollection.py +81 -0
  222. spire/xls/collection/XlsWorkbookObjectsCollection.py +95 -0
  223. spire/xls/collection/XlsWorksheetsCollection.py +423 -0
  224. spire/xls/collection/__init__.py +0 -0
  225. spire/xls/collection/pivot_table/PivotConditionalFormatCollection.py +38 -0
  226. spire/xls/collection/pivot_table/PivotTableFields.py +108 -0
  227. spire/xls/collection/pivot_table/XlsPivotCachesCollection.py +124 -0
  228. spire/xls/collection/pivot_table/XlsPivotTablesCollection.py +132 -0
  229. spire/xls/collection/pivot_table/__init__.py +0 -0
  230. spire/xls/conditional_formatting/ColorConditionValue.py +102 -0
  231. spire/xls/conditional_formatting/CondFormatCollectionWrapper.py +153 -0
  232. spire/xls/conditional_formatting/ConditionValue.py +83 -0
  233. spire/xls/conditional_formatting/ConditionValuePosition.py +16 -0
  234. spire/xls/conditional_formatting/ConditionalFormat.py +13 -0
  235. spire/xls/conditional_formatting/ConditionalFormatScope.py +16 -0
  236. spire/xls/conditional_formatting/ConditionalFormatWrapper.py +1271 -0
  237. spire/xls/conditional_formatting/ConditionalFormats.py +65 -0
  238. spire/xls/conditional_formatting/DataBarBorder.py +51 -0
  239. spire/xls/conditional_formatting/NegativeBarFormat.py +90 -0
  240. spire/xls/conditional_formatting/XlsConditionValue.py +134 -0
  241. spire/xls/conditional_formatting/XlsConditionalFormat.py +1163 -0
  242. spire/xls/conditional_formatting/XlsConditionalFormats.py +684 -0
  243. spire/xls/conditional_formatting/__init__.py +0 -0
  244. spire/xls/enums/AlertStyleType.py +17 -0
  245. spire/xls/enums/AutoFormatOptions.py +22 -0
  246. spire/xls/enums/AutoFormatType.py +31 -0
  247. spire/xls/enums/AverageType.py +24 -0
  248. spire/xls/enums/AxisLineIdentifierType.py +18 -0
  249. spire/xls/enums/AxisTextDirectionType.py +17 -0
  250. spire/xls/enums/AxisType.py +17 -0
  251. spire/xls/enums/BaseFormatType.py +16 -0
  252. spire/xls/enums/BordersLineType.py +22 -0
  253. spire/xls/enums/BubbleSizeType.py +16 -0
  254. spire/xls/enums/BuiltInPropertyType.py +49 -0
  255. spire/xls/enums/BuiltInStyles.py +65 -0
  256. spire/xls/enums/CategoryType.py +17 -0
  257. spire/xls/enums/CellDataType.py +22 -0
  258. spire/xls/enums/CellFormatType.py +20 -0
  259. spire/xls/enums/ChartBaseUnitType.py +17 -0
  260. spire/xls/enums/ChartDisplayUnitType.py +25 -0
  261. spire/xls/enums/ChartLinePatternType.py +23 -0
  262. spire/xls/enums/ChartLineWeightType.py +18 -0
  263. spire/xls/enums/ChartMarkerType.py +26 -0
  264. spire/xls/enums/ChartParagraphType.py +17 -0
  265. spire/xls/enums/ChartPieType.py +17 -0
  266. spire/xls/enums/ChartPlotEmptyType.py +17 -0
  267. spire/xls/enums/CheckState.py +17 -0
  268. spire/xls/enums/ColorType.py +17 -0
  269. spire/xls/enums/CommentHAlignType.py +20 -0
  270. spire/xls/enums/CommentVAlignType.py +19 -0
  271. spire/xls/enums/ComparisonOperatorType.py +23 -0
  272. spire/xls/enums/ConditionalFormatType.py +32 -0
  273. spire/xls/enums/DataLabelPositionType.py +25 -0
  274. spire/xls/enums/DataSourceType.py +18 -0
  275. spire/xls/enums/DropLineStyleType.py +17 -0
  276. spire/xls/enums/ErrorBarIncludeType.py +18 -0
  277. spire/xls/enums/ErrorBarType.py +19 -0
  278. spire/xls/enums/ExcelCalculationMode.py +17 -0
  279. spire/xls/enums/ExcelChartType.py +95 -0
  280. spire/xls/enums/ExcelColors.py +120 -0
  281. spire/xls/enums/ExcelComboType.py +21 -0
  282. spire/xls/enums/ExcelHorizontalAlignment.py +20 -0
  283. spire/xls/enums/ExcelPatternType.py +51 -0
  284. spire/xls/enums/ExcelQuartileCalculation.py +16 -0
  285. spire/xls/enums/ExcelShapeType.py +40 -0
  286. spire/xls/enums/ExcelSheetType.py +19 -0
  287. spire/xls/enums/ExcelTreeMapLabelOption.py +17 -0
  288. spire/xls/enums/ExcelVersion.py +23 -0
  289. spire/xls/enums/ExcelVerticalAlignment.py +20 -0
  290. spire/xls/enums/ExpandCollapseFlags.py +17 -0
  291. spire/xls/enums/FilterConditionType.py +20 -0
  292. spire/xls/enums/FilterDataType.py +21 -0
  293. spire/xls/enums/FontUnderlineType.py +19 -0
  294. spire/xls/enums/FontVertialAlignmentType.py +17 -0
  295. spire/xls/enums/GradientColorType.py +17 -0
  296. spire/xls/enums/GradientPatternType.py +63 -0
  297. spire/xls/enums/GradientPresetType.py +38 -0
  298. spire/xls/enums/GradientStyleType.py +20 -0
  299. spire/xls/enums/GradientTextureType.py +39 -0
  300. spire/xls/enums/GradientVariantsType.py +18 -0
  301. spire/xls/enums/HorizontalAlignType.py +22 -0
  302. spire/xls/enums/HyperLinkType.py +19 -0
  303. spire/xls/enums/IgnoreErrorType.py +23 -0
  304. spire/xls/enums/ImageFormatType.py +17 -0
  305. spire/xls/enums/ImageType.py +16 -0
  306. spire/xls/enums/LegendPositionType.py +20 -0
  307. spire/xls/enums/LegendSpacingType.py +17 -0
  308. spire/xls/enums/LineStyleType.py +28 -0
  309. spire/xls/enums/OleObjectType.py +50 -0
  310. spire/xls/enums/OrderBy.py +18 -0
  311. spire/xls/enums/OrderType.py +16 -0
  312. spire/xls/enums/PageBreakExtentType.py +16 -0
  313. spire/xls/enums/PageBreakType.py +17 -0
  314. spire/xls/enums/PageOrientationType.py +16 -0
  315. spire/xls/enums/PagesOrderType.py +16 -0
  316. spire/xls/enums/PaperSizeType.py +134 -0
  317. spire/xls/enums/PivotGroupByTypes.py +22 -0
  318. spire/xls/enums/PrintCommentType.py +17 -0
  319. spire/xls/enums/PrintErrorsType.py +18 -0
  320. spire/xls/enums/ReadingOrderType.py +17 -0
  321. spire/xls/enums/RectangleStyleType.py +16 -0
  322. spire/xls/enums/ResizeBehaveType.py +17 -0
  323. spire/xls/enums/ShapeArrowLengthType.py +17 -0
  324. spire/xls/enums/ShapeArrowStyleType.py +20 -0
  325. spire/xls/enums/ShapeArrowWidthType.py +17 -0
  326. spire/xls/enums/ShapeDashLineStyleType.py +22 -0
  327. spire/xls/enums/ShapeFillType.py +21 -0
  328. spire/xls/enums/ShapeLayerChangeType.py +18 -0
  329. spire/xls/enums/ShapeLineStyleType.py +19 -0
  330. spire/xls/enums/SheetProtectionType.py +32 -0
  331. spire/xls/enums/SortComparsionType.py +18 -0
  332. spire/xls/enums/SortOrientationType.py +16 -0
  333. spire/xls/enums/SortedWayType.py +17 -0
  334. spire/xls/enums/SparklineType.py +17 -0
  335. spire/xls/enums/SplitType.py +18 -0
  336. spire/xls/enums/TextDirection.py +19 -0
  337. spire/xls/enums/TextRotationType.py +18 -0
  338. spire/xls/enums/ThemeColorType.py +26 -0
  339. spire/xls/enums/TickLabelPositionType.py +18 -0
  340. spire/xls/enums/TickMarkType.py +18 -0
  341. spire/xls/enums/TopBottomType.py +18 -0
  342. spire/xls/enums/TopFormatType.py +17 -0
  343. spire/xls/enums/TrendLineType.py +20 -0
  344. spire/xls/enums/UnknownVariableAction.py +17 -0
  345. spire/xls/enums/ValidationComparisonOperator.py +22 -0
  346. spire/xls/enums/VariableTypeAction.py +17 -0
  347. spire/xls/enums/VerticalAlignType.py +19 -0
  348. spire/xls/enums/ViewMode.py +17 -0
  349. spire/xls/enums/WorksheetVisibility.py +17 -0
  350. spire/xls/enums/XLSXBorderJoinType.py +18 -0
  351. spire/xls/enums/XLSXChartMaterialType.py +31 -0
  352. spire/xls/enums/XLSXChartPrespectiveType.py +20 -0
  353. spire/xls/enums/XLSXChartShadowInnerType.py +24 -0
  354. spire/xls/enums/XLSXChartShadowOuterType.py +24 -0
  355. spire/xls/enums/__init__.py +1 -0
  356. spire/xls/interfaces/IArcShape.py +285 -0
  357. spire/xls/interfaces/IChart.py +1597 -0
  358. spire/xls/interfaces/IChartAxis.py +786 -0
  359. spire/xls/interfaces/IChartBorder.py +203 -0
  360. spire/xls/interfaces/IChartCategoryAxis.py +522 -0
  361. spire/xls/interfaces/IChartDataLabels.py +419 -0
  362. spire/xls/interfaces/IChartDataPoint.py +114 -0
  363. spire/xls/interfaces/IChartDataTable.py +184 -0
  364. spire/xls/interfaces/IChartErrorBars.py +340 -0
  365. spire/xls/interfaces/IChartFillBorder.py +268 -0
  366. spire/xls/interfaces/IChartFormat.py +521 -0
  367. spire/xls/interfaces/IChartFrameFormat.py +85 -0
  368. spire/xls/interfaces/IChartGridLine.py +100 -0
  369. spire/xls/interfaces/IChartInterior.py +259 -0
  370. spire/xls/interfaces/IChartLegend.py +453 -0
  371. spire/xls/interfaces/IChartLegendEntry.py +167 -0
  372. spire/xls/interfaces/IChartPageSetup.py +51 -0
  373. spire/xls/interfaces/IChartSerie.py +727 -0
  374. spire/xls/interfaces/IChartSerieDataFormat.py +519 -0
  375. spire/xls/interfaces/IChartSeriesAxis.py +118 -0
  376. spire/xls/interfaces/IChartShape.py +88 -0
  377. spire/xls/interfaces/IChartTextArea.py +181 -0
  378. spire/xls/interfaces/IChartTrendLine.py +502 -0
  379. spire/xls/interfaces/IChartValueAxis.py +586 -0
  380. spire/xls/interfaces/IChartWallOrFloor.py +40 -0
  381. spire/xls/interfaces/ICheckBox.py +120 -0
  382. spire/xls/interfaces/ICloneParent.py +29 -0
  383. spire/xls/interfaces/IColorConditionValue.py +44 -0
  384. spire/xls/interfaces/IColorScale.py +39 -0
  385. spire/xls/interfaces/ICombinedRange.py +109 -0
  386. spire/xls/interfaces/IComboBoxShape.py +120 -0
  387. spire/xls/interfaces/IComment.py +110 -0
  388. spire/xls/interfaces/ICommentShape.py +20 -0
  389. spire/xls/interfaces/IConditionValue.py +83 -0
  390. spire/xls/interfaces/IConditionalFormat.py +757 -0
  391. spire/xls/interfaces/IConditionalFormats.py +66 -0
  392. spire/xls/interfaces/ICustomDocumentProperties.py +168 -0
  393. spire/xls/interfaces/IDataBar.py +127 -0
  394. spire/xls/interfaces/IDataValidation.py +506 -0
  395. spire/xls/interfaces/IDataValidationTable.py +84 -0
  396. spire/xls/interfaces/IDigitalSignature.py +111 -0
  397. spire/xls/interfaces/IDigitalSignatures.py +33 -0
  398. spire/xls/interfaces/IDocumentProperty.py +276 -0
  399. spire/xls/interfaces/IErrorIndicator.py +38 -0
  400. spire/xls/interfaces/IExtendIndex.py +26 -0
  401. spire/xls/interfaces/IExtendedFormat.py +631 -0
  402. spire/xls/interfaces/IFont.py +313 -0
  403. spire/xls/interfaces/IFormat3D.py +307 -0
  404. spire/xls/interfaces/IGeomPath.py +27 -0
  405. spire/xls/interfaces/IGeomPathInfo.py +141 -0
  406. spire/xls/interfaces/IGeomPathShape.py +40 -0
  407. spire/xls/interfaces/IGlow.py +104 -0
  408. spire/xls/interfaces/IGradient.py +203 -0
  409. spire/xls/interfaces/IGroupBox.py +82 -0
  410. spire/xls/interfaces/IHPageBreak.py +26 -0
  411. spire/xls/interfaces/IHyperLink.py +137 -0
  412. spire/xls/interfaces/IIconSet.py +115 -0
  413. spire/xls/interfaces/IInterior.py +137 -0
  414. spire/xls/interfaces/IInternalAddtionalFormat.py +277 -0
  415. spire/xls/interfaces/IInternalFont.py +38 -0
  416. spire/xls/interfaces/ILabelShape.py +60 -0
  417. spire/xls/interfaces/ILineShape.py +334 -0
  418. spire/xls/interfaces/IListObject.py +443 -0
  419. spire/xls/interfaces/IListObjectColumn.py +196 -0
  420. spire/xls/interfaces/IMarkersDesigner.py +133 -0
  421. spire/xls/interfaces/IMigrantRange.py +28 -0
  422. spire/xls/interfaces/INamedObject.py +27 -0
  423. spire/xls/interfaces/INamedRange.py +246 -0
  424. spire/xls/interfaces/INumberFormat.py +90 -0
  425. spire/xls/interfaces/IOleObject.py +225 -0
  426. spire/xls/interfaces/IOptimizedUpdate.py +35 -0
  427. spire/xls/interfaces/IOvalShape.py +201 -0
  428. spire/xls/interfaces/IPageSetup.py +260 -0
  429. spire/xls/interfaces/IPageSetupBase.py +849 -0
  430. spire/xls/interfaces/IPictureShape.py +118 -0
  431. spire/xls/interfaces/IPropertyData.py +100 -0
  432. spire/xls/interfaces/IPrstGeomShape.py +103 -0
  433. spire/xls/interfaces/IRadioButton.py +159 -0
  434. spire/xls/interfaces/IRectangleShape.py +90 -0
  435. spire/xls/interfaces/IReflectionEffect.py +217 -0
  436. spire/xls/interfaces/IScrollBarShape.py +139 -0
  437. spire/xls/interfaces/IShadow.py +385 -0
  438. spire/xls/interfaces/IShape.py +620 -0
  439. spire/xls/interfaces/IShapeFill.py +767 -0
  440. spire/xls/interfaces/IShapeLineFormat.py +488 -0
  441. spire/xls/interfaces/ISortColumn.py +138 -0
  442. spire/xls/interfaces/ISortColumns.py +106 -0
  443. spire/xls/interfaces/ISortedRule.py +154 -0
  444. spire/xls/interfaces/ISpinnerShape.py +124 -0
  445. spire/xls/interfaces/IStyle.py +60 -0
  446. spire/xls/interfaces/ITabSheet.py +364 -0
  447. spire/xls/interfaces/ITextBox.py +140 -0
  448. spire/xls/interfaces/ITextBoxLinkShape.py +48 -0
  449. spire/xls/interfaces/ITextBoxShape.py +27 -0
  450. spire/xls/interfaces/ITextFrame.py +146 -0
  451. spire/xls/interfaces/IVPageBreak.py +26 -0
  452. spire/xls/interfaces/IWorkbook.py +1736 -0
  453. spire/xls/interfaces/IWorksheet.py +2638 -0
  454. spire/xls/interfaces/IXLSRange.py +2241 -0
  455. spire/xls/interfaces/IXLSRanges.py +40 -0
  456. spire/xls/interfaces/IconSet.py +125 -0
  457. spire/xls/interfaces/ImageLocationTypes.py +17 -0
  458. spire/xls/interfaces/ImportObjectOptions.py +143 -0
  459. spire/xls/interfaces/InsertMoveOption.py +17 -0
  460. spire/xls/interfaces/InteriorArrayWrapper.py +181 -0
  461. spire/xls/interfaces/__init__.py +0 -0
  462. spire/xls/interfaces/collections/IDataValidationCollection.py +128 -0
  463. spire/xls/interfaces/collections/IHPageBreaks.py +37 -0
  464. spire/xls/interfaces/collections/IListObjects.py +34 -0
  465. spire/xls/interfaces/collections/IOleObjects.py +44 -0
  466. spire/xls/interfaces/collections/IPrstGeomShapes.py +87 -0
  467. spire/xls/interfaces/collections/IShapes.py +273 -0
  468. spire/xls/interfaces/collections/ITextBoxes.py +67 -0
  469. spire/xls/interfaces/collections/IVPageBreaks.py +37 -0
  470. spire/xls/interfaces/collections/__init__.py +0 -0
  471. spire/xls/interfaces/pivot_table/IPivotCache.py +50 -0
  472. spire/xls/interfaces/pivot_table/IPivotCaches.py +52 -0
  473. spire/xls/interfaces/pivot_table/IPivotCalculatedFields.py +69 -0
  474. spire/xls/interfaces/pivot_table/IPivotField.py +372 -0
  475. spire/xls/interfaces/pivot_table/IPivotTable.py +509 -0
  476. spire/xls/interfaces/pivot_table/IPivotTableOptions.py +507 -0
  477. spire/xls/interfaces/pivot_table/__init__.py +0 -0
  478. spire/xls/interfaces/sorting/__init__.py +0 -0
  479. spire/xls/lib/Spire.Xls.Base.dll +0 -0
  480. spire/xls/lib/_init_.py +0 -0
  481. spire/xls/license/LicenseProvider.py +107 -0
  482. spire/xls/license/__init__.py +0 -0
  483. spire/xls/pivot_tables/AutoSortScope.py +29 -0
  484. spire/xls/pivot_tables/PivotConditionalFormat.py +71 -0
  485. spire/xls/pivot_tables/PivotDataField.py +163 -0
  486. spire/xls/pivot_tables/PivotItem.py +228 -0
  487. spire/xls/pivot_tables/PivotReportFilter.py +199 -0
  488. spire/xls/pivot_tables/PivotReportFilters.py +95 -0
  489. spire/xls/pivot_tables/PivotStyle.py +105 -0
  490. spire/xls/pivot_tables/PivotTableStyle.py +83 -0
  491. spire/xls/pivot_tables/XlsPivotCache.py +506 -0
  492. spire/xls/pivot_tables/XlsPivotCacheField.py +276 -0
  493. spire/xls/pivot_tables/XlsPivotField.py +975 -0
  494. spire/xls/pivot_tables/XlsPivotTable.py +1189 -0
  495. spire/xls/pivot_tables/__init__.py +0 -0
  496. spire/xls/security/__init__.py +0 -0
  497. spire/xls/sorting/DataSorter.py +152 -0
  498. spire/xls/sorting/SortColumn.py +115 -0
  499. spire/xls/sorting/SortColumns.py +194 -0
  500. spire/xls/sorting/__init__.py +0 -0
  501. spire/xls/sparkline/ISparklines.py +72 -0
  502. spire/xls/sparkline/Sparkline.py +89 -0
  503. spire/xls/sparkline/SparklineCollection.py +107 -0
  504. spire/xls/sparkline/SparklineGroup.py +592 -0
  505. spire/xls/sparkline/SparklineGroupCollection.py +67 -0
  506. spire/xls/sparkline/__init__.py +0 -0
  507. spire/xls/template_markers/MarkerDesigner.py +171 -0
  508. spire/xls/template_markers/__init__.py +0 -0
  509. spire_xls-15.11.1.dist-info/METADATA +197 -0
  510. spire_xls-15.11.1.dist-info/RECORD +721 -0
  511. spire/xls/AddInFunctionsCollection.py +0 -29
  512. spire/xls/AlertStyleType.py +0 -18
  513. spire/xls/ArcShapeCollection.py +0 -70
  514. spire/xls/AutoFiltersCollection.py +0 -527
  515. spire/xls/AutoFitterOptions.py +0 -66
  516. spire/xls/AutoFormatOptions.py +0 -23
  517. spire/xls/AutoFormatType.py +0 -32
  518. spire/xls/AutoSortScope.py +0 -25
  519. spire/xls/AverageType.py +0 -25
  520. spire/xls/AxisLineIdentifierType.py +0 -19
  521. spire/xls/AxisTextDirectionType.py +0 -18
  522. spire/xls/AxisType.py +0 -18
  523. spire/xls/BaseFormatType.py +0 -17
  524. spire/xls/BordersCollection.py +0 -158
  525. spire/xls/BordersCollectionArrayWrapper.py +0 -95
  526. spire/xls/BordersLineType.py +0 -23
  527. spire/xls/BubbleSizeType.py +0 -17
  528. spire/xls/BuiltInDocumentProperties.py +0 -12
  529. spire/xls/BuiltInPropertyType.py +0 -50
  530. spire/xls/BuiltInStyles.py +0 -66
  531. spire/xls/ButtonShapeCollection.py +0 -70
  532. spire/xls/CategoryType.py +0 -18
  533. spire/xls/CellDataType.py +0 -23
  534. spire/xls/CellFormatType.py +0 -21
  535. spire/xls/Chart.py +0 -404
  536. spire/xls/ChartArea.py +0 -61
  537. spire/xls/ChartBackgroundMode.py +0 -18
  538. spire/xls/ChartBaseUnitType.py +0 -18
  539. spire/xls/ChartCategoryAxis.py +0 -93
  540. spire/xls/ChartDataLabels.py +0 -42
  541. spire/xls/ChartDataPoint.py +0 -42
  542. spire/xls/ChartDataPointsCollection.py +0 -75
  543. spire/xls/ChartDisplayUnitType.py +0 -26
  544. spire/xls/ChartFormat.py +0 -72
  545. spire/xls/ChartFormatCollection.py +0 -59
  546. spire/xls/ChartGridLine.py +0 -27
  547. spire/xls/ChartLegend.py +0 -42
  548. spire/xls/ChartLegendEntriesColl.py +0 -128
  549. spire/xls/ChartLegendEntry.py +0 -27
  550. spire/xls/ChartLinePatternType.py +0 -24
  551. spire/xls/ChartLineWeightType.py +0 -19
  552. spire/xls/ChartMarkerType.py +0 -27
  553. spire/xls/ChartParagraphType.py +0 -18
  554. spire/xls/ChartPieType.py +0 -18
  555. spire/xls/ChartPlotArea.py +0 -53
  556. spire/xls/ChartPlotEmptyType.py +0 -18
  557. spire/xls/ChartSerie.py +0 -142
  558. spire/xls/ChartSerieDataFormat.py +0 -56
  559. spire/xls/ChartSeries.py +0 -154
  560. spire/xls/ChartSeriesAxis.py +0 -72
  561. spire/xls/ChartShadow.py +0 -235
  562. spire/xls/ChartSheet.py +0 -285
  563. spire/xls/ChartTextArea.py +0 -782
  564. spire/xls/ChartValueAxis.py +0 -92
  565. spire/xls/ChartsCollection.py +0 -113
  566. spire/xls/CheckState.py +0 -18
  567. spire/xls/CollectionBase.py +0 -184
  568. spire/xls/CollectionExtended.py +0 -92
  569. spire/xls/ColorConditionValue.py +0 -91
  570. spire/xls/ColorFilter.py +0 -45
  571. spire/xls/ColorType.py +0 -18
  572. spire/xls/ComboBoxCollection.py +0 -70
  573. spire/xls/CommentHAlignType.py +0 -21
  574. spire/xls/CommentVAlignType.py +0 -20
  575. spire/xls/CommentsCollection.py +0 -109
  576. spire/xls/ComparisonOperatorType.py +0 -24
  577. spire/xls/CondFormatCollectionWrapper.py +0 -125
  578. spire/xls/ConditionValue.py +0 -82
  579. spire/xls/ConditionValuePosition.py +0 -16
  580. spire/xls/ConditionalFormat.py +0 -14
  581. spire/xls/ConditionalFormatScope.py +0 -16
  582. spire/xls/ConditionalFormatType.py +0 -33
  583. spire/xls/ConditionalFormatWrapper.py +0 -986
  584. spire/xls/ConditionalFormats.py +0 -55
  585. spire/xls/CustomFilter.py +0 -147
  586. spire/xls/CustomFilterCollection.py +0 -113
  587. spire/xls/DataBarBorder.py +0 -47
  588. spire/xls/DataConnections.py +0 -25
  589. spire/xls/DataLabelPositionType.py +0 -26
  590. spire/xls/DataSorter.py +0 -154
  591. spire/xls/DataSourceType.py +0 -19
  592. spire/xls/DateTimeGroupItem.py +0 -132
  593. spire/xls/DropLineStyleType.py +0 -18
  594. spire/xls/DynamicFilter.py +0 -71
  595. spire/xls/ErrorBarIncludeType.py +0 -19
  596. spire/xls/ErrorBarType.py +0 -20
  597. spire/xls/ExcelCalculationMode.py +0 -18
  598. spire/xls/ExcelChartType.py +0 -96
  599. spire/xls/ExcelColors.py +0 -121
  600. spire/xls/ExcelComboType.py +0 -22
  601. spire/xls/ExcelHorizontalAlignment.py +0 -21
  602. spire/xls/ExcelPatternType.py +0 -52
  603. spire/xls/ExcelQuartileCalculation.py +0 -17
  604. spire/xls/ExcelShapeType.py +0 -41
  605. spire/xls/ExcelSheetType.py +0 -20
  606. spire/xls/ExcelTreeMapLabelOption.py +0 -18
  607. spire/xls/ExcelVersion.py +0 -24
  608. spire/xls/ExcelVerticalAlignment.py +0 -21
  609. spire/xls/ExpandCollapseFlags.py +0 -18
  610. spire/xls/ExternalLinkCollection.py +0 -25
  611. spire/xls/FilterColumn.py +0 -258
  612. spire/xls/FilterConditionType.py +0 -21
  613. spire/xls/FilterDataType.py +0 -22
  614. spire/xls/FontUnderlineType.py +0 -20
  615. spire/xls/FontVertialAlignmentType.py +0 -20
  616. spire/xls/GradientColorType.py +0 -18
  617. spire/xls/GradientPatternType.py +0 -64
  618. spire/xls/GradientPresetType.py +0 -39
  619. spire/xls/GradientStyleType.py +0 -21
  620. spire/xls/GradientTextureType.py +0 -40
  621. spire/xls/GradientVariantsType.py +0 -19
  622. spire/xls/GroupBoxCollection.py +0 -70
  623. spire/xls/GroupShapeCollection.py +0 -46
  624. spire/xls/HPageBreaksCollection.py +0 -108
  625. spire/xls/HistogramAxisFormat.py +0 -30
  626. spire/xls/HorizontalAlignType.py +0 -23
  627. spire/xls/HyperLinkType.py +0 -20
  628. spire/xls/HyperLinksCollection.py +0 -72
  629. spire/xls/IArcShape.py +0 -259
  630. spire/xls/IChart.py +0 -1368
  631. spire/xls/IChartAxis.py +0 -722
  632. spire/xls/IChartBorder.py +0 -220
  633. spire/xls/IChartCategoryAxis.py +0 -410
  634. spire/xls/IChartDataLabels.py +0 -457
  635. spire/xls/IChartDataPoint.py +0 -131
  636. spire/xls/IChartDataTable.py +0 -197
  637. spire/xls/IChartErrorBars.py +0 -373
  638. spire/xls/IChartFillBorder.py +0 -303
  639. spire/xls/IChartFormat.py +0 -571
  640. spire/xls/IChartFrameFormat.py +0 -93
  641. spire/xls/IChartGridLine.py +0 -107
  642. spire/xls/IChartInterior.py +0 -278
  643. spire/xls/IChartLegend.py +0 -499
  644. spire/xls/IChartLegendEntry.py +0 -178
  645. spire/xls/IChartPageSetup.py +0 -56
  646. spire/xls/IChartSerie.py +0 -779
  647. spire/xls/IChartSerieDataFormat.py +0 -566
  648. spire/xls/IChartSeriesAxis.py +0 -128
  649. spire/xls/IChartShape.py +0 -92
  650. spire/xls/IChartTextArea.py +0 -197
  651. spire/xls/IChartTrendLine.py +0 -548
  652. spire/xls/IChartValueAxis.py +0 -518
  653. spire/xls/IChartWallOrFloor.py +0 -32
  654. spire/xls/ICheckBox.py +0 -96
  655. spire/xls/ICloneParent.py +0 -28
  656. spire/xls/IColorConditionValue.py +0 -31
  657. spire/xls/IColorScale.py +0 -32
  658. spire/xls/ICombinedRange.py +0 -87
  659. spire/xls/IComboBoxShape.py +0 -95
  660. spire/xls/IComment.py +0 -85
  661. spire/xls/ICommentShape.py +0 -12
  662. spire/xls/IConditionValue.py +0 -68
  663. spire/xls/IConditionalFormat.py +0 -606
  664. spire/xls/IConditionalFormats.py +0 -48
  665. spire/xls/ICustomDocumentProperties.py +0 -128
  666. spire/xls/IDataBar.py +0 -105
  667. spire/xls/IDataValidation.py +0 -421
  668. spire/xls/IDataValidationCollection.py +0 -132
  669. spire/xls/IDataValidationTable.py +0 -68
  670. spire/xls/IDigitalSignature.py +0 -99
  671. spire/xls/IDigitalSignatures.py +0 -29
  672. spire/xls/IDocumentProperty.py +0 -226
  673. spire/xls/IErrorIndicator.py +0 -31
  674. spire/xls/IExtendIndex.py +0 -21
  675. spire/xls/IExtendedFormat.py +0 -530
  676. spire/xls/IFont.py +0 -271
  677. spire/xls/IFormat3D.py +0 -252
  678. spire/xls/IGeomPath.py +0 -23
  679. spire/xls/IGeomPathInfo.py +0 -112
  680. spire/xls/IGeomPathShape.py +0 -30
  681. spire/xls/IGlow.py +0 -85
  682. spire/xls/IGradient.py +0 -174
  683. spire/xls/IGroupBox.py +0 -67
  684. spire/xls/IHPageBreak.py +0 -22
  685. spire/xls/IHPageBreaks.py +0 -31
  686. spire/xls/IHyperLink.py +0 -118
  687. spire/xls/IIconSet.py +0 -96
  688. spire/xls/IInterior.py +0 -117
  689. spire/xls/IInternalAddtionalFormat.py +0 -238
  690. spire/xls/IInternalFont.py +0 -31
  691. spire/xls/ILabelShape.py +0 -49
  692. spire/xls/ILineShape.py +0 -305
  693. spire/xls/IListObject.py +0 -493
  694. spire/xls/IListObjectColumn.py +0 -222
  695. spire/xls/IListObjects.py +0 -31
  696. spire/xls/IMarkersDesigner.py +0 -113
  697. spire/xls/IMigrantRange.py +0 -21
  698. spire/xls/INamedObject.py +0 -22
  699. spire/xls/INamedRange.py +0 -162
  700. spire/xls/INumberFormat.py +0 -77
  701. spire/xls/IOleObject.py +0 -176
  702. spire/xls/IOleObjects.py +0 -32
  703. spire/xls/IOptimizedUpdate.py +0 -28
  704. spire/xls/IOvalShape.py +0 -154
  705. spire/xls/IPageSetup.py +0 -195
  706. spire/xls/IPageSetupBase.py +0 -642
  707. spire/xls/IPictureShape.py +0 -99
  708. spire/xls/IPivotCache.py +0 -41
  709. spire/xls/IPivotCaches.py +0 -39
  710. spire/xls/IPivotCalculatedFields.py +0 -50
  711. spire/xls/IPivotField.py +0 -291
  712. spire/xls/IPivotTable.py +0 -393
  713. spire/xls/IPivotTableOptions.py +0 -428
  714. spire/xls/IPropertyData.py +0 -70
  715. spire/xls/IPrstGeomShape.py +0 -71
  716. spire/xls/IPrstGeomShapes.py +0 -81
  717. spire/xls/IRadioButton.py +0 -105
  718. spire/xls/IRectangleShape.py +0 -60
  719. spire/xls/IReflectionEffect.py +0 -138
  720. spire/xls/IScrollBarShape.py +0 -140
  721. spire/xls/IShadow.py +0 -244
  722. spire/xls/IShape.py +0 -409
  723. spire/xls/IShapeFill.py +0 -522
  724. spire/xls/IShapeLineFormat.py +0 -331
  725. spire/xls/IShapes.py +0 -270
  726. spire/xls/ISortColumn.py +0 -96
  727. spire/xls/ISortColumns.py +0 -70
  728. spire/xls/ISortedRule.py +0 -112
  729. spire/xls/ISparklines.py +0 -72
  730. spire/xls/ISpinnerShape.py +0 -102
  731. spire/xls/IStyle.py +0 -50
  732. spire/xls/ITabSheet.py +0 -302
  733. spire/xls/ITextBox.py +0 -116
  734. spire/xls/ITextBoxLinkShape.py +0 -40
  735. spire/xls/ITextBoxShape.py +0 -22
  736. spire/xls/ITextBoxes.py +0 -61
  737. spire/xls/ITextFrame.py +0 -120
  738. spire/xls/IVPageBreak.py +0 -22
  739. spire/xls/IVPageBreaks.py +0 -31
  740. spire/xls/IWorkbook.py +0 -1806
  741. spire/xls/IWorksheet.py +0 -2694
  742. spire/xls/IXLSRange.py +0 -2479
  743. spire/xls/IXLSRanges.py +0 -35
  744. spire/xls/IconSet.py +0 -103
  745. spire/xls/IgnoreErrorType.py +0 -24
  746. spire/xls/ImageFormatType.py +0 -18
  747. spire/xls/ImageLocationTypes.py +0 -15
  748. spire/xls/ImageType.py +0 -17
  749. spire/xls/ImportObjectOptions.py +0 -89
  750. spire/xls/InsertMoveOption.py +0 -15
  751. spire/xls/InteriorArrayWrapper.py +0 -126
  752. spire/xls/LegendPositionType.py +0 -21
  753. spire/xls/LegendSpacingType.py +0 -18
  754. spire/xls/LineStyleType.py +0 -29
  755. spire/xls/ListObjectCollection.py +0 -45
  756. spire/xls/MarkerDesigner.py +0 -172
  757. spire/xls/MultipleFilterCollection.py +0 -166
  758. spire/xls/NegativeBarFormat.py +0 -82
  759. spire/xls/OleObjectType.py +0 -51
  760. spire/xls/OrderBy.py +0 -19
  761. spire/xls/OrderType.py +0 -17
  762. spire/xls/OvalShapeCollection.py +0 -70
  763. spire/xls/PageBreakExtentType.py +0 -17
  764. spire/xls/PageBreakType.py +0 -18
  765. spire/xls/PageOrientationType.py +0 -17
  766. spire/xls/PagesOrderType.py +0 -17
  767. spire/xls/PaperSizeType.py +0 -135
  768. spire/xls/PicturesCollection.py +0 -532
  769. spire/xls/PivotConditionalFormat.py +0 -54
  770. spire/xls/PivotConditionalFormatCollection.py +0 -38
  771. spire/xls/PivotDataField.py +0 -118
  772. spire/xls/PivotGroupByTypes.py +0 -23
  773. spire/xls/PivotItem.py +0 -161
  774. spire/xls/PivotReportFilter.py +0 -92
  775. spire/xls/PivotReportFilters.py +0 -63
  776. spire/xls/PivotStyle.py +0 -79
  777. spire/xls/PivotTableFields.py +0 -85
  778. spire/xls/PivotTableStyle.py +0 -63
  779. spire/xls/PrintCommentType.py +0 -18
  780. spire/xls/PrintErrorsType.py +0 -19
  781. spire/xls/PrstGeomShapeCollection.py +0 -126
  782. spire/xls/QueryTableCollection.py +0 -25
  783. spire/xls/RadioButtonCollection.py +0 -137
  784. spire/xls/RangesCollection.py +0 -537
  785. spire/xls/ReadingOrderType.py +0 -18
  786. spire/xls/RectangleStyleType.py +0 -17
  787. spire/xls/ResizeBehaveType.py +0 -18
  788. spire/xls/ShapeArrowLengthType.py +0 -18
  789. spire/xls/ShapeArrowStyleType.py +0 -21
  790. spire/xls/ShapeArrowWidthType.py +0 -18
  791. spire/xls/ShapeCollectionBase.py +0 -87
  792. spire/xls/ShapeDashLineStyleType.py +0 -23
  793. spire/xls/ShapeFillType.py +0 -22
  794. spire/xls/ShapeLayerChangeType.py +0 -19
  795. spire/xls/ShapeLineStyleType.py +0 -20
  796. spire/xls/SheetProtectionType.py +0 -33
  797. spire/xls/SortColumn.py +0 -120
  798. spire/xls/SortColumns.py +0 -185
  799. spire/xls/SortComparsionType.py +0 -19
  800. spire/xls/SortOrientationType.py +0 -17
  801. spire/xls/SortedWayType.py +0 -18
  802. spire/xls/Sparkline.py +0 -70
  803. spire/xls/SparklineCollection.py +0 -112
  804. spire/xls/SparklineGroup.py +0 -523
  805. spire/xls/SparklineGroupCollection.py +0 -71
  806. spire/xls/SparklineType.py +0 -18
  807. spire/xls/SplitType.py +0 -19
  808. spire/xls/StylesCollection.py +0 -141
  809. spire/xls/TextDirection.py +0 -20
  810. spire/xls/TextRotationType.py +0 -19
  811. spire/xls/ThemeColorType.py +0 -27
  812. spire/xls/TickLabelPositionType.py +0 -19
  813. spire/xls/TickMarkType.py +0 -19
  814. spire/xls/Top10Filter.py +0 -75
  815. spire/xls/TopBottomType.py +0 -19
  816. spire/xls/TopFormatType.py +0 -18
  817. spire/xls/TrendLineType.py +0 -21
  818. spire/xls/UnknownVariableAction.py +0 -18
  819. spire/xls/VPageBreaksCollection.py +0 -96
  820. spire/xls/ValidationComparisonOperator.py +0 -23
  821. spire/xls/VariableTypeAction.py +0 -19
  822. spire/xls/VerticalAlignType.py +0 -20
  823. spire/xls/ViewMode.py +0 -18
  824. spire/xls/WorksheetVisibility.py +0 -18
  825. spire/xls/WorksheetsCollection.py +0 -341
  826. spire/xls/XLSXBorderJoinType.py +0 -19
  827. spire/xls/XLSXChartMaterialType.py +0 -32
  828. spire/xls/XLSXChartPrespectiveType.py +0 -21
  829. spire/xls/XLSXChartShadowInnerType.py +0 -25
  830. spire/xls/XLSXChartShadowOuterType.py +0 -25
  831. spire/xls/XlsAddInFunctionsCollection.py +0 -101
  832. spire/xls/XlsAutoFiltersCollection.py +0 -119
  833. spire/xls/XlsBordersCollection.py +0 -101
  834. spire/xls/XlsBuiltInDocumentProperties.py +0 -639
  835. spire/xls/XlsChart.py +0 -1510
  836. spire/xls/XlsChartAxis.py +0 -564
  837. spire/xls/XlsChartBorder.py +0 -165
  838. spire/xls/XlsChartCategoryAxis.py +0 -656
  839. spire/xls/XlsChartDataLabelArea.py +0 -387
  840. spire/xls/XlsChartDataLabels.py +0 -811
  841. spire/xls/XlsChartDataPoint.py +0 -108
  842. spire/xls/XlsChartDataPointsCollection.py +0 -120
  843. spire/xls/XlsChartDataTable.py +0 -393
  844. spire/xls/XlsChartDropBar.py +0 -301
  845. spire/xls/XlsChartFill.py +0 -571
  846. spire/xls/XlsChartFormat.py +0 -1069
  847. spire/xls/XlsChartFormatCollection.py +0 -162
  848. spire/xls/XlsChartFrameFormat.py +0 -614
  849. spire/xls/XlsChartGridLine.py +0 -171
  850. spire/xls/XlsChartInterior.py +0 -240
  851. spire/xls/XlsChartLegend.py +0 -355
  852. spire/xls/XlsChartLegendArea.py +0 -419
  853. spire/xls/XlsChartLegendEntry.py +0 -156
  854. spire/xls/XlsChartSerie.py +0 -589
  855. spire/xls/XlsChartSerieDataFormat.py +0 -1008
  856. spire/xls/XlsChartSeriesAxis.py +0 -212
  857. spire/xls/XlsChartShape.py +0 -1142
  858. spire/xls/XlsChartTitleArea.py +0 -392
  859. spire/xls/XlsChartValueAxis.py +0 -317
  860. spire/xls/XlsChartWallOrFloor.py +0 -319
  861. spire/xls/XlsChartsCollection.py +0 -89
  862. spire/xls/XlsCommentsCollection.py +0 -87
  863. spire/xls/XlsConditionValue.py +0 -111
  864. spire/xls/XlsConditionalFormat.py +0 -1119
  865. spire/xls/XlsConditionalFormats.py +0 -590
  866. spire/xls/XlsDataValidationCollection.py +0 -159
  867. spire/xls/XlsFontsCollection.py +0 -51
  868. spire/xls/XlsHPageBreaksCollection.py +0 -85
  869. spire/xls/XlsHyperLinksCollection.py +0 -102
  870. spire/xls/XlsPivotCache.py +0 -401
  871. spire/xls/XlsPivotCacheField.py +0 -209
  872. spire/xls/XlsPivotCachesCollection.py +0 -124
  873. spire/xls/XlsPivotField.py +0 -885
  874. spire/xls/XlsPivotTable.py +0 -905
  875. spire/xls/XlsPivotTablesCollection.py +0 -131
  876. spire/xls/XlsRangesCollection.py +0 -1566
  877. spire/xls/XlsStylesCollection.py +0 -73
  878. spire/xls/XlsVPageBreaksCollection.py +0 -84
  879. spire/xls/XlsWorkbookObjectsCollection.py +0 -94
  880. spire/xls/XlsWorksheetsCollection.py +0 -416
  881. spire_xls-15.5.0.dist-info/METADATA +0 -197
  882. spire_xls-15.5.0.dist-info/RECORD +0 -703
  883. /spire/xls/{lib → autofilter}/__init__.py +0 -0
  884. /spire/xls/{ChartBorder.py → charts/ChartBorder.py} +0 -0
  885. /spire/xls/{ChartDataTable.py → charts/ChartDataTable.py} +0 -0
  886. /spire/xls/{ChartDropBar.py → charts/ChartDropBar.py} +0 -0
  887. /spire/xls/{ChartInterior.py → charts/ChartInterior.py} +0 -0
  888. /spire/xls/{ChartPageSetup.py → charts/ChartPageSetup.py} +0 -0
  889. /spire/xls/{ChartTitle.py → charts/ChartTitle.py} +0 -0
  890. /spire/xls/{ChartWallOrFloor.py → charts/ChartWallOrFloor.py} +0 -0
  891. /spire/xls/{XlsChartPageSetup.py → charts/XlsChartPageSetup.py} +0 -0
  892. /spire/xls/{XlsChartPlotArea.py → charts/XlsChartPlotArea.py} +0 -0
  893. /spire/xls/{CheckBoxCollection.py → collection/CheckBoxCollection.py} +0 -0
  894. /spire/xls/{CollectionChangeEventArgs.py → collection/CollectionChangeEventArgs.py} +0 -0
  895. /spire/xls/{FontsCollection.py → collection/FontsCollection.py} +0 -0
  896. /spire/xls/{GeomertyAdjustValuesCollection.py → collection/GeomertyAdjustValuesCollection.py} +0 -0
  897. /spire/xls/{LabelShapeCollection.py → collection/LabelShapeCollection.py} +0 -0
  898. /spire/xls/{LineCollection.py → collection/LineCollection.py} +0 -0
  899. /spire/xls/{ListBoxCollection.py → collection/ListBoxCollection.py} +0 -0
  900. /spire/xls/{RectangleCollection.py → collection/RectangleCollection.py} +0 -0
  901. /spire/xls/{ScrollBarCollection.py → collection/ScrollBarCollection.py} +0 -0
  902. /spire/xls/{SpinnerShapeCollection.py → collection/SpinnerShapeCollection.py} +0 -0
  903. /spire/xls/{TextBoxCollection.py → collection/TextBoxCollection.py} +0 -0
  904. /spire/xls/{WorkbookObjectsCollection.py → collection/WorkbookObjectsCollection.py} +0 -0
  905. /spire/xls/{WorksheetChartsCollection.py → collection/WorksheetChartsCollection.py} +0 -0
  906. /spire/xls/{WorksheetConditionalFormats.py → collection/WorksheetConditionalFormats.py} +0 -0
  907. /spire/xls/{XlsChartSeries.py → collection/XlsChartSeries.py} +0 -0
  908. /spire/xls/{XlsHeaderFooterShapeCollection.py → collection/XlsHeaderFooterShapeCollection.py} +0 -0
  909. /spire/xls/{XlsPicturesCollection.py → collection/XlsPicturesCollection.py} +0 -0
  910. /spire/xls/{XlsWorksheetChartsCollection.py → collection/XlsWorksheetChartsCollection.py} +0 -0
  911. /spire/xls/{XlsWorksheetConditionalFormats.py → collection/XlsWorksheetConditionalFormats.py} +0 -0
  912. /spire/xls/{PivotCachesCollection.py → collection/pivot_table/PivotCachesCollection.py} +0 -0
  913. /spire/xls/{PivotCalculatedFieldsCollection.py → collection/pivot_table/PivotCalculatedFieldsCollection.py} +0 -0
  914. /spire/xls/{PivotDataFields.py → collection/pivot_table/PivotDataFields.py} +0 -0
  915. /spire/xls/{PivotTablesCollection.py → collection/pivot_table/PivotTablesCollection.py} +0 -0
  916. /spire/xls/{AxisTypes.py → enums/AxisTypes.py} +0 -0
  917. /spire/xls/{CompoundLineType.py → enums/CompoundLineType.py} +0 -0
  918. /spire/xls/{ConditionValueType.py → enums/ConditionValueType.py} +0 -0
  919. /spire/xls/{ConditionalTopNType.py → enums/ConditionalTopNType.py} +0 -0
  920. /spire/xls/{ConnectionDataSourceType.py → enums/ConnectionDataSourceType.py} +0 -0
  921. /spire/xls/{CopyRangeOptions.py → enums/CopyRangeOptions.py} +0 -0
  922. /spire/xls/{DataBarAxisPosition.py → enums/DataBarAxisPosition.py} +0 -0
  923. /spire/xls/{DataBarBorderType.py → enums/DataBarBorderType.py} +0 -0
  924. /spire/xls/{DataBarFillType.py → enums/DataBarFillType.py} +0 -0
  925. /spire/xls/{DataBarNegativeColorType.py → enums/DataBarNegativeColorType.py} +0 -0
  926. /spire/xls/{DataMarkerDirection.py → enums/DataMarkerDirection.py} +0 -0
  927. /spire/xls/{DateTimeGroupingType.py → enums/DateTimeGroupingType.py} +0 -0
  928. /spire/xls/{DeleteOption.py → enums/DeleteOption.py} +0 -0
  929. /spire/xls/{DynamicFilterType.py → enums/DynamicFilterType.py} +0 -0
  930. /spire/xls/{ExcelClearOptions.py → enums/ExcelClearOptions.py} +0 -0
  931. /spire/xls/{ExcelFindOptions.py → enums/ExcelFindOptions.py} +0 -0
  932. /spire/xls/{ExcelSaveType.py → enums/ExcelSaveType.py} +0 -0
  933. /spire/xls/{ExcelTotalsCalculation.py → enums/ExcelTotalsCalculation.py} +0 -0
  934. /spire/xls/{FillPictureType.py → enums/FillPictureType.py} +0 -0
  935. /spire/xls/{FilterOperatorType.py → enums/FilterOperatorType.py} +0 -0
  936. /spire/xls/{FilterType.py → enums/FilterType.py} +0 -0
  937. /spire/xls/{FindType.py → enums/FindType.py} +0 -0
  938. /spire/xls/{GeomertyAdjustValueFormulaType.py → enums/GeomertyAdjustValueFormulaType.py} +0 -0
  939. /spire/xls/{GroupByType.py → enums/GroupByType.py} +0 -0
  940. /spire/xls/{HttpContentType.py → enums/HttpContentType.py} +0 -0
  941. /spire/xls/{IconSetType.py → enums/IconSetType.py} +0 -0
  942. /spire/xls/{InsertOptionsType.py → enums/InsertOptionsType.py} +0 -0
  943. /spire/xls/{LineShapeType.py → enums/LineShapeType.py} +0 -0
  944. /spire/xls/{MeasureUnits.py → enums/MeasureUnits.py} +0 -0
  945. /spire/xls/{MsoPathType.py → enums/MsoPathType.py} +0 -0
  946. /spire/xls/{OLEDBCommandType.py → enums/OLEDBCommandType.py} +0 -0
  947. /spire/xls/{OdsPageBackgroundImagePositionType.py → enums/OdsPageBackgroundImagePositionType.py} +0 -0
  948. /spire/xls/{OdsPageBackgroundImageType.py → enums/OdsPageBackgroundImageType.py} +0 -0
  949. /spire/xls/{OdsPageBackgroundType.py → enums/OdsPageBackgroundType.py} +0 -0
  950. /spire/xls/{OleLinkType.py → enums/OleLinkType.py} +0 -0
  951. /spire/xls/{PathFillMode.py → enums/PathFillMode.py} +0 -0
  952. /spire/xls/{PdfConformanceLevel.py → enums/PdfConformanceLevel.py} +0 -0
  953. /spire/xls/{PivotAutoFomatTypes.py → enums/PivotAutoFomatTypes.py} +0 -0
  954. /spire/xls/{PivotBuiltInStyles.py → enums/PivotBuiltInStyles.py} +0 -0
  955. /spire/xls/{PivotDataType.py → enums/PivotDataType.py} +0 -0
  956. /spire/xls/{PivotFieldFormatType.py → enums/PivotFieldFormatType.py} +0 -0
  957. /spire/xls/{PivotFieldSortType.py → enums/PivotFieldSortType.py} +0 -0
  958. /spire/xls/{PivotItemType.py → enums/PivotItemType.py} +0 -0
  959. /spire/xls/{PivotLabelFilterType.py → enums/PivotLabelFilterType.py} +0 -0
  960. /spire/xls/{PivotPageAreaFieldsOrderType.py → enums/PivotPageAreaFieldsOrderType.py} +0 -0
  961. /spire/xls/{PivotTableElement.py → enums/PivotTableElement.py} +0 -0
  962. /spire/xls/{PivotTableLayoutType.py → enums/PivotTableLayoutType.py} +0 -0
  963. /spire/xls/{PivotValueFilterType.py → enums/PivotValueFilterType.py} +0 -0
  964. /spire/xls/{PresetTextEffect.py → enums/PresetTextEffect.py} +0 -0
  965. /spire/xls/{PrintingPageType.py → enums/PrintingPageType.py} +0 -0
  966. /spire/xls/{PropertyType.py → enums/PropertyType.py} +0 -0
  967. /spire/xls/{PrstGeomShapeType.py → enums/PrstGeomShapeType.py} +0 -0
  968. /spire/xls/{RectangleShapeType.py → enums/RectangleShapeType.py} +0 -0
  969. /spire/xls/{RelationShip.py → enums/RelationShip.py} +0 -0
  970. /spire/xls/{RenameStrategy.py → enums/RenameStrategy.py} +0 -0
  971. /spire/xls/{RtfTags.py → enums/RtfTags.py} +0 -0
  972. /spire/xls/{SelectionType.py → enums/SelectionType.py} +0 -0
  973. /spire/xls/{SparklineEmptyCells.py → enums/SparklineEmptyCells.py} +0 -0
  974. /spire/xls/{SpartlineVerticalAxisType.py → enums/SpartlineVerticalAxisType.py} +0 -0
  975. /spire/xls/{StrikeThroughStyle.py → enums/StrikeThroughStyle.py} +0 -0
  976. /spire/xls/{StyleDefineType.py → enums/StyleDefineType.py} +0 -0
  977. /spire/xls/{SubtotalTypes.py → enums/SubtotalTypes.py} +0 -0
  978. /spire/xls/{TRangeValueType.py → enums/TRangeValueType.py} +0 -0
  979. /spire/xls/{TableBuiltInStyles.py → enums/TableBuiltInStyles.py} +0 -0
  980. /spire/xls/{TextDirectionType.py → enums/TextDirectionType.py} +0 -0
  981. /spire/xls/{TextVerticalValue.py → enums/TextVerticalValue.py} +0 -0
  982. /spire/xls/{TimePeriodType.py → enums/TimePeriodType.py} +0 -0
  983. /spire/xls/{UnderlineStyle.py → enums/UnderlineStyle.py} +0 -0
  984. /spire/xls/{WorksheetCopyType.py → enums/WorksheetCopyType.py} +0 -0
  985. /spire/xls/{XLSXChartBevelType.py → enums/XLSXChartBevelType.py} +0 -0
  986. /spire/xls/{XLSXChartLightingType.py → enums/XLSXChartLightingType.py} +0 -0
  987. /spire/xls/{XLSXPivotItemType.py → enums/XLSXPivotItemType.py} +0 -0
  988. /spire/xls/{XmlOpenType.py → enums/XmlOpenType.py} +0 -0
  989. /spire/xls/{IAddInFunction.py → interfaces/IAddInFunction.py} +0 -0
  990. /spire/xls/{IAutoFilter.py → interfaces/IAutoFilter.py} +0 -0
  991. /spire/xls/{IAutoFilterCondition.py → interfaces/IAutoFilterCondition.py} +0 -0
  992. /spire/xls/{IAutoFilters.py → interfaces/IAutoFilters.py} +0 -0
  993. /spire/xls/{IBorder.py → interfaces/IBorder.py} +0 -0
  994. /spire/xls/{IBuiltInDocumentProperties.py → interfaces/IBuiltInDocumentProperties.py} +0 -0
  995. /spire/xls/{IButtonShape.py → interfaces/IButtonShape.py} +0 -0
  996. /spire/xls/{IChartDropBar.py → interfaces/IChartDropBar.py} +0 -0
  997. /spire/xls/{IExcelApplication.py → interfaces/IExcelApplication.py} +0 -0
  998. /spire/xls/{IInternalWorksheet.py → interfaces/IInternalWorksheet.py} +0 -0
  999. /spire/xls/{IListBox.py → interfaces/IListBox.py} +0 -0
  1000. /spire/xls/{IRichTextString.py → interfaces/IRichTextString.py} +0 -0
  1001. /spire/xls/{IAddInFunctions.py → interfaces/collections/IAddInFunctions.py} +0 -0
  1002. /spire/xls/{IArcShapes.py → interfaces/collections/IArcShapes.py} +0 -0
  1003. /spire/xls/{IBorders.py → interfaces/collections/IBorders.py} +0 -0
  1004. /spire/xls/{IButtonShapes.py → interfaces/collections/IButtonShapes.py} +0 -0
  1005. /spire/xls/{IChartDataPoints.py → interfaces/collections/IChartDataPoints.py} +0 -0
  1006. /spire/xls/{IChartLegendEntries.py → interfaces/collections/IChartLegendEntries.py} +0 -0
  1007. /spire/xls/{IChartSeries.py → interfaces/collections/IChartSeries.py} +0 -0
  1008. /spire/xls/{IChartShapes.py → interfaces/collections/IChartShapes.py} +0 -0
  1009. /spire/xls/{IChartTrendLines.py → interfaces/collections/IChartTrendLines.py} +0 -0
  1010. /spire/xls/{ICharts.py → interfaces/collections/ICharts.py} +0 -0
  1011. /spire/xls/{ICheckBoxes.py → interfaces/collections/ICheckBoxes.py} +0 -0
  1012. /spire/xls/{IComboBoxes.py → interfaces/collections/IComboBoxes.py} +0 -0
  1013. /spire/xls/{IComments.py → interfaces/collections/IComments.py} +0 -0
  1014. /spire/xls/{IConditionalFormatsCollection.py → interfaces/collections/IConditionalFormatsCollection.py} +0 -0
  1015. /spire/xls/{IGroupBoxes.py → interfaces/collections/IGroupBoxes.py} +0 -0
  1016. /spire/xls/{IHyperLinks.py → interfaces/collections/IHyperLinks.py} +0 -0
  1017. /spire/xls/{ILabelShapes.py → interfaces/collections/ILabelShapes.py} +0 -0
  1018. /spire/xls/{ILines.py → interfaces/collections/ILines.py} +0 -0
  1019. /spire/xls/{IListBoxes.py → interfaces/collections/IListBoxes.py} +0 -0
  1020. /spire/xls/{INameRanges.py → interfaces/collections/INameRanges.py} +0 -0
  1021. /spire/xls/{IOvalShapes.py → interfaces/collections/IOvalShapes.py} +0 -0
  1022. /spire/xls/{IPictures.py → interfaces/collections/IPictures.py} +0 -0
  1023. /spire/xls/{IRadioButtons.py → interfaces/collections/IRadioButtons.py} +0 -0
  1024. /spire/xls/{IRectangleShapes.py → interfaces/collections/IRectangleShapes.py} +0 -0
  1025. /spire/xls/{IScrollBarShapes.py → interfaces/collections/IScrollBarShapes.py} +0 -0
  1026. /spire/xls/{ISpinnerShapes.py → interfaces/collections/ISpinnerShapes.py} +0 -0
  1027. /spire/xls/{IStyles.py → interfaces/collections/IStyles.py} +0 -0
  1028. /spire/xls/{ITabSheets.py → interfaces/collections/ITabSheets.py} +0 -0
  1029. /spire/xls/{IWorksheetGroup.py → interfaces/collections/IWorksheetGroup.py} +0 -0
  1030. /spire/xls/{IWorksheets.py → interfaces/collections/IWorksheets.py} +0 -0
  1031. /spire/xls/{IPivotDataField.py → interfaces/pivot_table/IPivotDataField.py} +0 -0
  1032. /spire/xls/{IPivotDataFields.py → interfaces/pivot_table/IPivotDataFields.py} +0 -0
  1033. /spire/xls/{IPivotFields.py → interfaces/pivot_table/IPivotFields.py} +0 -0
  1034. /spire/xls/{IPivotTables.py → interfaces/pivot_table/IPivotTables.py} +0 -0
  1035. /spire/xls/{IDataSort.py → interfaces/sorting/IDataSort.py} +0 -0
  1036. /spire/xls/{PivotCache.py → pivot_tables/PivotCache.py} +0 -0
  1037. /spire/xls/{PivotField.py → pivot_tables/PivotField.py} +0 -0
  1038. /spire/xls/{PivotTable.py → pivot_tables/PivotTable.py} +0 -0
  1039. /spire/xls/{EncryptedKeyInfo.py → security/EncryptedKeyInfo.py} +0 -0
  1040. /spire/xls/{ISparkline.py → sparkline/ISparkline.py} +0 -0
  1041. /spire/xls/{ISparklineGroup.py → sparkline/ISparklineGroup.py} +0 -0
  1042. {spire_xls-15.5.0.dist-info → spire_xls-15.11.1.dist-info}/WHEEL +0 -0
  1043. {spire_xls-15.5.0.dist-info → spire_xls-15.11.1.dist-info}/top_level.txt +0 -0
spire/xls/Worksheet.py CHANGED
@@ -10,14 +10,63 @@ class Worksheet ( XlsWorksheet) :
10
10
  """
11
11
 
12
12
  """
13
+ @dispatch
14
+
15
+ def RemoveDuplicates(self):
16
+ """
17
+ Remove Duplicate rows.
18
+
19
+ """
20
+
21
+ GetDllLibXls().Worksheet_RemoveDuplicates.argtypes=[c_void_p]
22
+ CallCFunction(GetDllLibXls().Worksheet_RemoveDuplicates, self.Ptr)
23
+
24
+
25
+ @dispatch
26
+
27
+ def RemoveDuplicates(self ,row:int,column:int,lastRow:int,lastColumn:int):
28
+ """
29
+ Remove Duplicate rows.
30
+
31
+ Args:
32
+ row: row start
33
+ column: column start
34
+ lastRow: row end
35
+ lastColumn: column end
36
+
37
+ """
38
+
39
+ GetDllLibXls().Worksheet_RemoveDuplicatesSSEE.argtypes=[c_void_p ,c_int,c_int,c_int,c_int]
40
+ CallCFunction(GetDllLibXls().Worksheet_RemoveDuplicatesSSEE, self.Ptr, row,column,lastRow,lastColumn)
41
+
42
+ @dispatch
43
+
44
+ def RemoveDuplicates(self ,row:int,column:int,lastRow:int,lastColumn:int,hasHeaders:bool, columnOffsets:List[int]):
45
+ """
46
+ Remove Duplicate rows.
47
+
48
+ Args:
49
+ row: row start
50
+ column: column start
51
+ lastRow: row end
52
+ lastColumn: column end
53
+
54
+ """
55
+ countcolumnOffsets = len(columnOffsets)
56
+ ArrayTypecolumnOffsets = c_int * countcolumnOffsets
57
+ arraycolumnOffsets = ArrayTypecolumnOffsets()
58
+ for i in range(0, countcolumnOffsets):
59
+ arraycolumnOffsets[i] = columnOffsets[i]
60
+
61
+ GetDllLibXls().Worksheet_RemoveDuplicatesSSEEHC.argtypes=[c_void_p ,c_int,c_int,c_int,c_int,c_bool,ArrayTypecolumnOffsets,c_int]
62
+ CallCFunction(GetDllLibXls().Worksheet_RemoveDuplicatesSSEEHC, self.Ptr, row,column,lastRow,lastColumn,hasHeaders,arraycolumnOffsets,countcolumnOffsets)
63
+
13
64
  @property
14
65
 
15
66
  def AllocatedRange(self)->'CellRange':
16
67
  """
17
- <summary>
18
- Returns a Range object that represents the used range on the
19
- specified worksheet. Read-only.
20
- </summary>
68
+ Returns a Range object that represents the used range on the specified worksheet. Read-only.
69
+
21
70
  """
22
71
  GetDllLibXls().Worksheet_get_AllocatedRange.argtypes=[c_void_p]
23
72
  GetDllLibXls().Worksheet_get_AllocatedRange.restype=c_void_p
@@ -30,14 +79,14 @@ class Worksheet ( XlsWorksheet) :
30
79
 
31
80
  def get_Item(self ,row:int,column:int,lastRow:int,lastColumn:int)->CellRange:
32
81
  """
33
- <summary>
34
82
  Get cell range.
35
- </summary>
36
- <param name="row"></param>
37
- <param name="column"></param>
38
- <param name="lastRow"></param>
39
- <param name="lastColumn"></param>
40
- <returns></returns>
83
+
84
+ Args:
85
+ row:
86
+ column:
87
+ lastRow:
88
+ lastColumn:
89
+
41
90
  """
42
91
 
43
92
  GetDllLibXls().Worksheet_get_Item.argtypes=[c_void_p ,c_int,c_int,c_int,c_int]
@@ -51,12 +100,12 @@ class Worksheet ( XlsWorksheet) :
51
100
 
52
101
  def get_Item(self ,row:int,column:int)->CellRange:
53
102
  """
54
- <summary>
55
103
  Get cell range.
56
- </summary>
57
- <param name="row"></param>
58
- <param name="column"></param>
59
- <returns></returns>
104
+
105
+ Args:
106
+ row:
107
+ column:
108
+
60
109
  """
61
110
 
62
111
  GetDllLibXls().Worksheet_get_ItemRC.argtypes=[c_void_p ,c_int,c_int]
@@ -70,11 +119,11 @@ class Worksheet ( XlsWorksheet) :
70
119
 
71
120
  def get_Item(self ,name:str)->CellRange:
72
121
  """
73
- <summary>
74
122
  Get cell range.
75
- </summary>
76
- <param name="name"></param>
77
- <returns></returns>
123
+
124
+ Args:
125
+ name:
126
+
78
127
  """
79
128
 
80
129
  GetDllLibXls().Worksheet_get_ItemN.argtypes=[c_void_p ,c_void_p]
@@ -88,25 +137,22 @@ class Worksheet ( XlsWorksheet) :
88
137
 
89
138
  def MergedCells(self)->'ListCellRanges':
90
139
  """
91
- <summary>
92
- Returns all merged ranges. Read-only.
93
- <example>The following code illustrates how to get the merged ranges:
94
- <code>
95
- //Create worksheet
96
- Workbook workbook = new Workbook();
97
- Worksheet worksheet = workbook.Worksheets[0];
98
- //Merge cells
99
- worksheet["C2:D2"].Merge();
100
- worksheet["F3:G3"].Merge();
101
- //Get merged ranges
102
- IXLSRange[] mergedRanges = worksheet.MergedCells;
103
- //Get merged range count . Output will be 2
104
- Console.Write(mergedRanges.Length);
105
- //Save to file
106
- workbook.SaveToFile("MergedCells.xlsx");
107
- </code>
108
- </example>
109
- </summary>
140
+ Returns all merged ranges. Read-only.
141
+ Example::
142
+
143
+ #Create worksheet
144
+ workbook = Workbook()
145
+ worksheet = workbook.Worksheets[0]
146
+ #Merge cells
147
+ worksheet["C2:D2"].Merge()
148
+ worksheet["F3:G3"].Merge()
149
+ #Get merged ranges
150
+ IXLSRange[] mergedRanges = worksheet.MergedCells
151
+ #Get merged range count . Output will be 2
152
+ Console.Write(mergedRanges.Length)
153
+ #Save to file
154
+ workbook.SaveToFile("MergedCells.xlsx")
155
+
110
156
  """
111
157
  GetDllLibXls().Worksheet_get_MergedCells.argtypes=[c_void_p]
112
158
  GetDllLibXls().Worksheet_get_MergedCells.restype=c_void_p
@@ -118,13 +164,16 @@ class Worksheet ( XlsWorksheet) :
118
164
 
119
165
  def FindAll(self ,findValue:str,flags:'FindType',findOptions:'ExcelFindOptions')->'ListCellRanges':
120
166
  """
121
- <summary>
122
167
  Finds the all cells with specified string value.
123
- </summary>
124
- <param name="findValue">Value to search.</param>
125
- <param name="flags">Type of value to search.</param>
126
- <param name="findOptions">Way to search.</param>
127
- <returns>All found cells, or Null if value was not found.</returns>
168
+
169
+ Args:
170
+ findValue: Value to search.
171
+ flags: Type of value to search.
172
+ findOptions: Way to search.
173
+
174
+ Returns:
175
+ All found cells, or Null if value was not found.
176
+
128
177
  """
129
178
  enumflags:c_int = flags.value
130
179
  enumfindOptions:c_int = findOptions.value
@@ -139,12 +188,15 @@ class Worksheet ( XlsWorksheet) :
139
188
 
140
189
  def FindAllNumber(self ,doubleValue:float,formulaValue:bool)->'ListCellRanges':
141
190
  """
142
- <summary>
143
191
  Finds the cell with the input number.
144
- </summary>
145
- <param name="doubleValue">Double value to search for.</param>
146
- <param name="formulaValue">Indicates if includes formula value.</param>
147
- <returns>Found ranges.</returns>
192
+
193
+ Args:
194
+ doubleValue: Double value to search for.
195
+ formulaValue: Indicates if includes formula value.
196
+
197
+ Returns:
198
+ Found ranges.
199
+
148
200
  """
149
201
 
150
202
  GetDllLibXls().Worksheet_FindAllNumber.argtypes=[c_void_p ,c_double,c_bool]
@@ -157,13 +209,16 @@ class Worksheet ( XlsWorksheet) :
157
209
  @dispatch
158
210
  def FindAllString(self ,stringValue:str,formula:bool,formulaValue:bool)->ListCellRanges:
159
211
  """
160
- <summary>
161
212
  Finds the cell with the input string.
162
- </summary>
163
- <param name="stringValue">String value to search for.</param>
164
- <param name="formula">Indicates if includes formula.</param>
165
- <param name="formulaValue">Indicates if includes formula value.</param>
166
- <returns>Found ranges.</returns>
213
+
214
+ Args:
215
+ stringValue: String value to search for.
216
+ formula: Indicates if includes formula.
217
+ formulaValue: Indicates if includes formula value.
218
+
219
+ Returns:
220
+ Found ranges.
221
+
167
222
  """
168
223
 
169
224
  GetDllLibXls().Worksheet_FindAllString.argtypes=[c_void_p ,c_void_p,c_bool,c_bool]
@@ -175,14 +230,17 @@ class Worksheet ( XlsWorksheet) :
175
230
  @dispatch
176
231
  def FindAllString(self ,stringValue:str,formula:bool,formulaValue:bool,igRegex:bool)->ListCellRanges:
177
232
  """
178
- <summary>
179
233
  Finds the cell with the input string.
180
- </summary>
181
- <param name="stringValue">String value to search for.</param>
182
- <param name="formula">Indicates if includes formula.</param>
183
- <param name="formulaValue">Indicates if includes formula value.</param>
184
- <param name="isRegex">Indicates if stringValue param is regex.</param>
185
- <returns>Found ranges.</returns>
234
+
235
+ Args:
236
+ stringValue: String value to search for.
237
+ formula: Indicates if includes formula.
238
+ formulaValue: Indicates if includes formula value.
239
+ isRegex: Indicates if stringValue param is regex.
240
+
241
+ Returns:
242
+ Found ranges.
243
+
186
244
  """
187
245
 
188
246
  GetDllLibXls().Worksheet_FindAllStringSFFI.argtypes=[c_void_p ,c_void_p,c_bool,c_bool,c_bool]
@@ -193,11 +251,14 @@ class Worksheet ( XlsWorksheet) :
193
251
 
194
252
  def FindAllDateTime(self ,dateTimeValue:'DateTime')->'ListCellRanges':
195
253
  """
196
- <summary>
197
254
  Finds the cell with the input date time.
198
- </summary>
199
- <param name="dateTimeValue">Datetime value to search for.</param>
200
- <returns>Found ranges.</returns>
255
+
256
+ Args:
257
+ dateTimeValue: Datetime value to search for.
258
+
259
+ Returns:
260
+ Found ranges.
261
+
201
262
  """
202
263
  intPtrdateTimeValue:c_void_p = dateTimeValue.Ptr
203
264
 
@@ -211,11 +272,14 @@ class Worksheet ( XlsWorksheet) :
211
272
 
212
273
  def FindAllTimeSpan(self ,timeSpanValue:'TimeSpan')->'ListCellRanges':
213
274
  """
214
- <summary>
215
275
  Finds the cell with the input time span.
216
- </summary>
217
- <param name="timeSpanValue">Time span value to search for.</param>
218
- <returns>Found ranges.</returns>
276
+
277
+ Args:
278
+ timeSpanValue: Time span value to search for.
279
+
280
+ Returns:
281
+ Found ranges.
282
+
219
283
  """
220
284
  intPtrtimeSpanValue:c_void_p = timeSpanValue.Ptr
221
285
 
@@ -229,11 +293,14 @@ class Worksheet ( XlsWorksheet) :
229
293
 
230
294
  def FindAllBool(self ,boolValue:bool)->'ListCellRanges':
231
295
  """
232
- <summary>
233
296
  Finds the cell with the input bool.
234
- </summary>
235
- <param name="boolValue">Bool value to search for.</param>
236
- <returns>Found ranges.</returns>
297
+
298
+ Args:
299
+ boolValue: Bool value to search for.
300
+
301
+ Returns:
302
+ Found ranges.
303
+
237
304
  """
238
305
 
239
306
  GetDllLibXls().Worksheet_FindAllBool.argtypes=[c_void_p ,c_bool]
@@ -246,11 +313,14 @@ class Worksheet ( XlsWorksheet) :
246
313
 
247
314
  def FindBool(self ,boolValue:bool)->'CellRange':
248
315
  """
249
- <summary>
250
316
  Finds the cell with the input bool.
251
- </summary>
252
- <param name="boolValue">Bool value to search for.</param>
253
- <returns>Found range.</returns>
317
+
318
+ Args:
319
+ boolValue: Bool value to search for.
320
+
321
+ Returns:
322
+ Found range.
323
+
254
324
  """
255
325
 
256
326
  GetDllLibXls().Worksheet_FindBool.argtypes=[c_void_p ,c_bool]
@@ -263,12 +333,15 @@ class Worksheet ( XlsWorksheet) :
263
333
 
264
334
  def FindNumber(self ,doubleValue:float,formulaValue:bool)->'CellRange':
265
335
  """
266
- <summary>
267
336
  Finds the cell with the input double.
268
- </summary>
269
- <param name="doubleValue">Double value to search for.</param>
270
- <param name="formulaValue">Indicates if includes formula value.</param>
271
- <returns>Found range.</returns>
337
+
338
+ Args:
339
+ doubleValue: Double value to search for.
340
+ formulaValue: Indicates if includes formula value.
341
+
342
+ Returns:
343
+ Found range.
344
+
272
345
  """
273
346
 
274
347
  GetDllLibXls().Worksheet_FindNumber.argtypes=[c_void_p ,c_double,c_bool]
@@ -281,13 +354,16 @@ class Worksheet ( XlsWorksheet) :
281
354
 
282
355
  def FindString(self ,stringValue:str,formula:bool,formulaValue:bool)->'CellRange':
283
356
  """
284
- <summary>
285
357
  Finds the cell with the input string.
286
- </summary>
287
- <param name="stringValue">String value to search for.</param>
288
- <param name="formula">Indicates whether includes formula.</param>
289
- <param name="formulaValue">Indicates whether includes formula value.</param>
290
- <returns>Found range.</returns>
358
+
359
+ Args:
360
+ stringValue: String value to search for.
361
+ formula: Indicates whether includes formula.
362
+ formulaValue: Indicates whether includes formula value.
363
+
364
+ Returns:
365
+ Found range.
366
+
291
367
  """
292
368
 
293
369
  GetDllLibXls().Worksheet_FindString.argtypes=[c_void_p ,c_void_p,c_bool,c_bool]
@@ -300,11 +376,14 @@ class Worksheet ( XlsWorksheet) :
300
376
 
301
377
  def FindDateTime(self ,dateTimeValue:'DateTime')->'CellRange':
302
378
  """
303
- <summary>
304
379
  Finds the cell with the input date time.
305
- </summary>
306
- <param name="dateTimeValue">DateTime value to search for.</param>
307
- <returns>Found range.</returns>
380
+
381
+ Args:
382
+ dateTimeValue: DateTime value to search for.
383
+
384
+ Returns:
385
+ Found range.
386
+
308
387
  """
309
388
  intPtrdateTimeValue:c_void_p = dateTimeValue.Ptr
310
389
 
@@ -318,11 +397,14 @@ class Worksheet ( XlsWorksheet) :
318
397
 
319
398
  def FindTimeSpan(self ,timeSpanValue:'TimeSpan')->'CellRange':
320
399
  """
321
- <summary>
322
400
  Finds the cell with the input time span.
323
- </summary>
324
- <param name="timeSpanValue">Time span value to search for.</param>
325
- <returns>Found range.</returns>
401
+
402
+ Args:
403
+ timeSpanValue: Time span value to search for.
404
+
405
+ Returns:
406
+ Found range.
407
+
326
408
  """
327
409
  intPtrtimeSpanValue:c_void_p = timeSpanValue.Ptr
328
410
 
@@ -336,10 +418,11 @@ class Worksheet ( XlsWorksheet) :
336
418
 
337
419
  def CopyFrom(self ,worksheet:'Worksheet'):
338
420
  """
339
- <summary>
340
421
  Copy data from specified worksheet.
341
- </summary>
342
- <param name="worksheet">worksheet object</param>
422
+
423
+ Args:
424
+ worksheet: worksheet object
425
+
343
426
  """
344
427
  intPtrworksheet:c_void_p = worksheet.Ptr
345
428
 
@@ -350,11 +433,12 @@ class Worksheet ( XlsWorksheet) :
350
433
 
351
434
  def Copy(self ,sourceRange:CellRange,destRange:CellRange):
352
435
  """
353
- <summary>
354
- Copys data from a source range to a destination range.
355
- </summary>
356
- <param name="sourceRange">Source range.</param>
357
- <param name="destRange">Destination range.</param>
436
+ Copys data from a source range to a destination range.
437
+
438
+ Args:
439
+ sourceRange: Source range.
440
+ destRange: Destination range.
441
+
358
442
  """
359
443
  intPtrsourceRange:c_void_p = sourceRange.Ptr
360
444
  intPtrdestRange:c_void_p = destRange.Ptr
@@ -366,12 +450,13 @@ class Worksheet ( XlsWorksheet) :
366
450
 
367
451
  def Copy(self ,sourceRange:CellRange,destRange:CellRange,copyStyle:bool):
368
452
  """
369
- <summary>
370
- Copys data from a source range to a destination range.
371
- </summary>
372
- <param name="sourceRange">Source range.</param>
373
- <param name="destRange">Destination range.</param>
374
- <param name="copyStyle">Indicates whether copys styles.</param>
453
+ Copys data from a source range to a destination range.
454
+
455
+ Args:
456
+ sourceRange: Source range.
457
+ destRange: Destination range.
458
+ copyStyle: Indicates whether copys styles.
459
+
375
460
  """
376
461
  intPtrsourceRange:c_void_p = sourceRange.Ptr
377
462
  intPtrdestRange:c_void_p = destRange.Ptr
@@ -382,14 +467,15 @@ class Worksheet ( XlsWorksheet) :
382
467
  @dispatch
383
468
  def Copy(self ,sourceRange:CellRange,destRange:CellRange,copyStyle:bool,updateReference:bool,ignoreSize:bool):
384
469
  """
385
- <summary>
386
- Copys data from a source range to a destination range.
387
- </summary>
388
- <param name="sourceRange">Source range.</param>
389
- <param name="destRange">Destination range</param>
390
- <param name="copyStyle">Indicates whether copy styles.</param>
391
- <param name="updateReference">Indicates whether update reference ranges.</param>
392
- <param name="ignoreSize">Indicates whether check range sizes.</param>
470
+ Copys data from a source range to a destination range.
471
+
472
+ Args:
473
+ sourceRange: Source range.
474
+ destRange: Destination range
475
+ copyStyle: Indicates whether copy styles.
476
+ updateReference: Indicates whether update reference ranges.
477
+ ignoreSize: Indicates whether check range sizes.
478
+
393
479
  """
394
480
  intPtrsourceRange:c_void_p = sourceRange.Ptr
395
481
  intPtrdestRange:c_void_p = destRange.Ptr
@@ -401,13 +487,14 @@ class Worksheet ( XlsWorksheet) :
401
487
 
402
488
  def Copy(self ,sourceRange:CellRange,worksheet:'Worksheet',destRow:int,destColumn:int):
403
489
  """
404
- <summary>
405
490
  Copy data from source range to destination worksheet.
406
- </summary>
407
- <param name="sourceRange">Source range.</param>
408
- <param name="worksheet">Destination worksheet</param>
409
- <param name="destRow">Row index of destination worksheet.</param>
410
- <param name="destColumn">Column index of destination worksheet.</param>
491
+
492
+ Args:
493
+ sourceRange: Source range.
494
+ worksheet: Destination worksheet
495
+ destRow: Row index of destination worksheet.
496
+ destColumn: Column index of destination worksheet.
497
+
411
498
  """
412
499
  intPtrsourceRange:c_void_p = sourceRange.Ptr
413
500
  intPtrworksheet:c_void_p = worksheet.Ptr
@@ -419,14 +506,15 @@ class Worksheet ( XlsWorksheet) :
419
506
 
420
507
  def Copy(self ,sourceRange:CellRange,worksheet:'Worksheet',destRow:int,destColumn:int,copyStyle:bool):
421
508
  """
422
- <summary>
423
509
  Copy data from source range to destination worksheet.
424
- </summary>
425
- <param name="sourceRange">Source range</param>
426
- <param name="worksheet">Destination worksheet.</param>
427
- <param name="destRow">Row index of destination worksheet.</param>
428
- <param name="destColumn">Column index of destination worksheet.</param>
429
- <param name="copyStyle">Indicates whehter copy styles.</param>
510
+
511
+ Args:
512
+ sourceRange: Source range
513
+ worksheet: Destination worksheet.
514
+ destRow: Row index of destination worksheet.
515
+ destColumn: Column index of destination worksheet.
516
+ copyStyle: Indicates whehter copy styles.
517
+
430
518
  """
431
519
  intPtrsourceRange:c_void_p = sourceRange.Ptr
432
520
  intPtrworksheet:c_void_p = worksheet.Ptr
@@ -438,15 +526,16 @@ class Worksheet ( XlsWorksheet) :
438
526
 
439
527
  def Copy(self ,sourceRange:CellRange,worksheet:'Worksheet',destRow:int,destColumn:int,copyStyle:bool,updateRerence:bool):
440
528
  """
441
- <summary>
442
529
  Copy data from source range to destination worksheet.
443
- </summary>
444
- <param name="sourceRange">Source range</param>
445
- <param name="worksheet">Destination worksheet.</param>
446
- <param name="destRow">Row index of destination worksheet.</param>
447
- <param name="destColumn">Column index of destination worksheet.</param>
448
- <param name="copyStyle">Indicates whehter copy styles.</param>
449
- <param name="updateRerence">Indicates whether update reference range.</param>
530
+
531
+ Args:
532
+ sourceRange: Source range
533
+ worksheet: Destination worksheet.
534
+ destRow: Row index of destination worksheet.
535
+ destColumn: Column index of destination worksheet.
536
+ copyStyle: Indicates whehter copy styles.
537
+ updateRerence: Indicates whether update reference range.
538
+
450
539
  """
451
540
  intPtrsourceRange:c_void_p = sourceRange.Ptr
452
541
  intPtrworksheet:c_void_p = worksheet.Ptr
@@ -458,15 +547,16 @@ class Worksheet ( XlsWorksheet) :
458
547
 
459
548
  def Copy(self ,sourceRange:CellRange,destRange:CellRange,copyStyle:bool,updateReference:bool,ignoreSize:bool,copyShape:bool):
460
549
  """
461
- <summary>
462
- Copys data from a source range to a destination range.
463
- </summary>
464
- <param name="sourceRange">Source range.</param>
465
- <param name="destRange">Destination range</param>
466
- <param name="copyStyle">Indicates whether copy styles.</param>
467
- <param name="updateReference">Indicates whether update reference ranges.</param>
468
- <param name="ignoreSize">Indicates whether check range sizes.</param>
469
- <param name="copyShape">Indicates whether copy shape.</param>
550
+ Copys data from a source range to a destination range.
551
+
552
+ Args:
553
+ sourceRange: Source range.
554
+ destRange: Destination range
555
+ copyStyle: Indicates whether copy styles.
556
+ updateReference: Indicates whether update reference ranges.
557
+ ignoreSize: Indicates whether check range sizes.
558
+ copyShape: Indicates whether copy shape.
559
+
470
560
  """
471
561
  intPtrsourceRange:c_void_p = sourceRange.Ptr
472
562
  intPtrdestRange:c_void_p = destRange.Ptr
@@ -478,12 +568,13 @@ class Worksheet ( XlsWorksheet) :
478
568
 
479
569
  def Copy(self ,sourceRange:CellRange,destRange:CellRange,copyOptions:CopyRangeOptions):
480
570
  """
481
- <summary>
482
- Copys data from a source range to a destination range.
483
- </summary>
484
- <param name="sourceRange">Source range.</param>
485
- <param name="destRange">Destination range</param>
486
- <param name="copyOptions">Copy options.</param>
571
+ Copys data from a source range to a destination range.
572
+
573
+ Args:
574
+ sourceRange: Source range.
575
+ destRange: Destination range
576
+ copyOptions: Copy options.
577
+
487
578
  """
488
579
  intPtrsourceRange:c_void_p = sourceRange.Ptr
489
580
  intPtrdestRange:c_void_p = destRange.Ptr
@@ -495,13 +586,14 @@ class Worksheet ( XlsWorksheet) :
495
586
 
496
587
  def CopyRow(self ,sourceRow:'CellRange',destSheet:'Worksheet',destRowIndex:int,copyOptions:'CopyRangeOptions'):
497
588
  """
498
- <summary>
499
- Copys data from a source row to a destination row.
500
- </summary>
501
- <param name="sourceRow">Source row.</param>
502
- <param name="destSheet">Destination sheet</param>
503
- <param name="destRowIndex">Destination row index</param>
504
- <param name="copyOptions">Copy options.</param>
589
+ Copys data from a source row to a destination row.
590
+
591
+ Args:
592
+ sourceRow: Source row.
593
+ destSheet: Destination sheet
594
+ destRowIndex: Destination row index
595
+ copyOptions: Copy options.
596
+
505
597
  """
506
598
  intPtrsourceRow:c_void_p = sourceRow.Ptr
507
599
  intPtrdestSheet:c_void_p = destSheet.Ptr
@@ -513,13 +605,14 @@ class Worksheet ( XlsWorksheet) :
513
605
 
514
606
  def CopyColumn(self ,sourceColumn:'CellRange',destSheet:'Worksheet',destColIndex:int,copyOptions:'CopyRangeOptions'):
515
607
  """
516
- <summary>
517
- Copys data from a source column to a destination column.
518
- </summary>
519
- <param name="sourceColumn">Source column.</param>
520
- <param name="destSheet">Destination sheet</param>
521
- <param name="destColIndex">Destination column index</param>
522
- <param name="copyOptions">Copy options.</param>
608
+ Copys data from a source column to a destination column.
609
+
610
+ Args:
611
+ sourceColumn: Source column.
612
+ destSheet: Destination sheet
613
+ destColIndex: Destination column index
614
+ copyOptions: Copy options.
615
+
523
616
  """
524
617
  intPtrsourceColumn:c_void_p = sourceColumn.Ptr
525
618
  intPtrdestSheet:c_void_p = destSheet.Ptr
@@ -532,11 +625,12 @@ class Worksheet ( XlsWorksheet) :
532
625
 
533
626
  def Move(self ,sourceRange:CellRange,destRange:CellRange):
534
627
  """
535
- <summary>
536
628
  Move data from source range to destination range.
537
- </summary>
538
- <param name="sourceRange">Source range.</param>
539
- <param name="destRange">Destination range.</param>
629
+
630
+ Args:
631
+ sourceRange: Source range.
632
+ destRange: Destination range.
633
+
540
634
  """
541
635
  intPtrsourceRange:c_void_p = sourceRange.Ptr
542
636
  intPtrdestRange:c_void_p = destRange.Ptr
@@ -553,8 +647,8 @@ class Worksheet ( XlsWorksheet) :
553
647
  intPtrsourceRange:c_void_p = sourceRange.Ptr
554
648
  intPtrdestRange:c_void_p = destRange.Ptr
555
649
 
556
- GetDllLibXls().Worksheet_MoveSDUC.argtypes=[c_void_p ,c_void_p,c_void_p,c_bool,c_bool]
557
- CallCFunction(GetDllLibXls().Worksheet_MoveSDUC, self.Ptr, intPtrsourceRange,intPtrdestRange,updateReference,copyStyle)
650
+ GetDllLibXls().Worksheet_MoveRS.argtypes=[c_void_p ,c_void_p,c_void_p,c_bool,c_bool]
651
+ CallCFunction(GetDllLibXls().Worksheet_MoveRS, self.Ptr, intPtrsourceRange,intPtrdestRange,updateReference,copyStyle)
558
652
 
559
653
  # @dispatch
560
654
  #
@@ -658,12 +752,15 @@ class Worksheet ( XlsWorksheet) :
658
752
 
659
753
  def GetIntersectRanges(self ,range1:'CellRange',range2:'CellRange')->'CellRange':
660
754
  """
661
- <summary>
662
755
  Intersects two ranges.
663
- </summary>
664
- <param name="range1">First range.</param>
665
- <param name="range2">Second range.</param>
666
- <returns>Intersection of two ranges</returns>
756
+
757
+ Args:
758
+ range1: First range.
759
+ range2: Second range.
760
+
761
+ Returns:
762
+ Intersection of two ranges
763
+
667
764
  """
668
765
  intPtrrange1:c_void_p = range1.Ptr
669
766
  intPtrrange2:c_void_p = range2.Ptr
@@ -693,12 +790,15 @@ class Worksheet ( XlsWorksheet) :
693
790
 
694
791
  def Merge(self ,range1:'CellRange',range2:'CellRange')->'CellRange':
695
792
  """
696
- <summary>
697
- Combines a range of cells into a single cell.
698
- </summary>
699
- <param name="range1">First range.</param>
700
- <param name="range2">Second range.</param>
701
- <returns>Merged ranges</returns>
793
+ Combines a range of cells into a single cell.
794
+
795
+ Args:
796
+ range1: First range.
797
+ range2: Second range.
798
+
799
+ Returns:
800
+ Merged ranges
801
+
702
802
  """
703
803
  intPtrrange1:c_void_p = range1.Ptr
704
804
  intPtrrange2:c_void_p = range2.Ptr
@@ -714,26 +814,25 @@ class Worksheet ( XlsWorksheet) :
714
814
 
715
815
  def SetDefaultColumnStyle(self ,columnIndex:int,defaultStyle:CellStyle):
716
816
  """
717
- <summary>
718
- Sets default style for column.
719
- <example>The following code illustrates how to set the default style for a column:
720
- <code>
721
- //Create worksheet
722
- Workbook workbook = new Workbook();
723
- Worksheet worksheet = workbook.Worksheets[0];
724
- //Create style
725
- CellStyle style = workbook.Styles.Add("CustomStyle");
726
- //Set Color
727
- style.Color = Color.Red;
728
- //Set default style
729
- worksheet.SetDefaultColumnStyle(2, style);
730
- //Save to file
731
- workbook.SaveToFile("SetDefaultColumnStyle.xlsx");
732
- </code>
733
- </example>
734
- </summary>
735
- <param name="columnIndex">Column index.</param>
736
- <param name="defaultStyle">Default style.</param>
817
+ Sets default style for column.
818
+
819
+ Args:
820
+ columnIndex: Column index.
821
+ defaultStyle: Default style.
822
+ Example::
823
+
824
+ #Create worksheet
825
+ workbook = Workbook()
826
+ worksheet = workbook.Worksheets[0]
827
+ #Create style
828
+ style = workbook.Styles.Add("CustomStyle")
829
+ #Set Color
830
+ style.Color = Color.Red
831
+ #Set default style
832
+ worksheet.SetDefaultColumnStyle(2, style)
833
+ #Save to file
834
+ workbook.SaveToFile("SetDefaultColumnStyle.xlsx")
835
+
737
836
  """
738
837
  intPtrdefaultStyle:c_void_p = defaultStyle.Ptr
739
838
 
@@ -744,57 +843,55 @@ class Worksheet ( XlsWorksheet) :
744
843
 
745
844
  def SetDefaultColumnStyle(self ,firstColumnIndex:int,lastColumnIndex:int,defaultStyle:CellStyle):
746
845
  """
747
- <summary>
748
- Sets default style for column.
749
- <example>The following code illustrates how to set the default style for columns:
750
- <code>
751
- //Create worksheet
752
- Workbook workbook = new Workbook();
753
- Worksheet worksheet = workbook.Worksheets[0];
754
- //Create style
755
- CellStyle style = workbook.Styles.Add("CustomStyle");
756
- //Set Color
757
- style.Color = Color.Red;
758
- //Set default style
759
- worksheet.SetDefaultColumnStyle(2, 5, style);
760
- //Save to file
761
- workbook.SaveToFile("SetDefaultColumnStyle.xlsx");
762
- </code>
763
- </example>
764
- </summary>
765
- <param name="firstColumnIndex">First column index.</param>
766
- <param name="lastColumnIndex">Last column index.</param>
767
- <param name="defaultStyle">Default style.</param>
846
+ Sets default style for column.
847
+
848
+ Args:
849
+ firstColumnIndex: First column index.
850
+ lastColumnIndex: Last column index.
851
+ defaultStyle: Default style.
852
+ Example::
853
+
854
+ #Create worksheet
855
+ workbook = Workbook()
856
+ worksheet = workbook.Worksheets[0]
857
+ #Create style
858
+ style = workbook.Styles.Add("CustomStyle")
859
+ #Set Color
860
+ style.Color = Color.Red
861
+ #Set default style
862
+ worksheet.SetDefaultColumnStyle(2, 5, style)
863
+ #Save to file
864
+ workbook.SaveToFile("SetDefaultColumnStyle.xlsx")
865
+
768
866
  """
769
867
  intPtrdefaultStyle:c_void_p = defaultStyle.Ptr
770
868
 
771
- GetDllLibXls().Worksheet_SetDefaultColumnStyleFLD.argtypes=[c_void_p ,c_int,c_int,c_void_p]
772
- CallCFunction(GetDllLibXls().Worksheet_SetDefaultColumnStyleFLD, self.Ptr, firstColumnIndex,lastColumnIndex,intPtrdefaultStyle)
869
+ GetDllLibXls().Worksheet_SetDefaultColumnStyleFL.argtypes=[c_void_p ,c_int,c_int,c_void_p]
870
+ CallCFunction(GetDllLibXls().Worksheet_SetDefaultColumnStyleFL, self.Ptr, firstColumnIndex,lastColumnIndex,intPtrdefaultStyle)
773
871
 
774
872
  @dispatch
775
873
 
776
874
  def SetDefaultRowStyle(self ,rowIndex:int,defaultStyle:CellStyle):
777
875
  """
778
- <summary>
779
- Sets default style for row.
780
- <example>The following code illustrates how to set the default style for a row:
781
- <code>
782
- //Create worksheet
783
- Workbook workbook = new Workbook();
784
- Worksheet worksheet = workbook.Worksheets[0];
785
- //Create style
786
- CellStyle style = workbook.Styles.Add("CustomStyle");
787
- //Set Color
788
- style.Color = Color.Red;
789
- //Set default style
790
- worksheet.SetDefaultRowStyle(2, style);
791
- //Save to file
792
- workbook.SaveToFile("SetDefaultRowStyle.xlsx");
793
- </code>
794
- </example>
795
- </summary>
796
- <param name="rowIndex">Row index.</param>
797
- <param name="defaultStyle">Default style.</param>
876
+ Sets default style for row.
877
+
878
+ Args:
879
+ rowIndex: Row index.
880
+ defaultStyle: Default style.
881
+ Example::
882
+
883
+ #Create worksheet
884
+ workbook = Workbook()
885
+ worksheet = workbook.Worksheets[0]
886
+ #Create style
887
+ style = workbook.Styles.Add("CustomStyle")
888
+ #Set Color
889
+ style.Color = Color.Red
890
+ #Set default style
891
+ worksheet.SetDefaultRowStyle(2, style)
892
+ #Save to file
893
+ workbook.SaveToFile("SetDefaultRowStyle.xlsx")
894
+
798
895
  """
799
896
  intPtrdefaultStyle:c_void_p = defaultStyle.Ptr
800
897
 
@@ -805,61 +902,61 @@ class Worksheet ( XlsWorksheet) :
805
902
 
806
903
  def SetDefaultRowStyle(self ,firstRowIndex:int,lastRowIndex:int,defaultStyle:CellStyle):
807
904
  """
808
- <summary>
809
- Sets default style for row.
810
- <example>The following code illustrates how to set the default style for rows:
811
- <code>
812
- //Create worksheet
813
- Workbook workbook = new Workbook();
814
- Worksheet worksheet = workbook.Worksheets[0];
815
- //Create style
816
- CellStyle style = workbook.Styles.Add("CustomStyle");
817
- //Set Color
818
- style.Color = Color.Red;
819
- //Set default style
820
- worksheet.SetDefaultRowStyle(2, 5, style);
821
- //Save to file
822
- workbook.SaveToFile("SetDefaultRowStyle.xlsx");
823
- </code>
824
- </example>
825
- </summary>
826
- <param name="firstRowIndex">First row index.</param>
827
- <param name="lastRowIndex">Last row index.</param>
828
- <param name="defaultStyle">Default style.</param>
905
+ Sets default style for row.
906
+
907
+ Args:
908
+ firstRowIndex: First row index.
909
+ lastRowIndex: Last row index.
910
+ defaultStyle: Default style.
911
+ Example::
912
+
913
+ #Create worksheet
914
+ workbook = Workbook()
915
+ worksheet = workbook.Worksheets[0]
916
+ #Create style
917
+ style = workbook.Styles.Add("CustomStyle")
918
+ #Set Color
919
+ style.Color = Color.Red
920
+ #Set default style
921
+ worksheet.SetDefaultRowStyle(2, 5, style)
922
+ #Save to file
923
+ workbook.SaveToFile("SetDefaultRowStyle.xlsx")
924
+
829
925
  """
830
926
  intPtrdefaultStyle:c_void_p = defaultStyle.Ptr
831
927
 
832
- GetDllLibXls().Worksheet_SetDefaultRowStyleFLD.argtypes=[c_void_p ,c_int,c_int,c_void_p]
833
- CallCFunction(GetDllLibXls().Worksheet_SetDefaultRowStyleFLD, self.Ptr, firstRowIndex,lastRowIndex,intPtrdefaultStyle)
928
+ GetDllLibXls().Worksheet_SetDefaultRowStyleFL.argtypes=[c_void_p ,c_int,c_int,c_void_p]
929
+ CallCFunction(GetDllLibXls().Worksheet_SetDefaultRowStyleFL, self.Ptr, firstRowIndex,lastRowIndex,intPtrdefaultStyle)
834
930
 
835
931
 
836
932
  def GetDefaultColumnStyle(self ,columnIndex:int)->'CellStyle':
837
933
  """
838
- <summary>
839
- Returns default column style.
840
- <example>The following code illustrates how to get default column style:
841
- <code>
842
- //Create worksheet
843
- Workbook workbook = new Workbook();
844
- Worksheet worksheet = workbook.Worksheets[0];
845
- //Create style
846
- CellStyle style = workbook.Styles.Add("CustomStyle");
847
- //Set Color
848
- style.Color = Color.Red;
849
- //Set default style
850
- worksheet.SetDefaultColumnStyle(2,style);
851
- //Get default style
852
- CellStyle defaultStyle = worksheet.GetDefaultColumnStyle(2);
853
- //Set color
854
- defaultStyle.Color = Color.Blue;
855
- worksheet.SetDefaultColumnStyle(3, defaultStyle);
856
- //Save to file
857
- workbook.SaveToFile("GetDefaultColumnStyle.xlsx");
858
- </code>
859
- </example>
860
- </summary>
861
- <param name="columnIndex">Column index.</param>
862
- <returns>Default column style or null if default style is not exists.</returns>
934
+ Returns default column style.
935
+
936
+ Args:
937
+ columnIndex: Column index.
938
+
939
+ Returns:
940
+ Default column style or null if default style is not exists.
941
+ Example::
942
+
943
+ #Create worksheet
944
+ workbook = Workbook()
945
+ worksheet = workbook.Worksheets[0]
946
+ #Create style
947
+ style = workbook.Styles.Add("CustomStyle")
948
+ #Set Color
949
+ style.Color = Color.Red
950
+ #Set default style
951
+ worksheet.SetDefaultColumnStyle(2,style)
952
+ #Get default style
953
+ defaultStyle = worksheet.GetDefaultColumnStyle(2)
954
+ #Set color
955
+ defaultStyle.Color = Color.Blue
956
+ worksheet.SetDefaultColumnStyle(3, defaultStyle)
957
+ #Save to file
958
+ workbook.SaveToFile("GetDefaultColumnStyle.xlsx")
959
+
863
960
  """
864
961
 
865
962
  GetDllLibXls().Worksheet_GetDefaultColumnStyle.argtypes=[c_void_p ,c_int]
@@ -872,31 +969,32 @@ class Worksheet ( XlsWorksheet) :
872
969
 
873
970
  def GetDefaultRowStyle(self ,rowIndex:int)->'CellStyle':
874
971
  """
875
- <summary>
876
- Returns default row style.
877
- <example>The following code illustrates how to get default row style:
878
- <code>
879
- //Create worksheet
880
- Workbook workbook = new Workbook();
881
- Worksheet worksheet = workbook.Worksheets[0];
882
- //Create style
883
- CellStyle style = workbook.Styles.Add("CustomStyle");
884
- //Set Color
885
- style.Color = Color.Red;
886
- //Set default style
887
- worksheet.SetDefaultRowStyle(2,style);
888
- //Get default style
889
- CellStyle defaultStyle = worksheet.GetDefaultRowStyle(2);
890
- //Set color
891
- defaultStyle.Color = Color.Blue;
892
- worksheet.SetDefaultRowStyle(3, defaultStyle);
893
- //Save to file
894
- workbook.SaveToFile("GetDefaultColumnStyle.xlsx");
895
- </code>
896
- </example>
897
- </summary>
898
- <param name="rowIndex">Row index.</param>
899
- <returns>Default row style or null if default style is not set.</returns>
972
+ Returns default row style.
973
+
974
+ Args:
975
+ rowIndex: Row index.
976
+
977
+ Returns:
978
+ Default row style or null if default style is not set.
979
+ Example::
980
+
981
+ #Create worksheet
982
+ workbook = Workbook()
983
+ worksheet = workbook.Worksheets[0]
984
+ #Create style
985
+ style = workbook.Styles.Add("CustomStyle")
986
+ #Set Color
987
+ style.Color = Color.Red
988
+ #Set default style
989
+ worksheet.SetDefaultRowStyle(2,style)
990
+ #Get default style
991
+ defaultStyle = worksheet.GetDefaultRowStyle(2)
992
+ #Set color
993
+ defaultStyle.Color = Color.Blue
994
+ worksheet.SetDefaultRowStyle(3, defaultStyle)
995
+ #Save to file
996
+ workbook.SaveToFile("GetDefaultColumnStyle.xlsx")
997
+
900
998
  """
901
999
 
902
1000
  GetDllLibXls().Worksheet_GetDefaultRowStyle.argtypes=[c_void_p ,c_int]
@@ -920,10 +1018,11 @@ class Worksheet ( XlsWorksheet) :
920
1018
 
921
1019
  def RemoveRange(self ,range:CellRange):
922
1020
  """
923
- <summary>
924
1021
  Removes range from list.
925
- </summary>
926
- <param name="range">Specified range.</param>
1022
+
1023
+ Args:
1024
+ range: Specified range.
1025
+
927
1026
  """
928
1027
  intPtrrange:c_void_p = range.Ptr
929
1028
 
@@ -934,50 +1033,54 @@ class Worksheet ( XlsWorksheet) :
934
1033
 
935
1034
  def RemoveRange(self ,rowIndex:int,columnIndex:int):
936
1035
  """
937
- <summary>
938
1036
  Removes range from list.
939
- </summary>
940
- <param name="rowIndex">Row index.</param>
941
- <param name="columnIndex">Column index.</param>
1037
+
1038
+ Args:
1039
+ rowIndex: Row index.
1040
+ columnIndex: Column index.
1041
+
942
1042
  """
943
1043
 
944
- GetDllLibXls().Worksheet_RemoveRangeRC.argtypes=[c_void_p ,c_int,c_int]
945
- CallCFunction(GetDllLibXls().Worksheet_RemoveRangeRC, self.Ptr, rowIndex,columnIndex)
1044
+ GetDllLibXls().Worksheet_RemoveRangeI.argtypes=[c_void_p ,c_int,c_int]
1045
+ CallCFunction(GetDllLibXls().Worksheet_RemoveRangeI, self.Ptr, rowIndex,columnIndex)
946
1046
 
947
1047
  @dispatch
948
1048
 
949
1049
  def RemovePicture(self ,index:int):
950
1050
  """
951
- <summary>
952
1051
  Remove picture from this worksheet.
953
- </summary>
954
- <param name="index">Picture ID</param>
1052
+
1053
+ Args:
1054
+ index: Picture ID
1055
+
955
1056
  """
956
1057
 
957
- GetDllLibXls().Worksheet_RemovePicture.argtypes=[c_void_p ,c_int]
958
- CallCFunction(GetDllLibXls().Worksheet_RemovePicture, self.Ptr, index)
1058
+ GetDllLibXls().Worksheet_RemovePictureI.argtypes=[c_void_p ,c_int]
1059
+ CallCFunction(GetDllLibXls().Worksheet_RemovePictureI, self.Ptr, index)
959
1060
 
960
1061
  @dispatch
961
1062
 
962
1063
  def RemovePicture(self ,picturename:str):
963
1064
  """
964
- <summary>
965
1065
  Remove picture from this worksheet.
966
- </summary>
967
- <param name="picturename">Picture name</param>
1066
+
1067
+ Args:
1068
+ picturename: Picture name
1069
+
968
1070
  """
969
1071
 
970
- GetDllLibXls().Worksheet_RemovePictureP.argtypes=[c_void_p ,c_void_p]
971
- CallCFunction(GetDllLibXls().Worksheet_RemovePictureP, self.Ptr, picturename)
1072
+ GetDllLibXls().Worksheet_RemovePictureN.argtypes=[c_void_p ,c_void_p]
1073
+ CallCFunction(GetDllLibXls().Worksheet_RemovePictureN, self.Ptr, picturename)
972
1074
 
973
1075
  @dispatch
974
1076
 
975
1077
  def RemovePicture(self ,picture:IPictureShape):
976
1078
  """
977
- <summary>
978
1079
  Remove picture from this worksheet.
979
- </summary>
980
- <param name="picture">A pictureshape</param>
1080
+
1081
+ Args:
1082
+ picture: A pictureshape
1083
+
981
1084
  """
982
1085
  intPtrpicture:c_void_p = picture.Ptr
983
1086
 
@@ -987,10 +1090,11 @@ class Worksheet ( XlsWorksheet) :
987
1090
 
988
1091
  def ApplyStyle(self ,style:'CellStyle'):
989
1092
  """
990
- <summary>
991
1093
  Apply style to whole sheet.
992
- </summary>
993
- <param name="style">style to apply</param>
1094
+
1095
+ Args:
1096
+ style: style to apply
1097
+
994
1098
  """
995
1099
  intPtrstyle:c_void_p = style.Ptr
996
1100
 
@@ -1000,11 +1104,12 @@ class Worksheet ( XlsWorksheet) :
1000
1104
 
1001
1105
  def FreezePanes(self ,rowIndex:int,columnIndex:int):
1002
1106
  """
1003
- <summary>
1004
- Freezes panes at the specified cell in the worksheet.
1005
- </summary>
1006
- <param name="rowIndex">Row index.</param>
1007
- <param name="columnIndex">Column index.</param>
1107
+ Freezes panes at the specified cell in the worksheet.
1108
+
1109
+ Args:
1110
+ rowIndex: Row index.
1111
+ columnIndex: Column index.
1112
+
1008
1113
  """
1009
1114
 
1010
1115
  GetDllLibXls().Worksheet_FreezePanes.argtypes=[c_void_p ,c_int,c_int]
@@ -1026,10 +1131,11 @@ class Worksheet ( XlsWorksheet) :
1026
1131
 
1027
1132
  def SetActiveCell(self ,range:'CellRange'):
1028
1133
  """
1029
- <summary>
1030
1134
  Sets active cell
1031
- </summary>
1032
- <param name="range">Cell to activate.</param>
1135
+
1136
+ Args:
1137
+ range: Cell to activate.
1138
+
1033
1139
  """
1034
1140
  intPtrrange:c_void_p = range.Ptr
1035
1141
 
@@ -1040,9 +1146,8 @@ class Worksheet ( XlsWorksheet) :
1040
1146
 
1041
1147
  def Cells(self)->'ListCellRanges':
1042
1148
  """
1043
- <summary>
1044
1149
  Returns all used cells in the worksheet. Read-only.
1045
- </summary>
1150
+
1046
1151
  """
1047
1152
  GetDllLibXls().Worksheet_get_Cells.argtypes=[c_void_p]
1048
1153
  GetDllLibXls().Worksheet_get_Cells.restype=c_void_p
@@ -1055,9 +1160,8 @@ class Worksheet ( XlsWorksheet) :
1055
1160
 
1056
1161
  def Columns(self)->'ListCellRanges':
1057
1162
  """
1058
- <summary>
1059
1163
  Rrepresents all used columns on the specified worksheet. Read-only Range object.
1060
- </summary>
1164
+
1061
1165
  """
1062
1166
  GetDllLibXls().Worksheet_get_Columns.argtypes=[c_void_p]
1063
1167
  GetDllLibXls().Worksheet_get_Columns.restype=c_void_p
@@ -1070,10 +1174,8 @@ class Worksheet ( XlsWorksheet) :
1070
1174
 
1071
1175
  def PageSetup(self)->'PageSetup':
1072
1176
  """
1073
- <summary>
1074
- Returns a PageSetup object that contains all the page setup settings
1075
- for the specified object. Read-only.
1076
- </summary>
1177
+ Returns a PageSetup object that contains all the page setup settings for the specified object. Read-only.
1178
+
1077
1179
  """
1078
1180
  GetDllLibXls().Worksheet_get_PageSetup.argtypes=[c_void_p]
1079
1181
  GetDllLibXls().Worksheet_get_PageSetup.restype=c_void_p
@@ -1099,9 +1201,8 @@ class Worksheet ( XlsWorksheet) :
1099
1201
 
1100
1202
  def Charts(self)->'WorksheetChartsCollection':
1101
1203
  """
1102
- <summary>
1103
1204
  Returns charts collection. Read-only.
1104
- </summary>
1205
+
1105
1206
  """
1106
1207
  GetDllLibXls().Worksheet_get_Charts.argtypes=[c_void_p]
1107
1208
  GetDllLibXls().Worksheet_get_Charts.restype=c_void_p
@@ -1127,26 +1228,23 @@ class Worksheet ( XlsWorksheet) :
1127
1228
 
1128
1229
  def Comments(self)->'CommentsCollection':
1129
1230
  """
1130
- <summary>
1131
- Returns comments collection for this worksheet. Read-only.
1132
- <example>The following code illustrates how to access the comments collection in the worksheet:
1133
- <code>
1134
- //Create worksheet
1135
- Workbook workbook = new Workbook();
1136
- Worksheet worksheet = workbook.Worksheets[0];
1137
- //Adding comments to a cell.
1138
- ICommentShape comment1 = worksheet.Range["A1"].AddComment();
1139
- ICommentShape comment2 = worksheet.Range["B1"].AddComment();
1140
- //Set comment text
1141
- comment1.Text = "Comment1";
1142
- comment2.Text = "Comment2";
1143
- //Check count
1144
- Console.Write(worksheet.Comments.Count);
1145
- //Save to file
1146
- workbook.SaveToFile("Comments.xlsx");
1147
- </code>
1148
- </example>
1149
- </summary>
1231
+ Returns comments collection for this worksheet. Read-only.
1232
+ Example::
1233
+
1234
+ #Create worksheet
1235
+ workbook = Workbook()
1236
+ worksheet = workbook.Worksheets[0]
1237
+ #Adding comments to a cell.
1238
+ comment1 = worksheet.Range["A1"].AddComment()
1239
+ comment2 = worksheet.Range["B1"].AddComment()
1240
+ #Set comment text
1241
+ comment1.Text = "Comment1"
1242
+ comment2.Text = "Comment2"
1243
+ #Check count
1244
+ Console.Write(worksheet.Comments.Count)
1245
+ #Save to file
1246
+ workbook.SaveToFile("Comments.xlsx")
1247
+
1150
1248
  """
1151
1249
  GetDllLibXls().Worksheet_get_Comments.argtypes=[c_void_p]
1152
1250
  GetDllLibXls().Worksheet_get_Comments.restype=c_void_p
@@ -1159,10 +1257,8 @@ class Worksheet ( XlsWorksheet) :
1159
1257
 
1160
1258
  def HPageBreaks(self)->'HPageBreaksCollection':
1161
1259
  """
1162
- <summary>
1163
- Returns an HPageBreaks collection that represents the horizontal
1164
- page breaks on the sheet.
1165
- </summary>
1260
+ Returns an HPageBreaks collection that represents the horizontal page breaks on the sheet.
1261
+
1166
1262
  """
1167
1263
  GetDllLibXls().Worksheet_get_HPageBreaks.argtypes=[c_void_p]
1168
1264
  GetDllLibXls().Worksheet_get_HPageBreaks.restype=c_void_p
@@ -1175,9 +1271,8 @@ class Worksheet ( XlsWorksheet) :
1175
1271
 
1176
1272
  def HyperLinks(self)->'HyperLinksCollection':
1177
1273
  """
1178
- <summary>
1179
1274
  Collection of all worksheet's hyperlinks.
1180
- </summary>
1275
+
1181
1276
  """
1182
1277
  GetDllLibXls().Worksheet_get_HyperLinks.argtypes=[c_void_p]
1183
1278
  GetDllLibXls().Worksheet_get_HyperLinks.restype=c_void_p
@@ -1190,9 +1285,8 @@ class Worksheet ( XlsWorksheet) :
1190
1285
 
1191
1286
  def Pictures(self)->'PicturesCollection':
1192
1287
  """
1193
- <summary>
1194
1288
  Pictures collection. Read-only.
1195
- </summary>
1289
+
1196
1290
  """
1197
1291
  GetDllLibXls().Worksheet_get_Pictures.argtypes=[c_void_p]
1198
1292
  GetDllLibXls().Worksheet_get_Pictures.restype=c_void_p
@@ -1205,9 +1299,8 @@ class Worksheet ( XlsWorksheet) :
1205
1299
 
1206
1300
  def PrintRange(self)->'CellRange':
1207
1301
  """
1208
- <summary>
1209
1302
  Print area of worksheet.
1210
- </summary>
1303
+
1211
1304
  """
1212
1305
  GetDllLibXls().Worksheet_get_PrintRange.argtypes=[c_void_p]
1213
1306
  GetDllLibXls().Worksheet_get_PrintRange.restype=c_void_p
@@ -1220,10 +1313,8 @@ class Worksheet ( XlsWorksheet) :
1220
1313
 
1221
1314
  def VPageBreaks(self)->'VPageBreaksCollection':
1222
1315
  """
1223
- <summary>
1224
- Returns a VPageBreaks collection that represents the vertical page
1225
- breaks on the sheet. Read-only.
1226
- </summary>
1316
+ Returns a VPageBreaks collection that represents the vertical page breaks on the sheet. Read-only.
1317
+
1227
1318
  """
1228
1319
  GetDllLibXls().Worksheet_get_VPageBreaks.argtypes=[c_void_p]
1229
1320
  GetDllLibXls().Worksheet_get_VPageBreaks.restype=c_void_p
@@ -1236,25 +1327,21 @@ class Worksheet ( XlsWorksheet) :
1236
1327
 
1237
1328
  def Range(self)->'CellRange':
1238
1329
  """
1239
- <summary>
1240
- Returns a Range object that represents the used range on the
1241
- specified worksheet. Read-only.
1242
- <example>The following code illustrates how to get used range on the specified worksheet:
1243
- <code>
1244
- //Create worksheet
1245
- Workbook workbook = new Workbook();
1246
- Worksheet worksheet = workbook.Worksheets[0];
1247
- //Set text
1248
- worksheet["B2"].Text = "Text";
1249
- //Set Color
1250
- worksheet["J3"].Style.Color = Color.Red;
1251
- //Get used range . Output will be B2:J3
1252
- Console.Write(worksheet.Range.RangeAddressLocal);
1253
- //Save to file
1254
- workbook.SaveToFile("UsedRange.xlsx");
1255
- </code>
1256
- </example>
1257
- </summary>
1330
+ Returns a Range object that represents the used range on the specified worksheet. Read-only.
1331
+ Example::
1332
+
1333
+ #Create worksheet
1334
+ workbook = Workbook()
1335
+ worksheet = workbook.Worksheets[0]
1336
+ #Set text
1337
+ worksheet["B2"].Text = "Text"
1338
+ #Set Color
1339
+ worksheet["J3"].Style.Color = Color.Red
1340
+ #Get used range . Output will be B2:J3
1341
+ Console.Write(worksheet.Range.RangeAddressLocal)
1342
+ #Save to file
1343
+ workbook.SaveToFile("UsedRange.xlsx")
1344
+
1258
1345
  """
1259
1346
  GetDllLibXls().Worksheet_get_Range.argtypes=[c_void_p]
1260
1347
  GetDllLibXls().Worksheet_get_Range.restype=c_void_p
@@ -1278,9 +1365,8 @@ class Worksheet ( XlsWorksheet) :
1278
1365
 
1279
1366
  def Rows(self)->'ListCellRanges':
1280
1367
  """
1281
- <summary>
1282
1368
  Represents all the rows on the specified worksheet. Read-only Range object.
1283
- </summary>
1369
+
1284
1370
  """
1285
1371
  GetDllLibXls().Worksheet_get_Rows.argtypes=[c_void_p]
1286
1372
  GetDllLibXls().Worksheet_get_Rows.restype=c_void_p