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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1032) hide show
  1. spire/xls/AddtionalFormatWrapper.py +98 -117
  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 +305 -269
  6. spire/xls/CellStyle.py +26 -12
  7. spire/xls/CellStyleFlag.py +181 -58
  8. spire/xls/CellStyleObject.py +36 -67
  9. spire/xls/CellValueChangedEventArgs.py +3 -9
  10. spire/xls/ColorScale.py +31 -39
  11. spire/xls/CommentsRange.py +185 -84
  12. spire/xls/CommonWrapper.py +23 -8
  13. spire/xls/ConverterSetting.py +19 -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 +86 -38
  18. spire/xls/Excel2016Charttype.py +14 -2
  19. spire/xls/ExcelComment.py +1 -2
  20. spire/xls/ExcelCommentObject.py +206 -121
  21. spire/xls/ExcelFont.py +74 -59
  22. spire/xls/ExcelGradient.py +68 -24
  23. spire/xls/ExcelInterior.py +49 -20
  24. spire/xls/ExportTableOptions.py +33 -10
  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 +95 -42
  29. spire/xls/FontArrayWrapper.py +135 -36
  30. spire/xls/FontWrapper.py +194 -92
  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 +74 -24
  38. spire/xls/GradientType.py +10 -2
  39. spire/xls/GroupShape.py +1 -2
  40. spire/xls/HPageBreak.py +1 -2
  41. spire/xls/HTMLOptions.py +7 -19
  42. spire/xls/HyperLink.py +1 -2
  43. spire/xls/LOGFONT.py +78 -30
  44. spire/xls/OColor.py +62 -29
  45. spire/xls/OdsPageBackground.py +5 -10
  46. spire/xls/PageColRow.py +21 -10
  47. spire/xls/PageSetup.py +2 -3
  48. spire/xls/PaperSizeEntry.py +6 -0
  49. spire/xls/PicStretch.py +47 -14
  50. spire/xls/PicTile.py +35 -10
  51. spire/xls/QueryTableXls.py +19 -6
  52. spire/xls/RTFCommentArray.py +59 -22
  53. spire/xls/RTFStringArray.py +59 -22
  54. spire/xls/RangeRichTextString.py +20 -8
  55. spire/xls/ReferRangeArea.py +39 -16
  56. spire/xls/RichText.py +10 -8
  57. spire/xls/RichTextObject.py +63 -32
  58. spire/xls/RichTextShape.py +88 -32
  59. spire/xls/RichTextString.py +61 -24
  60. spire/xls/RtfTextWriter.py +68 -22
  61. spire/xls/SaveShapeTypeOption.py +19 -37
  62. spire/xls/ShapeGlow.py +34 -14
  63. spire/xls/ShapeReflection.py +55 -18
  64. spire/xls/StyleArrayWrapper.py +169 -78
  65. spire/xls/TextBoxShapeBase.py +63 -30
  66. spire/xls/TextSaveOptions.py +33 -18
  67. spire/xls/TopBottom.py +18 -6
  68. spire/xls/VPageBreak.py +3 -5
  69. spire/xls/Validation.py +12 -6
  70. spire/xls/WebQueryConnection.py +52 -20
  71. spire/xls/Workbook.py +810 -841
  72. spire/xls/Worksheet.py +444 -409
  73. spire/xls/WriteProtection.py +3 -6
  74. spire/xls/XlsAddInFunction.py +34 -20
  75. spire/xls/XlsArcShape.py +156 -40
  76. spire/xls/XlsBitmapShape.py +141 -43
  77. spire/xls/XlsBorder.py +72 -31
  78. spire/xls/XlsBorderArrayWrapper.py +50 -14
  79. spire/xls/XlsButtonShape.py +58 -16
  80. spire/xls/XlsCheckBoxShape.py +72 -18
  81. spire/xls/XlsComboBoxShape.py +53 -16
  82. spire/xls/XlsComment.py +108 -30
  83. spire/xls/XlsDataValidationTable.py +43 -16
  84. spire/xls/XlsDocumentProperty.py +163 -44
  85. spire/xls/XlsEventArgs.py +33 -24
  86. spire/xls/XlsEventHandler.py +10 -4
  87. spire/xls/XlsFill.py +64 -20
  88. spire/xls/XlsFont.py +182 -52
  89. spire/xls/XlsGradient.py +90 -26
  90. spire/xls/XlsGradientStop.py +57 -12
  91. spire/xls/XlsGroupBoxShape.py +36 -10
  92. spire/xls/XlsHPageBreak.py +47 -24
  93. spire/xls/XlsHyperLink.py +111 -42
  94. spire/xls/XlsLabelShape.py +27 -8
  95. spire/xls/XlsLineShape.py +188 -48
  96. spire/xls/XlsListBoxShape.py +63 -14
  97. spire/xls/XlsName.py +767 -318
  98. spire/xls/XlsObject.py +2 -4
  99. spire/xls/XlsOvalShape.py +78 -20
  100. spire/xls/XlsPageSetup.py +67 -34
  101. spire/xls/XlsPageSetupBase.py +29 -58
  102. spire/xls/XlsPrstGeomShape.py +29 -10
  103. spire/xls/XlsRadioButtonShape.py +94 -22
  104. spire/xls/XlsRange.py +881 -1077
  105. spire/xls/XlsRectangleShape.py +69 -22
  106. spire/xls/XlsScrollBarShape.py +78 -18
  107. spire/xls/XlsShape.py +391 -180
  108. spire/xls/XlsShapeFill.py +398 -92
  109. spire/xls/XlsShapeLineFormat.py +201 -44
  110. spire/xls/XlsSpinnerShape.py +57 -14
  111. spire/xls/XlsStyle.py +51 -20
  112. spire/xls/XlsTextBoxShape.py +263 -60
  113. spire/xls/XlsVPageBreak.py +9 -14
  114. spire/xls/XlsValidation.py +318 -68
  115. spire/xls/XlsValidationWrapper.py +217 -49
  116. spire/xls/XlsWorkbook.py +529 -65
  117. spire/xls/XlsWorksheet.py +1211 -1128
  118. spire/xls/XlsWorksheetBase.py +243 -168
  119. spire/xls/__init__.py +529 -528
  120. spire/xls/autofilter/AutoFitterOptions.py +84 -0
  121. spire/xls/autofilter/ColorFilter.py +61 -0
  122. spire/xls/autofilter/CustomFilter.py +199 -0
  123. spire/xls/autofilter/CustomFilterCollection.py +146 -0
  124. spire/xls/autofilter/DateTimeGroupItem.py +196 -0
  125. spire/xls/autofilter/DynamicFilter.py +89 -0
  126. spire/xls/autofilter/FilterColumn.py +289 -0
  127. spire/xls/autofilter/MultipleFilterCollection.py +218 -0
  128. spire/xls/autofilter/Top10Filter.py +109 -0
  129. spire/xls/autofilter/XlsAutoFiltersCollection.py +145 -0
  130. spire/xls/charts/Chart.py +369 -0
  131. spire/xls/charts/ChartArea.py +57 -0
  132. spire/xls/charts/ChartBackgroundMode.py +17 -0
  133. spire/xls/charts/ChartCategoryAxis.py +88 -0
  134. spire/xls/charts/ChartDataLabels.py +40 -0
  135. spire/xls/charts/ChartDataPoint.py +40 -0
  136. spire/xls/charts/ChartFormat.py +68 -0
  137. spire/xls/charts/ChartGridLine.py +26 -0
  138. spire/xls/charts/ChartLegend.py +40 -0
  139. spire/xls/charts/ChartLegendEntriesColl.py +165 -0
  140. spire/xls/charts/ChartLegendEntry.py +26 -0
  141. spire/xls/charts/ChartPlotArea.py +60 -0
  142. spire/xls/charts/ChartSerie.py +147 -0
  143. spire/xls/charts/ChartSerieDataFormat.py +54 -0
  144. spire/xls/charts/ChartSeriesAxis.py +68 -0
  145. spire/xls/charts/ChartShadow.py +288 -0
  146. spire/xls/charts/ChartSheet.py +269 -0
  147. spire/xls/charts/ChartTextArea.py +898 -0
  148. spire/xls/charts/ChartValueAxis.py +90 -0
  149. spire/xls/charts/HistogramAxisFormat.py +32 -0
  150. spire/xls/charts/XlsChart.py +1667 -0
  151. spire/xls/charts/XlsChartAxis.py +596 -0
  152. spire/xls/charts/XlsChartBorder.py +180 -0
  153. spire/xls/charts/XlsChartCategoryAxis.py +640 -0
  154. spire/xls/charts/XlsChartDataLabelArea.py +368 -0
  155. spire/xls/charts/XlsChartDataLabels.py +702 -0
  156. spire/xls/charts/XlsChartDataPoint.py +105 -0
  157. spire/xls/charts/XlsChartDataTable.py +373 -0
  158. spire/xls/charts/XlsChartDropBar.py +295 -0
  159. spire/xls/charts/XlsChartFill.py +659 -0
  160. spire/xls/charts/XlsChartFormat.py +1229 -0
  161. spire/xls/charts/XlsChartFrameFormat.py +612 -0
  162. spire/xls/charts/XlsChartGridLine.py +167 -0
  163. spire/xls/charts/XlsChartInterior.py +229 -0
  164. spire/xls/charts/XlsChartLegend.py +334 -0
  165. spire/xls/charts/XlsChartLegendArea.py +418 -0
  166. spire/xls/charts/XlsChartLegendEntry.py +152 -0
  167. spire/xls/charts/XlsChartSerie.py +607 -0
  168. spire/xls/charts/XlsChartSerieDataFormat.py +1070 -0
  169. spire/xls/charts/XlsChartSeriesAxis.py +306 -0
  170. spire/xls/charts/XlsChartShape.py +1256 -0
  171. spire/xls/charts/XlsChartTitleArea.py +399 -0
  172. spire/xls/charts/XlsChartValueAxis.py +344 -0
  173. spire/xls/charts/XlsChartWallOrFloor.py +349 -0
  174. spire/xls/charts/__init__.py +0 -0
  175. spire/xls/collection/AddInFunctionsCollection.py +31 -0
  176. spire/xls/collection/ArcShapeCollection.py +94 -0
  177. spire/xls/collection/AutoFiltersCollection.py +538 -0
  178. spire/xls/collection/BordersCollection.py +196 -0
  179. spire/xls/collection/BordersCollectionArrayWrapper.py +129 -0
  180. spire/xls/collection/BuiltInDocumentProperties.py +12 -0
  181. spire/xls/collection/ChartDataPointsCollection.py +72 -0
  182. spire/xls/collection/ChartFormatCollection.py +58 -0
  183. spire/xls/collection/ChartSeries.py +187 -0
  184. spire/xls/collection/ChartsCollection.py +119 -0
  185. spire/xls/collection/CollectionBase.py +201 -0
  186. spire/xls/collection/CollectionExtended.py +96 -0
  187. spire/xls/collection/ComboBoxCollection.py +89 -0
  188. spire/xls/collection/CommentsCollection.py +134 -0
  189. spire/xls/collection/GroupShapeCollection.py +45 -0
  190. spire/xls/collection/HPageBreaksCollection.py +116 -0
  191. spire/xls/collection/HyperLinksCollection.py +72 -0
  192. spire/xls/collection/ListObjectCollection.py +48 -0
  193. spire/xls/collection/OvalShapeCollection.py +89 -0
  194. spire/xls/collection/PicturesCollection.py +574 -0
  195. spire/xls/collection/PrstGeomShapeCollection.py +128 -0
  196. spire/xls/collection/RadioButtonCollection.py +139 -0
  197. spire/xls/collection/RangesCollection.py +555 -0
  198. spire/xls/collection/StylesCollection.py +140 -0
  199. spire/xls/collection/VPageBreaksCollection.py +95 -0
  200. spire/xls/collection/WorksheetsCollection.py +363 -0
  201. spire/xls/collection/XlsAddInFunctionsCollection.py +108 -0
  202. spire/xls/collection/XlsBordersCollection.py +98 -0
  203. spire/xls/collection/XlsBuiltInDocumentProperties.py +611 -0
  204. spire/xls/collection/XlsChartDataPointsCollection.py +119 -0
  205. spire/xls/collection/XlsChartFormatCollection.py +160 -0
  206. spire/xls/collection/XlsCommentsCollection.py +116 -0
  207. spire/xls/collection/XlsDataValidationCollection.py +155 -0
  208. spire/xls/collection/XlsHPageBreaksCollection.py +87 -0
  209. spire/xls/collection/XlsHyperLinksCollection.py +104 -0
  210. spire/xls/collection/XlsRangesCollection.py +1634 -0
  211. spire/xls/collection/XlsStylesCollection.py +74 -0
  212. spire/xls/collection/XlsVPageBreaksCollection.py +81 -0
  213. spire/xls/collection/XlsWorksheetsCollection.py +423 -0
  214. spire/xls/collection/__init__.py +0 -0
  215. spire/xls/collection/pivot_table/PivotConditionalFormatCollection.py +38 -0
  216. spire/xls/collection/pivot_table/PivotTableFields.py +108 -0
  217. spire/xls/collection/pivot_table/XlsPivotCachesCollection.py +123 -0
  218. spire/xls/collection/pivot_table/__init__.py +0 -0
  219. spire/xls/conditional_formatting/ColorConditionValue.py +102 -0
  220. spire/xls/conditional_formatting/CondFormatCollectionWrapper.py +153 -0
  221. spire/xls/conditional_formatting/ConditionValue.py +83 -0
  222. spire/xls/conditional_formatting/ConditionValuePosition.py +16 -0
  223. spire/xls/conditional_formatting/ConditionalFormat.py +13 -0
  224. spire/xls/conditional_formatting/ConditionalFormatScope.py +16 -0
  225. spire/xls/conditional_formatting/ConditionalFormatWrapper.py +1271 -0
  226. spire/xls/conditional_formatting/ConditionalFormats.py +65 -0
  227. spire/xls/conditional_formatting/DataBarBorder.py +51 -0
  228. spire/xls/conditional_formatting/NegativeBarFormat.py +90 -0
  229. spire/xls/conditional_formatting/XlsConditionValue.py +134 -0
  230. spire/xls/conditional_formatting/XlsConditionalFormat.py +1155 -0
  231. spire/xls/conditional_formatting/XlsConditionalFormats.py +679 -0
  232. spire/xls/conditional_formatting/__init__.py +0 -0
  233. spire/xls/enums/AlertStyleType.py +17 -0
  234. spire/xls/enums/AutoFormatOptions.py +22 -0
  235. spire/xls/enums/AutoFormatType.py +31 -0
  236. spire/xls/enums/AverageType.py +24 -0
  237. spire/xls/enums/AxisLineIdentifierType.py +18 -0
  238. spire/xls/enums/AxisTextDirectionType.py +17 -0
  239. spire/xls/enums/AxisType.py +17 -0
  240. spire/xls/enums/BaseFormatType.py +16 -0
  241. spire/xls/enums/BordersLineType.py +22 -0
  242. spire/xls/enums/BubbleSizeType.py +16 -0
  243. spire/xls/enums/BuiltInPropertyType.py +49 -0
  244. spire/xls/enums/BuiltInStyles.py +65 -0
  245. spire/xls/enums/CategoryType.py +17 -0
  246. spire/xls/enums/CellDataType.py +22 -0
  247. spire/xls/enums/CellFormatType.py +20 -0
  248. spire/xls/enums/ChartBaseUnitType.py +17 -0
  249. spire/xls/enums/ChartDisplayUnitType.py +25 -0
  250. spire/xls/enums/ChartLinePatternType.py +23 -0
  251. spire/xls/enums/ChartLineWeightType.py +18 -0
  252. spire/xls/enums/ChartMarkerType.py +26 -0
  253. spire/xls/enums/ChartParagraphType.py +17 -0
  254. spire/xls/enums/ChartPieType.py +17 -0
  255. spire/xls/enums/ChartPlotEmptyType.py +17 -0
  256. spire/xls/enums/CheckState.py +17 -0
  257. spire/xls/enums/ColorType.py +17 -0
  258. spire/xls/enums/CommentHAlignType.py +20 -0
  259. spire/xls/enums/CommentVAlignType.py +19 -0
  260. spire/xls/enums/ComparisonOperatorType.py +23 -0
  261. spire/xls/enums/ConditionalFormatType.py +32 -0
  262. spire/xls/enums/DataLabelPositionType.py +25 -0
  263. spire/xls/enums/DataSourceType.py +18 -0
  264. spire/xls/enums/DropLineStyleType.py +17 -0
  265. spire/xls/enums/ErrorBarIncludeType.py +18 -0
  266. spire/xls/enums/ErrorBarType.py +19 -0
  267. spire/xls/enums/ExcelCalculationMode.py +17 -0
  268. spire/xls/enums/ExcelChartType.py +95 -0
  269. spire/xls/enums/ExcelColors.py +120 -0
  270. spire/xls/enums/ExcelComboType.py +21 -0
  271. spire/xls/enums/ExcelHorizontalAlignment.py +20 -0
  272. spire/xls/enums/ExcelPatternType.py +51 -0
  273. spire/xls/enums/ExcelQuartileCalculation.py +16 -0
  274. spire/xls/enums/ExcelShapeType.py +40 -0
  275. spire/xls/enums/ExcelSheetType.py +19 -0
  276. spire/xls/enums/ExcelTreeMapLabelOption.py +17 -0
  277. spire/xls/enums/ExcelVersion.py +23 -0
  278. spire/xls/enums/ExcelVerticalAlignment.py +20 -0
  279. spire/xls/enums/ExpandCollapseFlags.py +17 -0
  280. spire/xls/enums/FilterConditionType.py +20 -0
  281. spire/xls/enums/FilterDataType.py +21 -0
  282. spire/xls/enums/FontUnderlineType.py +19 -0
  283. spire/xls/enums/FontVertialAlignmentType.py +17 -0
  284. spire/xls/enums/GradientColorType.py +17 -0
  285. spire/xls/enums/GradientPatternType.py +63 -0
  286. spire/xls/enums/GradientPresetType.py +38 -0
  287. spire/xls/enums/GradientStyleType.py +20 -0
  288. spire/xls/enums/GradientTextureType.py +39 -0
  289. spire/xls/enums/GradientVariantsType.py +18 -0
  290. spire/xls/enums/HorizontalAlignType.py +22 -0
  291. spire/xls/enums/HyperLinkType.py +19 -0
  292. spire/xls/enums/IgnoreErrorType.py +23 -0
  293. spire/xls/enums/ImageFormatType.py +17 -0
  294. spire/xls/enums/ImageType.py +16 -0
  295. spire/xls/enums/LegendPositionType.py +20 -0
  296. spire/xls/enums/LegendSpacingType.py +17 -0
  297. spire/xls/enums/LineStyleType.py +28 -0
  298. spire/xls/enums/OleObjectType.py +50 -0
  299. spire/xls/enums/OrderBy.py +18 -0
  300. spire/xls/enums/OrderType.py +16 -0
  301. spire/xls/enums/PageBreakExtentType.py +16 -0
  302. spire/xls/enums/PageBreakType.py +17 -0
  303. spire/xls/enums/PageOrientationType.py +16 -0
  304. spire/xls/enums/PagesOrderType.py +16 -0
  305. spire/xls/enums/PaperSizeType.py +134 -0
  306. spire/xls/enums/PivotGroupByTypes.py +22 -0
  307. spire/xls/enums/PrintCommentType.py +17 -0
  308. spire/xls/enums/PrintErrorsType.py +18 -0
  309. spire/xls/enums/ReadingOrderType.py +17 -0
  310. spire/xls/enums/RectangleStyleType.py +16 -0
  311. spire/xls/enums/ResizeBehaveType.py +17 -0
  312. spire/xls/enums/ShapeArrowLengthType.py +17 -0
  313. spire/xls/enums/ShapeArrowStyleType.py +20 -0
  314. spire/xls/enums/ShapeArrowWidthType.py +17 -0
  315. spire/xls/enums/ShapeDashLineStyleType.py +22 -0
  316. spire/xls/enums/ShapeFillType.py +21 -0
  317. spire/xls/enums/ShapeLayerChangeType.py +18 -0
  318. spire/xls/enums/ShapeLineStyleType.py +19 -0
  319. spire/xls/enums/SheetProtectionType.py +32 -0
  320. spire/xls/enums/SortComparsionType.py +18 -0
  321. spire/xls/enums/SortOrientationType.py +16 -0
  322. spire/xls/enums/SortedWayType.py +17 -0
  323. spire/xls/enums/SparklineType.py +17 -0
  324. spire/xls/enums/SplitType.py +18 -0
  325. spire/xls/enums/TextDirection.py +19 -0
  326. spire/xls/enums/TextRotationType.py +18 -0
  327. spire/xls/enums/ThemeColorType.py +26 -0
  328. spire/xls/enums/TickLabelPositionType.py +18 -0
  329. spire/xls/enums/TickMarkType.py +18 -0
  330. spire/xls/enums/TopBottomType.py +18 -0
  331. spire/xls/enums/TopFormatType.py +17 -0
  332. spire/xls/enums/TrendLineType.py +20 -0
  333. spire/xls/enums/UnknownVariableAction.py +17 -0
  334. spire/xls/enums/ValidationComparisonOperator.py +22 -0
  335. spire/xls/enums/VariableTypeAction.py +17 -0
  336. spire/xls/enums/VerticalAlignType.py +19 -0
  337. spire/xls/enums/ViewMode.py +17 -0
  338. spire/xls/enums/WorksheetVisibility.py +17 -0
  339. spire/xls/enums/XLSXBorderJoinType.py +18 -0
  340. spire/xls/enums/XLSXChartMaterialType.py +31 -0
  341. spire/xls/enums/XLSXChartPrespectiveType.py +20 -0
  342. spire/xls/enums/XLSXChartShadowInnerType.py +24 -0
  343. spire/xls/enums/XLSXChartShadowOuterType.py +24 -0
  344. spire/xls/enums/__init__.py +1 -0
  345. spire/xls/interfaces/IArcShape.py +285 -0
  346. spire/xls/interfaces/IChart.py +1597 -0
  347. spire/xls/interfaces/IChartAxis.py +786 -0
  348. spire/xls/interfaces/IChartBorder.py +203 -0
  349. spire/xls/interfaces/IChartCategoryAxis.py +522 -0
  350. spire/xls/interfaces/IChartDataLabels.py +419 -0
  351. spire/xls/interfaces/IChartDataPoint.py +114 -0
  352. spire/xls/interfaces/IChartDataTable.py +184 -0
  353. spire/xls/interfaces/IChartErrorBars.py +340 -0
  354. spire/xls/interfaces/IChartFillBorder.py +268 -0
  355. spire/xls/interfaces/IChartFormat.py +521 -0
  356. spire/xls/interfaces/IChartFrameFormat.py +85 -0
  357. spire/xls/interfaces/IChartGridLine.py +100 -0
  358. spire/xls/interfaces/IChartInterior.py +259 -0
  359. spire/xls/interfaces/IChartLegend.py +453 -0
  360. spire/xls/interfaces/IChartLegendEntry.py +167 -0
  361. spire/xls/interfaces/IChartPageSetup.py +51 -0
  362. spire/xls/interfaces/IChartSerie.py +727 -0
  363. spire/xls/interfaces/IChartSerieDataFormat.py +519 -0
  364. spire/xls/interfaces/IChartSeriesAxis.py +118 -0
  365. spire/xls/interfaces/IChartShape.py +88 -0
  366. spire/xls/interfaces/IChartTextArea.py +181 -0
  367. spire/xls/interfaces/IChartTrendLine.py +502 -0
  368. spire/xls/interfaces/IChartValueAxis.py +586 -0
  369. spire/xls/interfaces/IChartWallOrFloor.py +40 -0
  370. spire/xls/interfaces/ICheckBox.py +120 -0
  371. spire/xls/interfaces/ICloneParent.py +29 -0
  372. spire/xls/interfaces/IColorConditionValue.py +44 -0
  373. spire/xls/interfaces/IColorScale.py +39 -0
  374. spire/xls/interfaces/ICombinedRange.py +109 -0
  375. spire/xls/interfaces/IComboBoxShape.py +120 -0
  376. spire/xls/interfaces/IComment.py +110 -0
  377. spire/xls/interfaces/ICommentShape.py +20 -0
  378. spire/xls/interfaces/IConditionValue.py +83 -0
  379. spire/xls/interfaces/IConditionalFormat.py +757 -0
  380. spire/xls/interfaces/IConditionalFormats.py +66 -0
  381. spire/xls/interfaces/ICustomDocumentProperties.py +168 -0
  382. spire/xls/interfaces/IDataBar.py +127 -0
  383. spire/xls/interfaces/IDataValidation.py +506 -0
  384. spire/xls/interfaces/IDataValidationTable.py +84 -0
  385. spire/xls/interfaces/IDigitalSignature.py +111 -0
  386. spire/xls/interfaces/IDigitalSignatures.py +33 -0
  387. spire/xls/interfaces/IDocumentProperty.py +276 -0
  388. spire/xls/interfaces/IErrorIndicator.py +38 -0
  389. spire/xls/interfaces/IExtendIndex.py +26 -0
  390. spire/xls/interfaces/IExtendedFormat.py +631 -0
  391. spire/xls/interfaces/IFont.py +313 -0
  392. spire/xls/interfaces/IFormat3D.py +307 -0
  393. spire/xls/interfaces/IGeomPath.py +27 -0
  394. spire/xls/interfaces/IGeomPathInfo.py +141 -0
  395. spire/xls/interfaces/IGeomPathShape.py +40 -0
  396. spire/xls/interfaces/IGlow.py +104 -0
  397. spire/xls/interfaces/IGradient.py +203 -0
  398. spire/xls/interfaces/IGroupBox.py +82 -0
  399. spire/xls/interfaces/IHPageBreak.py +26 -0
  400. spire/xls/interfaces/IHyperLink.py +137 -0
  401. spire/xls/interfaces/IIconSet.py +115 -0
  402. spire/xls/interfaces/IInterior.py +137 -0
  403. spire/xls/interfaces/IInternalAddtionalFormat.py +277 -0
  404. spire/xls/interfaces/IInternalFont.py +38 -0
  405. spire/xls/interfaces/ILabelShape.py +60 -0
  406. spire/xls/interfaces/ILineShape.py +334 -0
  407. spire/xls/interfaces/IListObject.py +443 -0
  408. spire/xls/interfaces/IListObjectColumn.py +196 -0
  409. spire/xls/interfaces/IMarkersDesigner.py +133 -0
  410. spire/xls/interfaces/IMigrantRange.py +28 -0
  411. spire/xls/interfaces/INamedObject.py +27 -0
  412. spire/xls/interfaces/INamedRange.py +246 -0
  413. spire/xls/interfaces/INumberFormat.py +90 -0
  414. spire/xls/interfaces/IOleObject.py +225 -0
  415. spire/xls/interfaces/IOptimizedUpdate.py +35 -0
  416. spire/xls/interfaces/IOvalShape.py +201 -0
  417. spire/xls/interfaces/IPageSetup.py +260 -0
  418. spire/xls/interfaces/IPageSetupBase.py +849 -0
  419. spire/xls/interfaces/IPictureShape.py +118 -0
  420. spire/xls/interfaces/IPropertyData.py +100 -0
  421. spire/xls/interfaces/IPrstGeomShape.py +103 -0
  422. spire/xls/interfaces/IRadioButton.py +159 -0
  423. spire/xls/interfaces/IRectangleShape.py +90 -0
  424. spire/xls/interfaces/IReflectionEffect.py +217 -0
  425. spire/xls/interfaces/IScrollBarShape.py +139 -0
  426. spire/xls/interfaces/IShadow.py +385 -0
  427. spire/xls/interfaces/IShape.py +620 -0
  428. spire/xls/interfaces/IShapeFill.py +767 -0
  429. spire/xls/interfaces/IShapeLineFormat.py +488 -0
  430. spire/xls/interfaces/ISortColumn.py +138 -0
  431. spire/xls/interfaces/ISortColumns.py +106 -0
  432. spire/xls/interfaces/ISortedRule.py +154 -0
  433. spire/xls/interfaces/ISpinnerShape.py +124 -0
  434. spire/xls/interfaces/IStyle.py +60 -0
  435. spire/xls/interfaces/ITabSheet.py +364 -0
  436. spire/xls/interfaces/ITextBox.py +140 -0
  437. spire/xls/interfaces/ITextBoxLinkShape.py +48 -0
  438. spire/xls/interfaces/ITextBoxShape.py +27 -0
  439. spire/xls/interfaces/ITextFrame.py +146 -0
  440. spire/xls/interfaces/IVPageBreak.py +26 -0
  441. spire/xls/interfaces/IWorkbook.py +1736 -0
  442. spire/xls/interfaces/IWorksheet.py +2638 -0
  443. spire/xls/interfaces/IXLSRange.py +2241 -0
  444. spire/xls/interfaces/IXLSRanges.py +40 -0
  445. spire/xls/interfaces/IconSet.py +125 -0
  446. spire/xls/interfaces/ImageLocationTypes.py +17 -0
  447. spire/xls/interfaces/ImportObjectOptions.py +136 -0
  448. spire/xls/interfaces/InsertMoveOption.py +17 -0
  449. spire/xls/interfaces/InteriorArrayWrapper.py +181 -0
  450. spire/xls/interfaces/__init__.py +0 -0
  451. spire/xls/interfaces/collections/IDataValidationCollection.py +128 -0
  452. spire/xls/interfaces/collections/IHPageBreaks.py +37 -0
  453. spire/xls/interfaces/collections/IListObjects.py +34 -0
  454. spire/xls/interfaces/collections/IOleObjects.py +44 -0
  455. spire/xls/interfaces/collections/IPrstGeomShapes.py +87 -0
  456. spire/xls/interfaces/collections/IShapes.py +273 -0
  457. spire/xls/interfaces/collections/ITextBoxes.py +67 -0
  458. spire/xls/interfaces/collections/IVPageBreaks.py +37 -0
  459. spire/xls/interfaces/collections/__init__.py +0 -0
  460. spire/xls/interfaces/pivot_table/IPivotCache.py +50 -0
  461. spire/xls/interfaces/pivot_table/IPivotCaches.py +52 -0
  462. spire/xls/interfaces/pivot_table/IPivotCalculatedFields.py +69 -0
  463. spire/xls/interfaces/pivot_table/IPivotField.py +372 -0
  464. spire/xls/interfaces/pivot_table/IPivotTable.py +509 -0
  465. spire/xls/interfaces/pivot_table/IPivotTableOptions.py +507 -0
  466. spire/xls/interfaces/pivot_table/__init__.py +0 -0
  467. spire/xls/interfaces/sorting/__init__.py +0 -0
  468. spire/xls/lib/Spire.Xls.Base.dll +0 -0
  469. spire/xls/lib/_init_.py +0 -0
  470. spire/xls/license/LicenseProvider.py +107 -0
  471. spire/xls/license/__init__.py +0 -0
  472. spire/xls/pivot_tables/AutoSortScope.py +29 -0
  473. spire/xls/pivot_tables/PivotConditionalFormat.py +71 -0
  474. spire/xls/pivot_tables/PivotDataField.py +163 -0
  475. spire/xls/pivot_tables/PivotItem.py +228 -0
  476. spire/xls/pivot_tables/PivotReportFilter.py +199 -0
  477. spire/xls/pivot_tables/PivotReportFilters.py +95 -0
  478. spire/xls/pivot_tables/PivotStyle.py +104 -0
  479. spire/xls/pivot_tables/PivotTableStyle.py +76 -0
  480. spire/xls/pivot_tables/XlsPivotCache.py +506 -0
  481. spire/xls/pivot_tables/XlsPivotCacheField.py +276 -0
  482. spire/xls/pivot_tables/XlsPivotField.py +975 -0
  483. spire/xls/pivot_tables/XlsPivotTable.py +1189 -0
  484. spire/xls/pivot_tables/__init__.py +0 -0
  485. spire/xls/security/__init__.py +0 -0
  486. spire/xls/sorting/DataSorter.py +152 -0
  487. spire/xls/sorting/SortColumn.py +115 -0
  488. spire/xls/sorting/SortColumns.py +194 -0
  489. spire/xls/sorting/__init__.py +0 -0
  490. spire/xls/sparkline/ISparklines.py +72 -0
  491. spire/xls/sparkline/Sparkline.py +89 -0
  492. spire/xls/sparkline/SparklineCollection.py +107 -0
  493. spire/xls/sparkline/SparklineGroup.py +592 -0
  494. spire/xls/sparkline/SparklineGroupCollection.py +67 -0
  495. spire/xls/sparkline/__init__.py +0 -0
  496. spire/xls/template_markers/MarkerDesigner.py +171 -0
  497. spire/xls/template_markers/__init__.py +0 -0
  498. spire_xls-15.7.1.dist-info/METADATA +197 -0
  499. spire_xls-15.7.1.dist-info/RECORD +720 -0
  500. spire/xls/AddInFunctionsCollection.py +0 -29
  501. spire/xls/AlertStyleType.py +0 -18
  502. spire/xls/ArcShapeCollection.py +0 -70
  503. spire/xls/AutoFiltersCollection.py +0 -527
  504. spire/xls/AutoFitterOptions.py +0 -66
  505. spire/xls/AutoFormatOptions.py +0 -23
  506. spire/xls/AutoFormatType.py +0 -32
  507. spire/xls/AutoSortScope.py +0 -25
  508. spire/xls/AverageType.py +0 -25
  509. spire/xls/AxisLineIdentifierType.py +0 -19
  510. spire/xls/AxisTextDirectionType.py +0 -18
  511. spire/xls/AxisType.py +0 -18
  512. spire/xls/BaseFormatType.py +0 -17
  513. spire/xls/BordersCollection.py +0 -158
  514. spire/xls/BordersCollectionArrayWrapper.py +0 -95
  515. spire/xls/BordersLineType.py +0 -23
  516. spire/xls/BubbleSizeType.py +0 -17
  517. spire/xls/BuiltInDocumentProperties.py +0 -12
  518. spire/xls/BuiltInPropertyType.py +0 -50
  519. spire/xls/BuiltInStyles.py +0 -66
  520. spire/xls/CategoryType.py +0 -18
  521. spire/xls/CellDataType.py +0 -23
  522. spire/xls/CellFormatType.py +0 -21
  523. spire/xls/Chart.py +0 -404
  524. spire/xls/ChartArea.py +0 -61
  525. spire/xls/ChartBackgroundMode.py +0 -18
  526. spire/xls/ChartBaseUnitType.py +0 -18
  527. spire/xls/ChartCategoryAxis.py +0 -93
  528. spire/xls/ChartDataLabels.py +0 -42
  529. spire/xls/ChartDataPoint.py +0 -42
  530. spire/xls/ChartDataPointsCollection.py +0 -75
  531. spire/xls/ChartDisplayUnitType.py +0 -26
  532. spire/xls/ChartFormat.py +0 -72
  533. spire/xls/ChartFormatCollection.py +0 -59
  534. spire/xls/ChartGridLine.py +0 -27
  535. spire/xls/ChartLegend.py +0 -42
  536. spire/xls/ChartLegendEntriesColl.py +0 -128
  537. spire/xls/ChartLegendEntry.py +0 -27
  538. spire/xls/ChartLinePatternType.py +0 -24
  539. spire/xls/ChartLineWeightType.py +0 -19
  540. spire/xls/ChartMarkerType.py +0 -27
  541. spire/xls/ChartParagraphType.py +0 -18
  542. spire/xls/ChartPieType.py +0 -18
  543. spire/xls/ChartPlotArea.py +0 -53
  544. spire/xls/ChartPlotEmptyType.py +0 -18
  545. spire/xls/ChartSerie.py +0 -142
  546. spire/xls/ChartSerieDataFormat.py +0 -56
  547. spire/xls/ChartSeries.py +0 -154
  548. spire/xls/ChartSeriesAxis.py +0 -72
  549. spire/xls/ChartShadow.py +0 -235
  550. spire/xls/ChartSheet.py +0 -285
  551. spire/xls/ChartTextArea.py +0 -782
  552. spire/xls/ChartValueAxis.py +0 -92
  553. spire/xls/ChartsCollection.py +0 -113
  554. spire/xls/CheckState.py +0 -18
  555. spire/xls/CollectionBase.py +0 -184
  556. spire/xls/CollectionExtended.py +0 -92
  557. spire/xls/ColorConditionValue.py +0 -91
  558. spire/xls/ColorFilter.py +0 -45
  559. spire/xls/ColorType.py +0 -18
  560. spire/xls/ComboBoxCollection.py +0 -70
  561. spire/xls/CommentHAlignType.py +0 -21
  562. spire/xls/CommentVAlignType.py +0 -20
  563. spire/xls/CommentsCollection.py +0 -109
  564. spire/xls/ComparisonOperatorType.py +0 -24
  565. spire/xls/CondFormatCollectionWrapper.py +0 -125
  566. spire/xls/ConditionValue.py +0 -82
  567. spire/xls/ConditionValuePosition.py +0 -16
  568. spire/xls/ConditionalFormat.py +0 -14
  569. spire/xls/ConditionalFormatScope.py +0 -16
  570. spire/xls/ConditionalFormatType.py +0 -33
  571. spire/xls/ConditionalFormatWrapper.py +0 -986
  572. spire/xls/ConditionalFormats.py +0 -55
  573. spire/xls/CustomFilter.py +0 -147
  574. spire/xls/CustomFilterCollection.py +0 -113
  575. spire/xls/DataBarBorder.py +0 -47
  576. spire/xls/DataLabelPositionType.py +0 -26
  577. spire/xls/DataSorter.py +0 -154
  578. spire/xls/DataSourceType.py +0 -19
  579. spire/xls/DateTimeGroupItem.py +0 -132
  580. spire/xls/DropLineStyleType.py +0 -18
  581. spire/xls/DynamicFilter.py +0 -71
  582. spire/xls/ErrorBarIncludeType.py +0 -19
  583. spire/xls/ErrorBarType.py +0 -20
  584. spire/xls/ExcelCalculationMode.py +0 -18
  585. spire/xls/ExcelChartType.py +0 -96
  586. spire/xls/ExcelColors.py +0 -121
  587. spire/xls/ExcelComboType.py +0 -22
  588. spire/xls/ExcelHorizontalAlignment.py +0 -21
  589. spire/xls/ExcelPatternType.py +0 -52
  590. spire/xls/ExcelQuartileCalculation.py +0 -17
  591. spire/xls/ExcelShapeType.py +0 -41
  592. spire/xls/ExcelSheetType.py +0 -20
  593. spire/xls/ExcelTreeMapLabelOption.py +0 -18
  594. spire/xls/ExcelVersion.py +0 -24
  595. spire/xls/ExcelVerticalAlignment.py +0 -21
  596. spire/xls/ExpandCollapseFlags.py +0 -18
  597. spire/xls/FilterColumn.py +0 -258
  598. spire/xls/FilterConditionType.py +0 -21
  599. spire/xls/FilterDataType.py +0 -22
  600. spire/xls/FontUnderlineType.py +0 -20
  601. spire/xls/FontVertialAlignmentType.py +0 -20
  602. spire/xls/GradientColorType.py +0 -18
  603. spire/xls/GradientPatternType.py +0 -64
  604. spire/xls/GradientPresetType.py +0 -39
  605. spire/xls/GradientStyleType.py +0 -21
  606. spire/xls/GradientTextureType.py +0 -40
  607. spire/xls/GradientVariantsType.py +0 -19
  608. spire/xls/GroupShapeCollection.py +0 -46
  609. spire/xls/HPageBreaksCollection.py +0 -108
  610. spire/xls/HistogramAxisFormat.py +0 -30
  611. spire/xls/HorizontalAlignType.py +0 -23
  612. spire/xls/HyperLinkType.py +0 -20
  613. spire/xls/HyperLinksCollection.py +0 -72
  614. spire/xls/IArcShape.py +0 -259
  615. spire/xls/IChart.py +0 -1368
  616. spire/xls/IChartAxis.py +0 -722
  617. spire/xls/IChartBorder.py +0 -220
  618. spire/xls/IChartCategoryAxis.py +0 -410
  619. spire/xls/IChartDataLabels.py +0 -457
  620. spire/xls/IChartDataPoint.py +0 -131
  621. spire/xls/IChartDataTable.py +0 -197
  622. spire/xls/IChartErrorBars.py +0 -373
  623. spire/xls/IChartFillBorder.py +0 -303
  624. spire/xls/IChartFormat.py +0 -571
  625. spire/xls/IChartFrameFormat.py +0 -93
  626. spire/xls/IChartGridLine.py +0 -107
  627. spire/xls/IChartInterior.py +0 -278
  628. spire/xls/IChartLegend.py +0 -499
  629. spire/xls/IChartLegendEntry.py +0 -178
  630. spire/xls/IChartPageSetup.py +0 -56
  631. spire/xls/IChartSerie.py +0 -779
  632. spire/xls/IChartSerieDataFormat.py +0 -566
  633. spire/xls/IChartSeriesAxis.py +0 -128
  634. spire/xls/IChartShape.py +0 -92
  635. spire/xls/IChartTextArea.py +0 -197
  636. spire/xls/IChartTrendLine.py +0 -548
  637. spire/xls/IChartValueAxis.py +0 -518
  638. spire/xls/IChartWallOrFloor.py +0 -32
  639. spire/xls/ICheckBox.py +0 -96
  640. spire/xls/ICloneParent.py +0 -28
  641. spire/xls/IColorConditionValue.py +0 -31
  642. spire/xls/IColorScale.py +0 -32
  643. spire/xls/ICombinedRange.py +0 -87
  644. spire/xls/IComboBoxShape.py +0 -95
  645. spire/xls/IComment.py +0 -85
  646. spire/xls/ICommentShape.py +0 -12
  647. spire/xls/IConditionValue.py +0 -68
  648. spire/xls/IConditionalFormat.py +0 -606
  649. spire/xls/IConditionalFormats.py +0 -48
  650. spire/xls/ICustomDocumentProperties.py +0 -128
  651. spire/xls/IDataBar.py +0 -105
  652. spire/xls/IDataValidation.py +0 -421
  653. spire/xls/IDataValidationCollection.py +0 -132
  654. spire/xls/IDataValidationTable.py +0 -68
  655. spire/xls/IDigitalSignature.py +0 -99
  656. spire/xls/IDigitalSignatures.py +0 -29
  657. spire/xls/IDocumentProperty.py +0 -226
  658. spire/xls/IErrorIndicator.py +0 -31
  659. spire/xls/IExtendIndex.py +0 -21
  660. spire/xls/IExtendedFormat.py +0 -530
  661. spire/xls/IFont.py +0 -271
  662. spire/xls/IFormat3D.py +0 -252
  663. spire/xls/IGeomPath.py +0 -23
  664. spire/xls/IGeomPathInfo.py +0 -112
  665. spire/xls/IGeomPathShape.py +0 -30
  666. spire/xls/IGlow.py +0 -85
  667. spire/xls/IGradient.py +0 -174
  668. spire/xls/IGroupBox.py +0 -67
  669. spire/xls/IHPageBreak.py +0 -22
  670. spire/xls/IHPageBreaks.py +0 -31
  671. spire/xls/IHyperLink.py +0 -118
  672. spire/xls/IIconSet.py +0 -96
  673. spire/xls/IInterior.py +0 -117
  674. spire/xls/IInternalAddtionalFormat.py +0 -238
  675. spire/xls/IInternalFont.py +0 -31
  676. spire/xls/ILabelShape.py +0 -49
  677. spire/xls/ILineShape.py +0 -305
  678. spire/xls/IListObject.py +0 -493
  679. spire/xls/IListObjectColumn.py +0 -222
  680. spire/xls/IListObjects.py +0 -31
  681. spire/xls/IMarkersDesigner.py +0 -113
  682. spire/xls/IMigrantRange.py +0 -21
  683. spire/xls/INamedObject.py +0 -22
  684. spire/xls/INamedRange.py +0 -162
  685. spire/xls/INumberFormat.py +0 -77
  686. spire/xls/IOleObject.py +0 -176
  687. spire/xls/IOleObjects.py +0 -32
  688. spire/xls/IOptimizedUpdate.py +0 -28
  689. spire/xls/IOvalShape.py +0 -154
  690. spire/xls/IPageSetup.py +0 -195
  691. spire/xls/IPageSetupBase.py +0 -642
  692. spire/xls/IPictureShape.py +0 -99
  693. spire/xls/IPivotCache.py +0 -41
  694. spire/xls/IPivotCaches.py +0 -39
  695. spire/xls/IPivotCalculatedFields.py +0 -50
  696. spire/xls/IPivotField.py +0 -291
  697. spire/xls/IPivotTable.py +0 -393
  698. spire/xls/IPivotTableOptions.py +0 -428
  699. spire/xls/IPropertyData.py +0 -70
  700. spire/xls/IPrstGeomShape.py +0 -71
  701. spire/xls/IPrstGeomShapes.py +0 -81
  702. spire/xls/IRadioButton.py +0 -105
  703. spire/xls/IRectangleShape.py +0 -60
  704. spire/xls/IReflectionEffect.py +0 -138
  705. spire/xls/IScrollBarShape.py +0 -140
  706. spire/xls/IShadow.py +0 -244
  707. spire/xls/IShape.py +0 -409
  708. spire/xls/IShapeFill.py +0 -522
  709. spire/xls/IShapeLineFormat.py +0 -331
  710. spire/xls/IShapes.py +0 -270
  711. spire/xls/ISortColumn.py +0 -96
  712. spire/xls/ISortColumns.py +0 -70
  713. spire/xls/ISortedRule.py +0 -112
  714. spire/xls/ISparklines.py +0 -72
  715. spire/xls/ISpinnerShape.py +0 -102
  716. spire/xls/IStyle.py +0 -50
  717. spire/xls/ITabSheet.py +0 -302
  718. spire/xls/ITextBox.py +0 -116
  719. spire/xls/ITextBoxLinkShape.py +0 -40
  720. spire/xls/ITextBoxShape.py +0 -22
  721. spire/xls/ITextBoxes.py +0 -61
  722. spire/xls/ITextFrame.py +0 -120
  723. spire/xls/IVPageBreak.py +0 -22
  724. spire/xls/IVPageBreaks.py +0 -31
  725. spire/xls/IWorkbook.py +0 -1806
  726. spire/xls/IWorksheet.py +0 -2694
  727. spire/xls/IXLSRange.py +0 -2479
  728. spire/xls/IXLSRanges.py +0 -35
  729. spire/xls/IconSet.py +0 -103
  730. spire/xls/IgnoreErrorType.py +0 -24
  731. spire/xls/ImageFormatType.py +0 -18
  732. spire/xls/ImageLocationTypes.py +0 -15
  733. spire/xls/ImageType.py +0 -17
  734. spire/xls/ImportObjectOptions.py +0 -89
  735. spire/xls/InsertMoveOption.py +0 -15
  736. spire/xls/InteriorArrayWrapper.py +0 -126
  737. spire/xls/LegendPositionType.py +0 -21
  738. spire/xls/LegendSpacingType.py +0 -18
  739. spire/xls/LineStyleType.py +0 -29
  740. spire/xls/ListObjectCollection.py +0 -45
  741. spire/xls/MarkerDesigner.py +0 -172
  742. spire/xls/MultipleFilterCollection.py +0 -166
  743. spire/xls/NegativeBarFormat.py +0 -82
  744. spire/xls/OleObjectType.py +0 -51
  745. spire/xls/OrderBy.py +0 -19
  746. spire/xls/OrderType.py +0 -17
  747. spire/xls/OvalShapeCollection.py +0 -70
  748. spire/xls/PageBreakExtentType.py +0 -17
  749. spire/xls/PageBreakType.py +0 -18
  750. spire/xls/PageOrientationType.py +0 -17
  751. spire/xls/PagesOrderType.py +0 -17
  752. spire/xls/PaperSizeType.py +0 -135
  753. spire/xls/PicturesCollection.py +0 -532
  754. spire/xls/PivotConditionalFormat.py +0 -54
  755. spire/xls/PivotConditionalFormatCollection.py +0 -38
  756. spire/xls/PivotDataField.py +0 -118
  757. spire/xls/PivotGroupByTypes.py +0 -23
  758. spire/xls/PivotItem.py +0 -161
  759. spire/xls/PivotReportFilter.py +0 -92
  760. spire/xls/PivotReportFilters.py +0 -63
  761. spire/xls/PivotStyle.py +0 -79
  762. spire/xls/PivotTableFields.py +0 -85
  763. spire/xls/PivotTableStyle.py +0 -63
  764. spire/xls/PrintCommentType.py +0 -18
  765. spire/xls/PrintErrorsType.py +0 -19
  766. spire/xls/PrstGeomShapeCollection.py +0 -126
  767. spire/xls/RadioButtonCollection.py +0 -137
  768. spire/xls/RangesCollection.py +0 -537
  769. spire/xls/ReadingOrderType.py +0 -18
  770. spire/xls/RectangleStyleType.py +0 -17
  771. spire/xls/ResizeBehaveType.py +0 -18
  772. spire/xls/ShapeArrowLengthType.py +0 -18
  773. spire/xls/ShapeArrowStyleType.py +0 -21
  774. spire/xls/ShapeArrowWidthType.py +0 -18
  775. spire/xls/ShapeDashLineStyleType.py +0 -23
  776. spire/xls/ShapeFillType.py +0 -22
  777. spire/xls/ShapeLayerChangeType.py +0 -19
  778. spire/xls/ShapeLineStyleType.py +0 -20
  779. spire/xls/SheetProtectionType.py +0 -33
  780. spire/xls/SortColumn.py +0 -120
  781. spire/xls/SortColumns.py +0 -185
  782. spire/xls/SortComparsionType.py +0 -19
  783. spire/xls/SortOrientationType.py +0 -17
  784. spire/xls/SortedWayType.py +0 -18
  785. spire/xls/Sparkline.py +0 -70
  786. spire/xls/SparklineCollection.py +0 -112
  787. spire/xls/SparklineGroup.py +0 -523
  788. spire/xls/SparklineGroupCollection.py +0 -71
  789. spire/xls/SparklineType.py +0 -18
  790. spire/xls/SplitType.py +0 -19
  791. spire/xls/StylesCollection.py +0 -141
  792. spire/xls/TextDirection.py +0 -20
  793. spire/xls/TextRotationType.py +0 -19
  794. spire/xls/ThemeColorType.py +0 -27
  795. spire/xls/TickLabelPositionType.py +0 -19
  796. spire/xls/TickMarkType.py +0 -19
  797. spire/xls/Top10Filter.py +0 -75
  798. spire/xls/TopBottomType.py +0 -19
  799. spire/xls/TopFormatType.py +0 -18
  800. spire/xls/TrendLineType.py +0 -21
  801. spire/xls/UnknownVariableAction.py +0 -18
  802. spire/xls/VPageBreaksCollection.py +0 -96
  803. spire/xls/ValidationComparisonOperator.py +0 -23
  804. spire/xls/VariableTypeAction.py +0 -19
  805. spire/xls/VerticalAlignType.py +0 -20
  806. spire/xls/ViewMode.py +0 -18
  807. spire/xls/WorksheetVisibility.py +0 -18
  808. spire/xls/WorksheetsCollection.py +0 -341
  809. spire/xls/XLSXBorderJoinType.py +0 -19
  810. spire/xls/XLSXChartMaterialType.py +0 -32
  811. spire/xls/XLSXChartPrespectiveType.py +0 -21
  812. spire/xls/XLSXChartShadowInnerType.py +0 -25
  813. spire/xls/XLSXChartShadowOuterType.py +0 -25
  814. spire/xls/XlsAddInFunctionsCollection.py +0 -101
  815. spire/xls/XlsAutoFiltersCollection.py +0 -119
  816. spire/xls/XlsBordersCollection.py +0 -101
  817. spire/xls/XlsBuiltInDocumentProperties.py +0 -639
  818. spire/xls/XlsChart.py +0 -1510
  819. spire/xls/XlsChartAxis.py +0 -564
  820. spire/xls/XlsChartBorder.py +0 -165
  821. spire/xls/XlsChartCategoryAxis.py +0 -656
  822. spire/xls/XlsChartDataLabelArea.py +0 -387
  823. spire/xls/XlsChartDataLabels.py +0 -811
  824. spire/xls/XlsChartDataPoint.py +0 -108
  825. spire/xls/XlsChartDataPointsCollection.py +0 -120
  826. spire/xls/XlsChartDataTable.py +0 -393
  827. spire/xls/XlsChartDropBar.py +0 -301
  828. spire/xls/XlsChartFill.py +0 -571
  829. spire/xls/XlsChartFormat.py +0 -1069
  830. spire/xls/XlsChartFormatCollection.py +0 -162
  831. spire/xls/XlsChartFrameFormat.py +0 -614
  832. spire/xls/XlsChartGridLine.py +0 -171
  833. spire/xls/XlsChartInterior.py +0 -240
  834. spire/xls/XlsChartLegend.py +0 -355
  835. spire/xls/XlsChartLegendArea.py +0 -419
  836. spire/xls/XlsChartLegendEntry.py +0 -156
  837. spire/xls/XlsChartSerie.py +0 -589
  838. spire/xls/XlsChartSerieDataFormat.py +0 -1008
  839. spire/xls/XlsChartSeriesAxis.py +0 -212
  840. spire/xls/XlsChartShape.py +0 -1142
  841. spire/xls/XlsChartTitleArea.py +0 -392
  842. spire/xls/XlsChartValueAxis.py +0 -317
  843. spire/xls/XlsChartWallOrFloor.py +0 -319
  844. spire/xls/XlsCommentsCollection.py +0 -87
  845. spire/xls/XlsConditionValue.py +0 -111
  846. spire/xls/XlsConditionalFormat.py +0 -1119
  847. spire/xls/XlsConditionalFormats.py +0 -590
  848. spire/xls/XlsDataValidationCollection.py +0 -159
  849. spire/xls/XlsHPageBreaksCollection.py +0 -85
  850. spire/xls/XlsHyperLinksCollection.py +0 -102
  851. spire/xls/XlsPivotCache.py +0 -401
  852. spire/xls/XlsPivotCacheField.py +0 -209
  853. spire/xls/XlsPivotCachesCollection.py +0 -124
  854. spire/xls/XlsPivotField.py +0 -885
  855. spire/xls/XlsPivotTable.py +0 -905
  856. spire/xls/XlsRangesCollection.py +0 -1566
  857. spire/xls/XlsStylesCollection.py +0 -73
  858. spire/xls/XlsVPageBreaksCollection.py +0 -84
  859. spire/xls/XlsWorksheetsCollection.py +0 -416
  860. spire_xls-15.5.0.dist-info/METADATA +0 -197
  861. spire_xls-15.5.0.dist-info/RECORD +0 -703
  862. /spire/xls/{lib → autofilter}/__init__.py +0 -0
  863. /spire/xls/{ChartBorder.py → charts/ChartBorder.py} +0 -0
  864. /spire/xls/{ChartDataTable.py → charts/ChartDataTable.py} +0 -0
  865. /spire/xls/{ChartDropBar.py → charts/ChartDropBar.py} +0 -0
  866. /spire/xls/{ChartInterior.py → charts/ChartInterior.py} +0 -0
  867. /spire/xls/{ChartPageSetup.py → charts/ChartPageSetup.py} +0 -0
  868. /spire/xls/{ChartTitle.py → charts/ChartTitle.py} +0 -0
  869. /spire/xls/{ChartWallOrFloor.py → charts/ChartWallOrFloor.py} +0 -0
  870. /spire/xls/{XlsChartPageSetup.py → charts/XlsChartPageSetup.py} +0 -0
  871. /spire/xls/{XlsChartPlotArea.py → charts/XlsChartPlotArea.py} +0 -0
  872. /spire/xls/{ButtonShapeCollection.py → collection/ButtonShapeCollection.py} +0 -0
  873. /spire/xls/{CheckBoxCollection.py → collection/CheckBoxCollection.py} +0 -0
  874. /spire/xls/{CollectionChangeEventArgs.py → collection/CollectionChangeEventArgs.py} +0 -0
  875. /spire/xls/{DataConnections.py → collection/DataConnections.py} +0 -0
  876. /spire/xls/{ExternalLinkCollection.py → collection/ExternalLinkCollection.py} +0 -0
  877. /spire/xls/{FontsCollection.py → collection/FontsCollection.py} +0 -0
  878. /spire/xls/{GeomertyAdjustValuesCollection.py → collection/GeomertyAdjustValuesCollection.py} +0 -0
  879. /spire/xls/{GroupBoxCollection.py → collection/GroupBoxCollection.py} +0 -0
  880. /spire/xls/{LabelShapeCollection.py → collection/LabelShapeCollection.py} +0 -0
  881. /spire/xls/{LineCollection.py → collection/LineCollection.py} +0 -0
  882. /spire/xls/{ListBoxCollection.py → collection/ListBoxCollection.py} +0 -0
  883. /spire/xls/{QueryTableCollection.py → collection/QueryTableCollection.py} +0 -0
  884. /spire/xls/{RectangleCollection.py → collection/RectangleCollection.py} +0 -0
  885. /spire/xls/{ScrollBarCollection.py → collection/ScrollBarCollection.py} +0 -0
  886. /spire/xls/{ShapeCollectionBase.py → collection/ShapeCollectionBase.py} +0 -0
  887. /spire/xls/{SpinnerShapeCollection.py → collection/SpinnerShapeCollection.py} +0 -0
  888. /spire/xls/{TextBoxCollection.py → collection/TextBoxCollection.py} +0 -0
  889. /spire/xls/{WorkbookObjectsCollection.py → collection/WorkbookObjectsCollection.py} +0 -0
  890. /spire/xls/{WorksheetChartsCollection.py → collection/WorksheetChartsCollection.py} +0 -0
  891. /spire/xls/{WorksheetConditionalFormats.py → collection/WorksheetConditionalFormats.py} +0 -0
  892. /spire/xls/{XlsChartSeries.py → collection/XlsChartSeries.py} +0 -0
  893. /spire/xls/{XlsChartsCollection.py → collection/XlsChartsCollection.py} +0 -0
  894. /spire/xls/{XlsFontsCollection.py → collection/XlsFontsCollection.py} +0 -0
  895. /spire/xls/{XlsHeaderFooterShapeCollection.py → collection/XlsHeaderFooterShapeCollection.py} +0 -0
  896. /spire/xls/{XlsPicturesCollection.py → collection/XlsPicturesCollection.py} +0 -0
  897. /spire/xls/{XlsWorkbookObjectsCollection.py → collection/XlsWorkbookObjectsCollection.py} +0 -0
  898. /spire/xls/{XlsWorksheetChartsCollection.py → collection/XlsWorksheetChartsCollection.py} +0 -0
  899. /spire/xls/{XlsWorksheetConditionalFormats.py → collection/XlsWorksheetConditionalFormats.py} +0 -0
  900. /spire/xls/{PivotCachesCollection.py → collection/pivot_table/PivotCachesCollection.py} +0 -0
  901. /spire/xls/{PivotCalculatedFieldsCollection.py → collection/pivot_table/PivotCalculatedFieldsCollection.py} +0 -0
  902. /spire/xls/{PivotDataFields.py → collection/pivot_table/PivotDataFields.py} +0 -0
  903. /spire/xls/{PivotTablesCollection.py → collection/pivot_table/PivotTablesCollection.py} +0 -0
  904. /spire/xls/{XlsPivotTablesCollection.py → collection/pivot_table/XlsPivotTablesCollection.py} +0 -0
  905. /spire/xls/{AxisTypes.py → enums/AxisTypes.py} +0 -0
  906. /spire/xls/{CompoundLineType.py → enums/CompoundLineType.py} +0 -0
  907. /spire/xls/{ConditionValueType.py → enums/ConditionValueType.py} +0 -0
  908. /spire/xls/{ConditionalTopNType.py → enums/ConditionalTopNType.py} +0 -0
  909. /spire/xls/{ConnectionDataSourceType.py → enums/ConnectionDataSourceType.py} +0 -0
  910. /spire/xls/{CopyRangeOptions.py → enums/CopyRangeOptions.py} +0 -0
  911. /spire/xls/{DataBarAxisPosition.py → enums/DataBarAxisPosition.py} +0 -0
  912. /spire/xls/{DataBarBorderType.py → enums/DataBarBorderType.py} +0 -0
  913. /spire/xls/{DataBarFillType.py → enums/DataBarFillType.py} +0 -0
  914. /spire/xls/{DataBarNegativeColorType.py → enums/DataBarNegativeColorType.py} +0 -0
  915. /spire/xls/{DataMarkerDirection.py → enums/DataMarkerDirection.py} +0 -0
  916. /spire/xls/{DateTimeGroupingType.py → enums/DateTimeGroupingType.py} +0 -0
  917. /spire/xls/{DeleteOption.py → enums/DeleteOption.py} +0 -0
  918. /spire/xls/{DynamicFilterType.py → enums/DynamicFilterType.py} +0 -0
  919. /spire/xls/{ExcelClearOptions.py → enums/ExcelClearOptions.py} +0 -0
  920. /spire/xls/{ExcelFindOptions.py → enums/ExcelFindOptions.py} +0 -0
  921. /spire/xls/{ExcelSaveType.py → enums/ExcelSaveType.py} +0 -0
  922. /spire/xls/{ExcelTotalsCalculation.py → enums/ExcelTotalsCalculation.py} +0 -0
  923. /spire/xls/{FillPictureType.py → enums/FillPictureType.py} +0 -0
  924. /spire/xls/{FilterOperatorType.py → enums/FilterOperatorType.py} +0 -0
  925. /spire/xls/{FilterType.py → enums/FilterType.py} +0 -0
  926. /spire/xls/{FindType.py → enums/FindType.py} +0 -0
  927. /spire/xls/{GeomertyAdjustValueFormulaType.py → enums/GeomertyAdjustValueFormulaType.py} +0 -0
  928. /spire/xls/{GroupByType.py → enums/GroupByType.py} +0 -0
  929. /spire/xls/{HttpContentType.py → enums/HttpContentType.py} +0 -0
  930. /spire/xls/{IconSetType.py → enums/IconSetType.py} +0 -0
  931. /spire/xls/{InsertOptionsType.py → enums/InsertOptionsType.py} +0 -0
  932. /spire/xls/{LineShapeType.py → enums/LineShapeType.py} +0 -0
  933. /spire/xls/{MeasureUnits.py → enums/MeasureUnits.py} +0 -0
  934. /spire/xls/{MsoPathType.py → enums/MsoPathType.py} +0 -0
  935. /spire/xls/{OLEDBCommandType.py → enums/OLEDBCommandType.py} +0 -0
  936. /spire/xls/{OdsPageBackgroundImagePositionType.py → enums/OdsPageBackgroundImagePositionType.py} +0 -0
  937. /spire/xls/{OdsPageBackgroundImageType.py → enums/OdsPageBackgroundImageType.py} +0 -0
  938. /spire/xls/{OdsPageBackgroundType.py → enums/OdsPageBackgroundType.py} +0 -0
  939. /spire/xls/{OleLinkType.py → enums/OleLinkType.py} +0 -0
  940. /spire/xls/{PathFillMode.py → enums/PathFillMode.py} +0 -0
  941. /spire/xls/{PdfConformanceLevel.py → enums/PdfConformanceLevel.py} +0 -0
  942. /spire/xls/{PivotAutoFomatTypes.py → enums/PivotAutoFomatTypes.py} +0 -0
  943. /spire/xls/{PivotBuiltInStyles.py → enums/PivotBuiltInStyles.py} +0 -0
  944. /spire/xls/{PivotDataType.py → enums/PivotDataType.py} +0 -0
  945. /spire/xls/{PivotFieldFormatType.py → enums/PivotFieldFormatType.py} +0 -0
  946. /spire/xls/{PivotFieldSortType.py → enums/PivotFieldSortType.py} +0 -0
  947. /spire/xls/{PivotItemType.py → enums/PivotItemType.py} +0 -0
  948. /spire/xls/{PivotLabelFilterType.py → enums/PivotLabelFilterType.py} +0 -0
  949. /spire/xls/{PivotPageAreaFieldsOrderType.py → enums/PivotPageAreaFieldsOrderType.py} +0 -0
  950. /spire/xls/{PivotTableElement.py → enums/PivotTableElement.py} +0 -0
  951. /spire/xls/{PivotTableLayoutType.py → enums/PivotTableLayoutType.py} +0 -0
  952. /spire/xls/{PivotValueFilterType.py → enums/PivotValueFilterType.py} +0 -0
  953. /spire/xls/{PresetTextEffect.py → enums/PresetTextEffect.py} +0 -0
  954. /spire/xls/{PrintingPageType.py → enums/PrintingPageType.py} +0 -0
  955. /spire/xls/{PropertyType.py → enums/PropertyType.py} +0 -0
  956. /spire/xls/{PrstGeomShapeType.py → enums/PrstGeomShapeType.py} +0 -0
  957. /spire/xls/{RectangleShapeType.py → enums/RectangleShapeType.py} +0 -0
  958. /spire/xls/{RelationShip.py → enums/RelationShip.py} +0 -0
  959. /spire/xls/{RenameStrategy.py → enums/RenameStrategy.py} +0 -0
  960. /spire/xls/{RtfTags.py → enums/RtfTags.py} +0 -0
  961. /spire/xls/{SelectionType.py → enums/SelectionType.py} +0 -0
  962. /spire/xls/{SparklineEmptyCells.py → enums/SparklineEmptyCells.py} +0 -0
  963. /spire/xls/{SpartlineVerticalAxisType.py → enums/SpartlineVerticalAxisType.py} +0 -0
  964. /spire/xls/{StrikeThroughStyle.py → enums/StrikeThroughStyle.py} +0 -0
  965. /spire/xls/{StyleDefineType.py → enums/StyleDefineType.py} +0 -0
  966. /spire/xls/{SubtotalTypes.py → enums/SubtotalTypes.py} +0 -0
  967. /spire/xls/{TRangeValueType.py → enums/TRangeValueType.py} +0 -0
  968. /spire/xls/{TableBuiltInStyles.py → enums/TableBuiltInStyles.py} +0 -0
  969. /spire/xls/{TextDirectionType.py → enums/TextDirectionType.py} +0 -0
  970. /spire/xls/{TextVerticalValue.py → enums/TextVerticalValue.py} +0 -0
  971. /spire/xls/{TimePeriodType.py → enums/TimePeriodType.py} +0 -0
  972. /spire/xls/{UnderlineStyle.py → enums/UnderlineStyle.py} +0 -0
  973. /spire/xls/{WorksheetCopyType.py → enums/WorksheetCopyType.py} +0 -0
  974. /spire/xls/{XLSXChartBevelType.py → enums/XLSXChartBevelType.py} +0 -0
  975. /spire/xls/{XLSXChartLightingType.py → enums/XLSXChartLightingType.py} +0 -0
  976. /spire/xls/{XLSXPivotItemType.py → enums/XLSXPivotItemType.py} +0 -0
  977. /spire/xls/{XmlOpenType.py → enums/XmlOpenType.py} +0 -0
  978. /spire/xls/{IAddInFunction.py → interfaces/IAddInFunction.py} +0 -0
  979. /spire/xls/{IAutoFilter.py → interfaces/IAutoFilter.py} +0 -0
  980. /spire/xls/{IAutoFilterCondition.py → interfaces/IAutoFilterCondition.py} +0 -0
  981. /spire/xls/{IAutoFilters.py → interfaces/IAutoFilters.py} +0 -0
  982. /spire/xls/{IBorder.py → interfaces/IBorder.py} +0 -0
  983. /spire/xls/{IBuiltInDocumentProperties.py → interfaces/IBuiltInDocumentProperties.py} +0 -0
  984. /spire/xls/{IButtonShape.py → interfaces/IButtonShape.py} +0 -0
  985. /spire/xls/{IChartDropBar.py → interfaces/IChartDropBar.py} +0 -0
  986. /spire/xls/{IExcelApplication.py → interfaces/IExcelApplication.py} +0 -0
  987. /spire/xls/{IInternalWorksheet.py → interfaces/IInternalWorksheet.py} +0 -0
  988. /spire/xls/{IListBox.py → interfaces/IListBox.py} +0 -0
  989. /spire/xls/{IRichTextString.py → interfaces/IRichTextString.py} +0 -0
  990. /spire/xls/{IAddInFunctions.py → interfaces/collections/IAddInFunctions.py} +0 -0
  991. /spire/xls/{IArcShapes.py → interfaces/collections/IArcShapes.py} +0 -0
  992. /spire/xls/{IBorders.py → interfaces/collections/IBorders.py} +0 -0
  993. /spire/xls/{IButtonShapes.py → interfaces/collections/IButtonShapes.py} +0 -0
  994. /spire/xls/{IChartDataPoints.py → interfaces/collections/IChartDataPoints.py} +0 -0
  995. /spire/xls/{IChartLegendEntries.py → interfaces/collections/IChartLegendEntries.py} +0 -0
  996. /spire/xls/{IChartSeries.py → interfaces/collections/IChartSeries.py} +0 -0
  997. /spire/xls/{IChartShapes.py → interfaces/collections/IChartShapes.py} +0 -0
  998. /spire/xls/{IChartTrendLines.py → interfaces/collections/IChartTrendLines.py} +0 -0
  999. /spire/xls/{ICharts.py → interfaces/collections/ICharts.py} +0 -0
  1000. /spire/xls/{ICheckBoxes.py → interfaces/collections/ICheckBoxes.py} +0 -0
  1001. /spire/xls/{IComboBoxes.py → interfaces/collections/IComboBoxes.py} +0 -0
  1002. /spire/xls/{IComments.py → interfaces/collections/IComments.py} +0 -0
  1003. /spire/xls/{IConditionalFormatsCollection.py → interfaces/collections/IConditionalFormatsCollection.py} +0 -0
  1004. /spire/xls/{IGroupBoxes.py → interfaces/collections/IGroupBoxes.py} +0 -0
  1005. /spire/xls/{IHyperLinks.py → interfaces/collections/IHyperLinks.py} +0 -0
  1006. /spire/xls/{ILabelShapes.py → interfaces/collections/ILabelShapes.py} +0 -0
  1007. /spire/xls/{ILines.py → interfaces/collections/ILines.py} +0 -0
  1008. /spire/xls/{IListBoxes.py → interfaces/collections/IListBoxes.py} +0 -0
  1009. /spire/xls/{INameRanges.py → interfaces/collections/INameRanges.py} +0 -0
  1010. /spire/xls/{IOvalShapes.py → interfaces/collections/IOvalShapes.py} +0 -0
  1011. /spire/xls/{IPictures.py → interfaces/collections/IPictures.py} +0 -0
  1012. /spire/xls/{IRadioButtons.py → interfaces/collections/IRadioButtons.py} +0 -0
  1013. /spire/xls/{IRectangleShapes.py → interfaces/collections/IRectangleShapes.py} +0 -0
  1014. /spire/xls/{IScrollBarShapes.py → interfaces/collections/IScrollBarShapes.py} +0 -0
  1015. /spire/xls/{ISpinnerShapes.py → interfaces/collections/ISpinnerShapes.py} +0 -0
  1016. /spire/xls/{IStyles.py → interfaces/collections/IStyles.py} +0 -0
  1017. /spire/xls/{ITabSheets.py → interfaces/collections/ITabSheets.py} +0 -0
  1018. /spire/xls/{IWorksheetGroup.py → interfaces/collections/IWorksheetGroup.py} +0 -0
  1019. /spire/xls/{IWorksheets.py → interfaces/collections/IWorksheets.py} +0 -0
  1020. /spire/xls/{IPivotDataField.py → interfaces/pivot_table/IPivotDataField.py} +0 -0
  1021. /spire/xls/{IPivotDataFields.py → interfaces/pivot_table/IPivotDataFields.py} +0 -0
  1022. /spire/xls/{IPivotFields.py → interfaces/pivot_table/IPivotFields.py} +0 -0
  1023. /spire/xls/{IPivotTables.py → interfaces/pivot_table/IPivotTables.py} +0 -0
  1024. /spire/xls/{IDataSort.py → interfaces/sorting/IDataSort.py} +0 -0
  1025. /spire/xls/{PivotCache.py → pivot_tables/PivotCache.py} +0 -0
  1026. /spire/xls/{PivotField.py → pivot_tables/PivotField.py} +0 -0
  1027. /spire/xls/{PivotTable.py → pivot_tables/PivotTable.py} +0 -0
  1028. /spire/xls/{EncryptedKeyInfo.py → security/EncryptedKeyInfo.py} +0 -0
  1029. /spire/xls/{ISparkline.py → sparkline/ISparkline.py} +0 -0
  1030. /spire/xls/{ISparklineGroup.py → sparkline/ISparklineGroup.py} +0 -0
  1031. {spire_xls-15.5.0.dist-info → spire_xls-15.7.1.dist-info}/WHEEL +0 -0
  1032. {spire_xls-15.5.0.dist-info → spire_xls-15.7.1.dist-info}/top_level.txt +0 -0
spire/xls/XlsName.py CHANGED
@@ -7,14 +7,19 @@ from ctypes import *
7
7
  import abc
8
8
 
9
9
  class XlsName ( XlsObject, INamedRange, IXLSRange) :
10
- """
11
-
10
+ """Represents a named range or defined name in an Excel workbook.
11
+
12
+ This class extends XlsObject and implements INamedRange and IXLSRange interfaces
13
+ to provide functionality for working with named ranges, including accessing
14
+ and manipulating range properties, formatting, and cell values.
12
15
  """
13
16
  @property
14
17
 
15
18
  def Comment(self)->'ICommentShape':
16
- """
17
-
19
+ """Gets the comment associated with the named range.
20
+
21
+ Returns:
22
+ ICommentShape: The comment object.
18
23
  """
19
24
  GetDllLibXls().XlsName_get_Comment.argtypes=[c_void_p]
20
25
  GetDllLibXls().XlsName_get_Comment.restype=c_void_p
@@ -26,8 +31,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
26
31
  @property
27
32
 
28
33
  def RichText(self)->'IRichTextString':
29
- """
30
-
34
+ """Gets the rich text formatting for the named range.
35
+
36
+ Returns:
37
+ IRichTextString: The rich text formatting object.
31
38
  """
32
39
  GetDllLibXls().XlsName_get_RichText.argtypes=[c_void_p]
33
40
  GetDllLibXls().XlsName_get_RichText.restype=c_void_p
@@ -39,10 +46,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
39
46
  @property
40
47
 
41
48
  def HtmlString(self)->str:
42
- """
43
- <summary>
44
- Gets and sets the html string which contains data and some formattings in this cell.
45
- </summary>
49
+ """Gets and sets the HTML string which contains data and some formattings in this cell.
50
+
51
+ Returns:
52
+ str: The HTML string representation of the cell content.
46
53
  """
47
54
  GetDllLibXls().XlsName_get_HtmlString.argtypes=[c_void_p]
48
55
  GetDllLibXls().XlsName_get_HtmlString.restype=c_void_p
@@ -57,8 +64,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
57
64
 
58
65
  @property
59
66
  def HasMerged(self)->bool:
60
- """
61
-
67
+ """Gets whether the named range contains merged cells.
68
+
69
+ Returns:
70
+ bool: True if the range contains merged cells; otherwise, False.
62
71
  """
63
72
  GetDllLibXls().XlsName_get_HasMerged.argtypes=[c_void_p]
64
73
  GetDllLibXls().XlsName_get_HasMerged.restype=c_bool
@@ -68,8 +77,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
68
77
  @property
69
78
 
70
79
  def MergeArea(self)->'IXLSRange':
71
- """
72
-
80
+ """Gets the range that represents the merged area containing the named range.
81
+
82
+ Returns:
83
+ IXLSRange: The merged range.
73
84
  """
74
85
  GetDllLibXls().XlsName_get_MergeArea.argtypes=[c_void_p]
75
86
  GetDllLibXls().XlsName_get_MergeArea.restype=c_void_p
@@ -80,8 +91,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
80
91
 
81
92
  @property
82
93
  def IsWrapText(self)->bool:
83
- """
84
-
94
+ """Gets or sets whether text is wrapped within the cells in the named range.
95
+
96
+ Returns:
97
+ bool: True if text wrapping is enabled; otherwise, False.
85
98
  """
86
99
  GetDllLibXls().XlsName_get_IsWrapText.argtypes=[c_void_p]
87
100
  GetDllLibXls().XlsName_get_IsWrapText.restype=c_bool
@@ -95,10 +108,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
95
108
 
96
109
  @property
97
110
  def HasExternalFormula(self)->bool:
98
- """
99
- <summary>
100
- Indicates is current range has external formula. Read-only.
101
- </summary>
111
+ """Indicates if the current range has an external formula.
112
+
113
+ Returns:
114
+ bool: True if the range has an external formula; otherwise, False.
102
115
  """
103
116
  GetDllLibXls().XlsName_get_HasExternalFormula.argtypes=[c_void_p]
104
117
  GetDllLibXls().XlsName_get_HasExternalFormula.restype=c_bool
@@ -108,10 +121,12 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
108
121
  @property
109
122
 
110
123
  def IgnoreErrorOptions(self)->'IgnoreErrorType':
111
- """
112
- <summary>
113
- Represents ignore error options. If not single cell returs concatenateed flags.
114
- </summary>
124
+ """Gets or sets the error options to ignore for the named range.
125
+
126
+ If the range is not a single cell, returns concatenated flags.
127
+
128
+ Returns:
129
+ IgnoreErrorType: The error options to ignore.
115
130
  """
116
131
  GetDllLibXls().XlsName_get_IgnoreErrorOptions.argtypes=[c_void_p]
117
132
  GetDllLibXls().XlsName_get_IgnoreErrorOptions.restype=c_int
@@ -127,10 +142,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
127
142
  @property
128
143
 
129
144
  def IsStringsPreserved(self)->bool:
130
- """
131
- <summary>
132
- Indicates whether all values in the range are preserved as strings.
133
- </summary>
145
+ """Indicates whether all values in the range are preserved as strings.
146
+
147
+ Returns:
148
+ bool: True if values are preserved as strings; otherwise, False.
134
149
  """
135
150
  GetDllLibXls().XlsName_get_IsStringsPreserved.argtypes=[c_void_p]
136
151
  GetDllLibXls().XlsName_get_IsStringsPreserved.restype=c_bool
@@ -147,8 +162,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
147
162
  @property
148
163
 
149
164
  def BuiltInStyle(self)->BuiltInStyles:
150
- """
151
-
165
+ """Gets or sets the built-in style for the named range.
166
+
167
+ Returns:
168
+ BuiltInStyles: The built-in style.
152
169
  """
153
170
  GetDllLibXls().XlsName_get_BuiltInStyle.argtypes=[c_void_p]
154
171
  GetDllLibXls().XlsName_get_BuiltInStyle.restype=c_int
@@ -167,8 +184,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
167
184
  @property
168
185
 
169
186
  def Hyperlinks(self)->'IHyperLinks':
170
- """
171
-
187
+ """Gets the hyperlinks collection for the named range.
188
+
189
+ Returns:
190
+ IHyperLinks: The collection of hyperlinks.
172
191
  """
173
192
  GetDllLibXls().XlsName_get_Hyperlinks.argtypes=[c_void_p]
174
193
  GetDllLibXls().XlsName_get_Hyperlinks.restype=c_void_p
@@ -180,8 +199,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
180
199
  @dispatch
181
200
 
182
201
  def Activate(self ,scroll:bool)->IXLSRange:
183
- """
184
-
202
+ """Activates the named range and optionally scrolls to it.
203
+
204
+ Args:
205
+ scroll (bool): True to scroll the worksheet to display the range; otherwise, False.
206
+
207
+ Returns:
208
+ IXLSRange: The activated range.
185
209
  """
186
210
 
187
211
  GetDllLibXls().XlsName_Activate.argtypes=[c_void_p ,c_bool]
@@ -193,8 +217,7 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
193
217
 
194
218
  @dispatch
195
219
  def Merge(self):
196
- """
197
-
220
+ """Merges all cells in the named range into a single cell.
198
221
  """
199
222
  GetDllLibXls().XlsName_Merge.argtypes=[c_void_p]
200
223
  CallCFunction(GetDllLibXls().XlsName_Merge, self.Ptr)
@@ -202,30 +225,35 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
202
225
  @dispatch
203
226
 
204
227
  def Merge(self ,clearCells:bool):
205
- """
206
-
228
+ """Merges all cells in the named range into a single cell with an option to clear contents.
229
+
230
+ Args:
231
+ clearCells (bool): True to clear the contents of the merged cells; otherwise, False.
207
232
  """
208
233
 
209
234
  GetDllLibXls().XlsName_MergeC.argtypes=[c_void_p ,c_bool]
210
235
  CallCFunction(GetDllLibXls().XlsName_MergeC, self.Ptr, clearCells)
211
236
 
212
237
  def UnMerge(self):
213
- """
214
-
238
+ """Unmerges previously merged cells in the named range.
239
+
240
+ This method separates a merged cell into individual cells.
215
241
  """
216
242
  GetDllLibXls().XlsName_UnMerge.argtypes=[c_void_p]
217
243
  CallCFunction(GetDllLibXls().XlsName_UnMerge, self.Ptr)
218
244
 
219
245
  def FreezePanes(self):
220
- """
221
-
246
+ """Freezes panes at the position of the named range.
247
+
248
+ This method locks rows and columns to keep them visible while scrolling.
222
249
  """
223
250
  GetDllLibXls().XlsName_FreezePanes.argtypes=[c_void_p]
224
251
  CallCFunction(GetDllLibXls().XlsName_FreezePanes, self.Ptr)
225
252
 
226
253
  def ClearContents(self):
227
- """
228
-
254
+ """Clears the contents of the cells in the named range.
255
+
256
+ This method removes values but leaves formatting intact.
229
257
  """
230
258
  GetDllLibXls().XlsName_ClearContents.argtypes=[c_void_p]
231
259
  CallCFunction(GetDllLibXls().XlsName_ClearContents, self.Ptr)
@@ -233,8 +261,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
233
261
  @dispatch
234
262
 
235
263
  def Clear(self ,option:ExcelClearOptions):
236
- """
237
-
264
+ """Clears specified aspects of the cells in the named range.
265
+
266
+ Args:
267
+ option (ExcelClearOptions): The options specifying what to clear.
238
268
  """
239
269
  enumoption:c_int = option.value
240
270
 
@@ -244,8 +274,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
244
274
  @dispatch
245
275
 
246
276
  def Clear(self ,isClearFormat:bool):
247
- """
248
-
277
+ """Clears the cells in the named range with an option to clear formatting.
278
+
279
+ Args:
280
+ isClearFormat (bool): True to clear formatting; otherwise, False.
249
281
  """
250
282
 
251
283
  GetDllLibXls().XlsName_ClearI.argtypes=[c_void_p ,c_bool]
@@ -253,8 +285,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
253
285
 
254
286
 
255
287
  def Intersect(self ,range:'IXLSRange')->'IXLSRange':
256
- """
257
-
288
+ """Gets the range that represents the intersection of the named range and another range.
289
+
290
+ Args:
291
+ range (IXLSRange): The range to intersect with.
292
+
293
+ Returns:
294
+ IXLSRange: The range representing the intersection.
258
295
  """
259
296
  intPtrrange:c_void_p = range.Ptr
260
297
 
@@ -268,8 +305,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
268
305
  @dispatch
269
306
 
270
307
  def Merge(self ,range:IXLSRange)->IXLSRange:
271
- """
272
-
308
+ """Merges the named range with another range.
309
+
310
+ Args:
311
+ range (IXLSRange): The range to merge with.
312
+
313
+ Returns:
314
+ IXLSRange: The merged range.
273
315
  """
274
316
  intPtrrange:c_void_p = range.Ptr
275
317
 
@@ -281,23 +323,23 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
281
323
 
282
324
 
283
325
  def AutoFitRows(self):
284
- """
285
-
326
+ """Automatically adjusts the height of rows in the named range to fit their contents.
286
327
  """
287
328
  GetDllLibXls().XlsName_AutoFitRows.argtypes=[c_void_p]
288
329
  CallCFunction(GetDllLibXls().XlsName_AutoFitRows, self.Ptr)
289
330
 
290
331
  def AutoFitColumns(self):
291
- """
292
-
332
+ """Automatically adjusts the width of columns in the named range to fit their contents.
293
333
  """
294
334
  GetDllLibXls().XlsName_AutoFitColumns.argtypes=[c_void_p]
295
335
  CallCFunction(GetDllLibXls().XlsName_AutoFitColumns, self.Ptr)
296
336
 
297
337
 
298
338
  def AddComment(self)->'ICommentShape':
299
- """
300
-
339
+ """Adds a comment to the named range.
340
+
341
+ Returns:
342
+ ICommentShape: The newly added comment.
301
343
  """
302
344
  GetDllLibXls().XlsName_AddComment.argtypes=[c_void_p]
303
345
  GetDllLibXls().XlsName_AddComment.restype=c_void_p
@@ -308,8 +350,9 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
308
350
 
309
351
  @dispatch
310
352
  def BorderAround(self):
311
- """
312
-
353
+ """Adds a border around the named range using default line style and color.
354
+
355
+ This method applies a standard border around the outer edges of the named range.
313
356
  """
314
357
  GetDllLibXls().XlsName_BorderAround.argtypes=[c_void_p]
315
358
  CallCFunction(GetDllLibXls().XlsName_BorderAround, self.Ptr)
@@ -317,8 +360,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
317
360
  @dispatch
318
361
 
319
362
  def BorderAround(self ,borderLine:LineStyleType):
320
- """
321
-
363
+ """Adds a border around the named range with the specified line style.
364
+
365
+ Args:
366
+ borderLine (LineStyleType): The style of the border line.
322
367
  """
323
368
  enumborderLine:c_int = borderLine.value
324
369
 
@@ -328,8 +373,11 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
328
373
  @dispatch
329
374
 
330
375
  def BorderAround(self ,borderLine:LineStyleType,borderColor:Color):
331
- """
332
-
376
+ """Adds a border around the named range with the specified line style and color.
377
+
378
+ Args:
379
+ borderLine (LineStyleType): The style of the border line.
380
+ borderColor (Color): The color of the border.
333
381
  """
334
382
  enumborderLine:c_int = borderLine.value
335
383
  intPtrborderColor:c_void_p = borderColor.Ptr
@@ -340,8 +388,11 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
340
388
  @dispatch
341
389
 
342
390
  def BorderAround(self ,borderLine:LineStyleType,borderColor:ExcelColors):
343
- """
344
-
391
+ """Adds a border around the named range with the specified line style and Excel color.
392
+
393
+ Args:
394
+ borderLine (LineStyleType): The style of the border line.
395
+ borderColor (ExcelColors): The Excel color of the border.
345
396
  """
346
397
  enumborderLine:c_int = borderLine.value
347
398
  enumborderColor:c_int = borderColor.value
@@ -351,8 +402,9 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
351
402
 
352
403
  @dispatch
353
404
  def BorderInside(self):
354
- """
355
-
405
+ """Adds inside borders to the named range using default line style and color.
406
+
407
+ This method applies borders to the inner cell boundaries of the named range.
356
408
  """
357
409
  GetDllLibXls().XlsName_BorderInside.argtypes=[c_void_p]
358
410
  CallCFunction(GetDllLibXls().XlsName_BorderInside, self.Ptr)
@@ -360,8 +412,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
360
412
  @dispatch
361
413
 
362
414
  def BorderInside(self ,borderLine:LineStyleType):
363
- """
364
-
415
+ """Adds inside borders to the named range with the specified line style.
416
+
417
+ Args:
418
+ borderLine (LineStyleType): The style of the inside border lines.
365
419
  """
366
420
  enumborderLine:c_int = borderLine.value
367
421
 
@@ -371,8 +425,11 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
371
425
  @dispatch
372
426
 
373
427
  def BorderInside(self ,borderLine:LineStyleType,borderColor:Color):
374
- """
375
-
428
+ """Adds inside borders to the named range with the specified line style and color.
429
+
430
+ Args:
431
+ borderLine (LineStyleType): The style of the inside border lines.
432
+ borderColor (Color): The color of the inside borders.
376
433
  """
377
434
  enumborderLine:c_int = borderLine.value
378
435
  intPtrborderColor:c_void_p = borderColor.Ptr
@@ -383,8 +440,11 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
383
440
  @dispatch
384
441
 
385
442
  def BorderInside(self ,borderLine:LineStyleType,borderColor:ExcelColors):
386
- """
387
-
443
+ """Adds inside borders to the named range with the specified line style and Excel color.
444
+
445
+ Args:
446
+ borderLine (LineStyleType): The style of the inside border lines.
447
+ borderColor (ExcelColors): The Excel color of the inside borders.
388
448
  """
389
449
  enumborderLine:c_int = borderLine.value
390
450
  enumborderColor:c_int = borderColor.value
@@ -393,16 +453,19 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
393
453
  CallCFunction(GetDllLibXls().XlsName_BorderInsideBB1, self.Ptr, enumborderLine,enumborderColor)
394
454
 
395
455
  def BorderNone(self):
396
- """
397
-
456
+ """Removes all borders from the named range.
457
+
458
+ This method clears both outside and inside borders from the range.
398
459
  """
399
460
  GetDllLibXls().XlsName_BorderNone.argtypes=[c_void_p]
400
461
  CallCFunction(GetDllLibXls().XlsName_BorderNone, self.Ptr)
401
462
 
402
463
 
403
464
  def CollapseGroup(self ,groupBy:'GroupByType'):
404
- """
405
-
465
+ """Collapses a group of rows or columns in the named range.
466
+
467
+ Args:
468
+ groupBy (GroupByType): Specifies whether to collapse by rows or columns.
406
469
  """
407
470
  enumgroupBy:c_int = groupBy.value
408
471
 
@@ -412,8 +475,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
412
475
  @dispatch
413
476
 
414
477
  def ExpandGroup(self ,groupBy:GroupByType):
415
- """
416
-
478
+ """Expands a collapsed group of rows or columns in the named range.
479
+
480
+ Args:
481
+ groupBy (GroupByType): Specifies whether to expand by rows or columns.
417
482
  """
418
483
  enumgroupBy:c_int = groupBy.value
419
484
 
@@ -423,8 +488,11 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
423
488
  @dispatch
424
489
 
425
490
  def ExpandGroup(self ,groupBy:GroupByType,flags:ExpandCollapseFlags):
426
- """
427
-
491
+ """Expands a collapsed group of rows or columns with additional options.
492
+
493
+ Args:
494
+ groupBy (GroupByType): Specifies whether to expand by rows or columns.
495
+ flags (ExpandCollapseFlags): Additional flags to control the expand behavior.
428
496
  """
429
497
  enumgroupBy:c_int = groupBy.value
430
498
  enumflags:c_int = flags.value
@@ -434,8 +502,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
434
502
 
435
503
 
436
504
  def GetEnumerator(self)->'IEnumerator':
437
- """
438
-
505
+ """Gets an enumerator that can be used to iterate through the cells in the named range.
506
+
507
+ Returns:
508
+ IEnumerator: An enumerator for iterating through the cells.
439
509
  """
440
510
  GetDllLibXls().XlsName_GetEnumerator.argtypes=[c_void_p]
441
511
  GetDllLibXls().XlsName_GetEnumerator.restype=c_void_p
@@ -447,8 +517,12 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
447
517
  @dispatch
448
518
 
449
519
  def Activate(self)->IXLSRange:
450
- """
451
-
520
+ """Activates the named range in the worksheet.
521
+
522
+ This overload activates the range without scrolling the worksheet.
523
+
524
+ Returns:
525
+ IXLSRange: The activated range.
452
526
  """
453
527
  GetDllLibXls().XlsName_Activate1.argtypes=[c_void_p]
454
528
  GetDllLibXls().XlsName_Activate1.restype=c_void_p
@@ -460,8 +534,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
460
534
  @dispatch
461
535
 
462
536
  def Clone(self ,parent:SpireObject)->SpireObject:
463
- """
464
-
537
+ """Creates a copy of this named range with the specified parent object.
538
+
539
+ Args:
540
+ parent (SpireObject): The parent object for the cloned range.
541
+
542
+ Returns:
543
+ SpireObject: The cloned named range.
465
544
  """
466
545
  intPtrparent:c_void_p = parent.Ptr
467
546
 
@@ -492,8 +571,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
492
571
 
493
572
 
494
573
  def ConvertFullRowColumnName(self ,version:'ExcelVersion'):
495
- """
496
-
574
+ """Converts the named range to a full row or column reference based on Excel version.
575
+
576
+ This method adjusts the named range reference to cover entire rows or columns
577
+ according to the specified Excel version's format.
578
+
579
+ Args:
580
+ version (ExcelVersion): The Excel version to use for the conversion.
497
581
  """
498
582
  enumversion:c_int = version.value
499
583
 
@@ -502,8 +586,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
502
586
 
503
587
 
504
588
  def CopyTo(self ,destination:'IXLSRange')->'IXLSRange':
505
- """
506
-
589
+ """Copies the content and formatting of the named range to a destination range.
590
+
591
+ Args:
592
+ destination (IXLSRange): The destination range to copy to.
593
+
594
+ Returns:
595
+ IXLSRange: The destination range after the copy operation.
507
596
  """
508
597
  intPtrdestination:c_void_p = destination.Ptr
509
598
 
@@ -592,8 +681,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
592
681
  @dispatch
593
682
 
594
683
  def FindFirst(self ,findValue:TimeSpan)->IXLSRange:
595
- """
596
-
684
+ """Finds the first cell in the named range containing the specified TimeSpan value.
685
+
686
+ Args:
687
+ findValue (TimeSpan): The TimeSpan value to search for.
688
+
689
+ Returns:
690
+ IXLSRange: The first cell containing the specified value, or None if not found.
597
691
  """
598
692
  intPtrfindValue:c_void_p = findValue.Ptr
599
693
 
@@ -607,8 +701,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
607
701
  @dispatch
608
702
 
609
703
  def FindFirst(self ,findValue:DateTime)->IXLSRange:
610
- """
611
-
704
+ """Finds the first cell in the named range containing the specified DateTime value.
705
+
706
+ Args:
707
+ findValue (DateTime): The DateTime value to search for.
708
+
709
+ Returns:
710
+ IXLSRange: The first cell containing the specified value, or None if not found.
612
711
  """
613
712
  intPtrfindValue:c_void_p = findValue.Ptr
614
713
 
@@ -622,8 +721,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
622
721
  @dispatch
623
722
 
624
723
  def FindFirst(self ,findValue:bool)->IXLSRange:
625
- """
626
-
724
+ """Finds the first cell in the named range containing the specified boolean value.
725
+
726
+ Args:
727
+ findValue (bool): The boolean value to search for.
728
+
729
+ Returns:
730
+ IXLSRange: The first cell containing the specified value, or None if not found.
627
731
  """
628
732
 
629
733
  GetDllLibXls().XlsName_FindFirstF1.argtypes=[c_void_p ,c_bool]
@@ -636,8 +740,14 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
636
740
  @dispatch
637
741
 
638
742
  def FindFirst(self ,findValue:float,flags:FindType)->IXLSRange:
639
- """
640
-
743
+ """Finds the first cell in the named range containing the specified numeric value.
744
+
745
+ Args:
746
+ findValue (float): The numeric value to search for.
747
+ flags (FindType): Search options to control how the value is matched.
748
+
749
+ Returns:
750
+ IXLSRange: The first cell containing the specified value, or None if not found.
641
751
  """
642
752
  enumflags:c_int = flags.value
643
753
 
@@ -651,8 +761,14 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
651
761
  @dispatch
652
762
 
653
763
  def FindFirst(self ,findValue:str,flags:FindType)->IXLSRange:
654
- """
655
-
764
+ """Finds the first cell in the named range containing the specified string value.
765
+
766
+ Args:
767
+ findValue (str): The string value to search for.
768
+ flags (FindType): Search options to control how the string is matched.
769
+
770
+ Returns:
771
+ IXLSRange: The first cell containing the specified value, or None if not found.
656
772
  """
657
773
  enumflags:c_int = flags.value
658
774
 
@@ -666,8 +782,12 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
666
782
  @dispatch
667
783
 
668
784
  def SetIndex(self ,index:int):
669
- """
670
-
785
+ """Sets the index of the named range in the collection.
786
+
787
+ This method changes the position of the named range in the collection.
788
+
789
+ Args:
790
+ index (int): The new index position for the named range.
671
791
  """
672
792
 
673
793
  GetDllLibXls().XlsName_SetIndex.argtypes=[c_void_p ,c_int]
@@ -676,8 +796,14 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
676
796
  @dispatch
677
797
 
678
798
  def SetIndex(self ,index:int,bRaiseEvent:bool):
679
- """
680
-
799
+ """Sets the index of the named range with an option to raise an event.
800
+
801
+ This method changes the position of the named range in the collection
802
+ and optionally raises a notification event.
803
+
804
+ Args:
805
+ index (int): The new index position for the named range.
806
+ bRaiseEvent (bool): True to raise an event after setting the index; False otherwise.
681
807
  """
682
808
 
683
809
  GetDllLibXls().XlsName_SetIndexIB.argtypes=[c_void_p ,c_int,c_bool]
@@ -700,8 +826,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
700
826
 
701
827
  @property
702
828
  def Index(self)->int:
703
- """
704
-
829
+ """Gets the index of the named range in the collection.
830
+
831
+ Returns:
832
+ int: The zero-based index of the named range.
705
833
  """
706
834
  GetDllLibXls().XlsName_get_Index.argtypes=[c_void_p]
707
835
  GetDllLibXls().XlsName_get_Index.restype=c_int
@@ -711,8 +839,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
711
839
  @property
712
840
 
713
841
  def Name(self)->str:
714
- """
715
-
842
+ """Gets or sets the name of the named range.
843
+
844
+ Returns:
845
+ str: The name of the named range.
716
846
  """
717
847
  GetDllLibXls().XlsName_get_Name.argtypes=[c_void_p]
718
848
  GetDllLibXls().XlsName_get_Name.restype=c_void_p
@@ -722,14 +852,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
722
852
 
723
853
  @Name.setter
724
854
  def Name(self, value:str):
855
+ """Sets the name of the named range.
856
+
857
+ Args:
858
+ value (str): The new name to assign to the named range.
859
+ """
725
860
  GetDllLibXls().XlsName_set_Name.argtypes=[c_void_p, c_wchar_p]
726
861
  CallCFunction(GetDllLibXls().XlsName_set_Name, self.Ptr, value)
727
862
 
728
863
  @property
729
864
 
730
865
  def NameLocal(self)->str:
731
- """
732
-
866
+ """Gets or sets the localized name of the named range.
867
+
868
+ Returns:
869
+ str: The localized name of the named range.
733
870
  """
734
871
  GetDllLibXls().XlsName_get_NameLocal.argtypes=[c_void_p]
735
872
  GetDllLibXls().XlsName_get_NameLocal.restype=c_void_p
@@ -739,14 +876,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
739
876
 
740
877
  @NameLocal.setter
741
878
  def NameLocal(self, value:str):
879
+ """Sets the localized name of the named range.
880
+
881
+ Args:
882
+ value (str): The new localized name to assign to the named range.
883
+ """
742
884
  GetDllLibXls().XlsName_set_NameLocal.argtypes=[c_void_p, c_wchar_p]
743
885
  CallCFunction(GetDllLibXls().XlsName_set_NameLocal, self.Ptr, value)
744
886
 
745
887
  @property
746
888
 
747
889
  def RefersToRange(self)->'IXLSRange':
748
- """
749
-
890
+ """Gets or sets the cell range that this named range refers to.
891
+
892
+ Returns:
893
+ IXLSRange: The cell range that this named range refers to.
750
894
  """
751
895
  GetDllLibXls().XlsName_get_RefersToRange.argtypes=[c_void_p]
752
896
  GetDllLibXls().XlsName_get_RefersToRange.restype=c_void_p
@@ -757,14 +901,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
757
901
 
758
902
  @RefersToRange.setter
759
903
  def RefersToRange(self, value:'IXLSRange'):
904
+ """Sets the cell range that this named range refers to.
905
+
906
+ Args:
907
+ value (IXLSRange): The cell range to associate with this named range.
908
+ """
760
909
  GetDllLibXls().XlsName_set_RefersToRange.argtypes=[c_void_p, c_void_p]
761
910
  CallCFunction(GetDllLibXls().XlsName_set_RefersToRange, self.Ptr, value.Ptr)
762
911
 
763
912
  @property
764
913
 
765
914
  def Value(self)->str:
766
- """
767
-
915
+ """Gets or sets the value of the named range as a string.
916
+
917
+ Returns:
918
+ str: The value of the named range.
768
919
  """
769
920
  GetDllLibXls().XlsName_get_Value.argtypes=[c_void_p]
770
921
  GetDllLibXls().XlsName_get_Value.restype=c_void_p
@@ -774,13 +925,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
774
925
 
775
926
  @Value.setter
776
927
  def Value(self, value:str):
928
+ """Sets the value of the named range.
929
+
930
+ Args:
931
+ value (str): The value to set for the named range.
932
+ """
777
933
  GetDllLibXls().XlsName_set_Value.argtypes=[c_void_p, c_wchar_p]
778
934
  CallCFunction(GetDllLibXls().XlsName_set_Value, self.Ptr, value)
779
935
 
780
936
  @property
781
937
  def Visible(self)->bool:
782
- """
783
-
938
+ """Gets or sets whether the named range is visible in the workbook.
939
+
940
+ Returns:
941
+ bool: True if the named range is visible; otherwise, False.
784
942
  """
785
943
  GetDllLibXls().XlsName_get_Visible.argtypes=[c_void_p]
786
944
  GetDllLibXls().XlsName_get_Visible.restype=c_bool
@@ -789,13 +947,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
789
947
 
790
948
  @Visible.setter
791
949
  def Visible(self, value:bool):
950
+ """Sets whether the named range is visible in the workbook.
951
+
952
+ Args:
953
+ value (bool): True to make the named range visible; False to hide it.
954
+ """
792
955
  GetDllLibXls().XlsName_set_Visible.argtypes=[c_void_p, c_bool]
793
956
  CallCFunction(GetDllLibXls().XlsName_set_Visible, self.Ptr, value)
794
957
 
795
958
  @property
796
959
  def IsLocal(self)->bool:
797
- """
798
-
960
+ """Gets whether the named range is local to a specific worksheet.
961
+
962
+ Returns:
963
+ bool: True if the named range is local to a worksheet; False if it's workbook-level.
799
964
  """
800
965
  GetDllLibXls().XlsName_get_IsLocal.argtypes=[c_void_p]
801
966
  GetDllLibXls().XlsName_get_IsLocal.restype=c_bool
@@ -805,8 +970,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
805
970
  @property
806
971
 
807
972
  def ValueR1C1(self)->str:
808
- """
809
-
973
+ """Gets the formula of the named range in R1C1 notation.
974
+
975
+ Returns:
976
+ str: The formula in R1C1 notation.
810
977
  """
811
978
  GetDllLibXls().XlsName_get_ValueR1C1.argtypes=[c_void_p]
812
979
  GetDllLibXls().XlsName_get_ValueR1C1.restype=c_void_p
@@ -817,8 +984,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
817
984
  @property
818
985
 
819
986
  def Worksheet(self)->'IWorksheet':
820
- """
821
-
987
+ """Gets the worksheet containing the named range.
988
+
989
+ Returns:
990
+ IWorksheet: The worksheet that contains the named range.
822
991
  """
823
992
  GetDllLibXls().XlsName_get_Worksheet.argtypes=[c_void_p]
824
993
  GetDllLibXls().XlsName_get_Worksheet.restype=c_void_p
@@ -830,8 +999,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
830
999
  @property
831
1000
 
832
1001
  def Scope(self)->str:
833
- """
834
-
1002
+ """Gets the scope of the named range (workbook or worksheet level).
1003
+
1004
+ Returns:
1005
+ str: The scope of the named range.
835
1006
  """
836
1007
  GetDllLibXls().XlsName_get_Scope.argtypes=[c_void_p]
837
1008
  GetDllLibXls().XlsName_get_Scope.restype=c_void_p
@@ -840,8 +1011,9 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
840
1011
 
841
1012
 
842
1013
  def Delete(self):
843
- """
844
-
1014
+ """Deletes the named range from the workbook.
1015
+
1016
+ This method removes the named range definition but does not affect the cells it refers to.
845
1017
  """
846
1018
  GetDllLibXls().XlsName_Delete.argtypes=[c_void_p]
847
1019
  CallCFunction(GetDllLibXls().XlsName_Delete, self.Ptr)
@@ -849,8 +1021,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
849
1021
  @property
850
1022
 
851
1023
  def RangeAddress(self)->str:
852
- """
853
-
1024
+ """Gets the address of the named range in A1 notation.
1025
+
1026
+ Returns:
1027
+ str: The address of the named range in A1 notation.
854
1028
  """
855
1029
  GetDllLibXls().XlsName_get_RangeAddress.argtypes=[c_void_p]
856
1030
  GetDllLibXls().XlsName_get_RangeAddress.restype=c_void_p
@@ -861,8 +1035,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
861
1035
  @property
862
1036
 
863
1037
  def RangeAddressLocal(self)->str:
864
- """
865
-
1038
+ """Gets the localized address of the named range in A1 notation.
1039
+
1040
+ Returns:
1041
+ str: The localized address of the named range in A1 notation.
866
1042
  """
867
1043
  GetDllLibXls().XlsName_get_RangeAddressLocal.argtypes=[c_void_p]
868
1044
  GetDllLibXls().XlsName_get_RangeAddressLocal.restype=c_void_p
@@ -873,8 +1049,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
873
1049
  @property
874
1050
 
875
1051
  def RangeGlobalAddress(self)->str:
876
- """
877
-
1052
+ """Gets the global address of the named range.
1053
+
1054
+ Returns:
1055
+ str: The global address of the named range, including the worksheet name.
878
1056
  """
879
1057
  GetDllLibXls().XlsName_get_RangeGlobalAddress.argtypes=[c_void_p]
880
1058
  GetDllLibXls().XlsName_get_RangeGlobalAddress.restype=c_void_p
@@ -885,8 +1063,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
885
1063
  @property
886
1064
 
887
1065
  def RangeGlobalAddress2007(self)->str:
888
- """
889
-
1066
+ """Gets the global address of the named range in Excel 2007 format.
1067
+
1068
+ Returns:
1069
+ str: The global address of the named range in Excel 2007 format.
890
1070
  """
891
1071
  GetDllLibXls().XlsName_get_RangeGlobalAddress2007.argtypes=[c_void_p]
892
1072
  GetDllLibXls().XlsName_get_RangeGlobalAddress2007.restype=c_void_p
@@ -897,8 +1077,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
897
1077
  @property
898
1078
 
899
1079
  def RangeR1C1Address(self)->str:
900
- """
901
-
1080
+ """Gets the address of the named range in R1C1 notation.
1081
+
1082
+ Returns:
1083
+ str: The address of the named range in R1C1 notation.
902
1084
  """
903
1085
  GetDllLibXls().XlsName_get_RangeR1C1Address.argtypes=[c_void_p]
904
1086
  GetDllLibXls().XlsName_get_RangeR1C1Address.restype=c_void_p
@@ -909,8 +1091,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
909
1091
  @property
910
1092
 
911
1093
  def RangeR1C1AddressLocal(self)->str:
912
- """
913
-
1094
+ """Gets the localized address of the named range in R1C1 notation.
1095
+
1096
+ Returns:
1097
+ str: The localized address of the named range in R1C1 notation.
914
1098
  """
915
1099
  GetDllLibXls().XlsName_get_RangeR1C1AddressLocal.argtypes=[c_void_p]
916
1100
  GetDllLibXls().XlsName_get_RangeR1C1AddressLocal.restype=c_void_p
@@ -920,8 +1104,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
920
1104
 
921
1105
  @property
922
1106
  def BooleanValue(self)->bool:
923
- """
924
-
1107
+ """Gets or sets the boolean value of the named range.
1108
+
1109
+ Returns:
1110
+ bool: The boolean value.
925
1111
  """
926
1112
  GetDllLibXls().XlsName_get_BooleanValue.argtypes=[c_void_p]
927
1113
  GetDllLibXls().XlsName_get_BooleanValue.restype=c_bool
@@ -930,14 +1116,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
930
1116
 
931
1117
  @BooleanValue.setter
932
1118
  def BooleanValue(self, value:bool):
1119
+ """Sets the boolean value of the named range.
1120
+
1121
+ Args:
1122
+ value (bool): The boolean value to set.
1123
+ """
933
1124
  GetDllLibXls().XlsName_set_BooleanValue.argtypes=[c_void_p, c_bool]
934
1125
  CallCFunction(GetDllLibXls().XlsName_set_BooleanValue, self.Ptr, value)
935
1126
 
936
1127
  @property
937
1128
 
938
1129
  def Borders(self)->'IBorders':
939
- """
940
-
1130
+ """Gets the borders collection for the named range.
1131
+
1132
+ Returns:
1133
+ IBorders: The collection of borders.
941
1134
  """
942
1135
  GetDllLibXls().XlsName_get_Borders.argtypes=[c_void_p]
943
1136
  GetDllLibXls().XlsName_get_Borders.restype=c_void_p
@@ -957,6 +1150,7 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
957
1150
  # intPtr = CallCFunction(GetDllLibXls().XlsName_get_Cells, self.Ptr)
958
1151
  # ret = None if intPtr==None else ListCellRanges(intPtr)
959
1152
  # return ret
1153
+ #
960
1154
 
961
1155
 
962
1156
  # @property
@@ -975,8 +1169,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
975
1169
 
976
1170
  @property
977
1171
  def Column(self)->int:
978
- """
979
-
1172
+ """Gets the column index of the first cell in the named range.
1173
+
1174
+ Returns:
1175
+ int: The zero-based column index.
980
1176
  """
981
1177
  GetDllLibXls().XlsName_get_Column.argtypes=[c_void_p]
982
1178
  GetDllLibXls().XlsName_get_Column.restype=c_int
@@ -985,8 +1181,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
985
1181
 
986
1182
  @property
987
1183
  def ColumnGroupLevel(self)->int:
988
- """
989
-
1184
+ """Gets the outline level for columns in the named range.
1185
+
1186
+ Returns:
1187
+ int: The column group level.
990
1188
  """
991
1189
  GetDllLibXls().XlsName_get_ColumnGroupLevel.argtypes=[c_void_p]
992
1190
  GetDllLibXls().XlsName_get_ColumnGroupLevel.restype=c_int
@@ -995,8 +1193,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
995
1193
 
996
1194
  @property
997
1195
  def ColumnWidth(self)->float:
998
- """
999
-
1196
+ """Gets or sets the width of columns in the named range.
1197
+
1198
+ Returns:
1199
+ float: The column width in characters.
1000
1200
  """
1001
1201
  GetDllLibXls().XlsName_get_ColumnWidth.argtypes=[c_void_p]
1002
1202
  GetDllLibXls().XlsName_get_ColumnWidth.restype=c_double
@@ -1005,13 +1205,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1005
1205
 
1006
1206
  @ColumnWidth.setter
1007
1207
  def ColumnWidth(self, value:float):
1208
+ """Sets the width of columns in the named range.
1209
+
1210
+ Args:
1211
+ value (float): The column width in characters.
1212
+ """
1008
1213
  GetDllLibXls().XlsName_set_ColumnWidth.argtypes=[c_void_p, c_double]
1009
1214
  CallCFunction(GetDllLibXls().XlsName_set_ColumnWidth, self.Ptr, value)
1010
1215
 
1011
1216
  @property
1012
1217
  def Count(self)->int:
1013
- """
1014
-
1218
+ """Gets the number of cells in the named range.
1219
+
1220
+ Returns:
1221
+ int: The count of cells.
1015
1222
  """
1016
1223
  GetDllLibXls().XlsName_get_Count.argtypes=[c_void_p]
1017
1224
  GetDllLibXls().XlsName_get_Count.restype=c_int
@@ -1021,8 +1228,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1021
1228
  @property
1022
1229
 
1023
1230
  def DateTimeValue(self)->'DateTime':
1024
- """
1025
-
1231
+ """Gets or sets the date/time value of the named range.
1232
+
1233
+ Returns:
1234
+ DateTime: The date/time value.
1026
1235
  """
1027
1236
  GetDllLibXls().XlsName_get_DateTimeValue.argtypes=[c_void_p]
1028
1237
  GetDllLibXls().XlsName_get_DateTimeValue.restype=c_void_p
@@ -1033,14 +1242,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1033
1242
 
1034
1243
  @DateTimeValue.setter
1035
1244
  def DateTimeValue(self, value:'DateTime'):
1245
+ """Sets the date/time value of the named range.
1246
+
1247
+ Args:
1248
+ value (DateTime): The date/time value to set.
1249
+ """
1036
1250
  GetDllLibXls().XlsName_set_DateTimeValue.argtypes=[c_void_p, c_void_p]
1037
1251
  CallCFunction(GetDllLibXls().XlsName_set_DateTimeValue, self.Ptr, value.Ptr)
1038
1252
 
1039
1253
  @property
1040
1254
 
1041
1255
  def NumberText(self)->str:
1042
- """
1043
-
1256
+ """Gets the text representation of the numeric value in the named range.
1257
+
1258
+ Returns:
1259
+ str: The text representation of the numeric value.
1044
1260
  """
1045
1261
  GetDllLibXls().XlsName_get_NumberText.argtypes=[c_void_p]
1046
1262
  GetDllLibXls().XlsName_get_NumberText.restype=c_void_p
@@ -1051,8 +1267,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1051
1267
  @property
1052
1268
 
1053
1269
  def EndCell(self)->'IXLSRange':
1054
- """
1055
-
1270
+ """Gets the cell at the bottom-right corner of the named range.
1271
+
1272
+ Returns:
1273
+ IXLSRange: The end cell of the named range.
1056
1274
  """
1057
1275
  GetDllLibXls().XlsName_get_EndCell.argtypes=[c_void_p]
1058
1276
  GetDllLibXls().XlsName_get_EndCell.restype=c_void_p
@@ -1064,8 +1282,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1064
1282
  @property
1065
1283
 
1066
1284
  def EntireColumn(self)->'IXLSRange':
1067
- """
1068
-
1285
+ """Gets a range representing all cells in the columns of the named range.
1286
+
1287
+ Returns:
1288
+ IXLSRange: The range representing the entire columns.
1069
1289
  """
1070
1290
  GetDllLibXls().XlsName_get_EntireColumn.argtypes=[c_void_p]
1071
1291
  GetDllLibXls().XlsName_get_EntireColumn.restype=c_void_p
@@ -1077,8 +1297,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1077
1297
  @property
1078
1298
 
1079
1299
  def EntireRow(self)->'IXLSRange':
1080
- """
1081
-
1300
+ """Gets a range representing all cells in the rows of the named range.
1301
+
1302
+ Returns:
1303
+ IXLSRange: The range representing the entire rows.
1082
1304
  """
1083
1305
  GetDllLibXls().XlsName_get_EntireRow.argtypes=[c_void_p]
1084
1306
  GetDllLibXls().XlsName_get_EntireRow.restype=c_void_p
@@ -1090,8 +1312,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1090
1312
  @property
1091
1313
 
1092
1314
  def ErrorValue(self)->str:
1093
- """
1094
-
1315
+ """Gets or sets the error value of the named range.
1316
+
1317
+ Returns:
1318
+ str: The error value as a string.
1095
1319
  """
1096
1320
  GetDllLibXls().XlsName_get_ErrorValue.argtypes=[c_void_p]
1097
1321
  GetDllLibXls().XlsName_get_ErrorValue.restype=c_void_p
@@ -1101,14 +1325,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1101
1325
 
1102
1326
  @ErrorValue.setter
1103
1327
  def ErrorValue(self, value:str):
1328
+ """Sets the error value of the named range.
1329
+
1330
+ Args:
1331
+ value (str): The error value to set.
1332
+ """
1104
1333
  GetDllLibXls().XlsName_set_ErrorValue.argtypes=[c_void_p, c_wchar_p]
1105
1334
  CallCFunction(GetDllLibXls().XlsName_set_ErrorValue, self.Ptr, value)
1106
1335
 
1107
1336
  @property
1108
1337
 
1109
1338
  def Formula(self)->str:
1110
- """
1111
-
1339
+ """Gets or sets the formula of the named range in A1 notation.
1340
+
1341
+ Returns:
1342
+ str: The formula string in A1 notation.
1112
1343
  """
1113
1344
  GetDllLibXls().XlsName_get_Formula.argtypes=[c_void_p]
1114
1345
  GetDllLibXls().XlsName_get_Formula.restype=c_void_p
@@ -1118,14 +1349,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1118
1349
 
1119
1350
  @Formula.setter
1120
1351
  def Formula(self, value:str):
1352
+ """Sets the formula of the named range in A1 notation.
1353
+
1354
+ Args:
1355
+ value (str): The formula string in A1 notation.
1356
+ """
1121
1357
  GetDllLibXls().XlsName_set_Formula.argtypes=[c_void_p, c_wchar_p]
1122
1358
  CallCFunction(GetDllLibXls().XlsName_set_Formula, self.Ptr, value)
1123
1359
 
1124
1360
  @property
1125
1361
 
1126
1362
  def FormulaArray(self)->str:
1127
- """
1128
-
1363
+ """Gets or sets the array formula of the named range.
1364
+
1365
+ Returns:
1366
+ str: The array formula string.
1129
1367
  """
1130
1368
  GetDllLibXls().XlsName_get_FormulaArray.argtypes=[c_void_p]
1131
1369
  GetDllLibXls().XlsName_get_FormulaArray.restype=c_void_p
@@ -1135,14 +1373,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1135
1373
 
1136
1374
  @FormulaArray.setter
1137
1375
  def FormulaArray(self, value:str):
1376
+ """Sets the array formula of the named range.
1377
+
1378
+ Args:
1379
+ value (str): The array formula string to set.
1380
+ """
1138
1381
  GetDllLibXls().XlsName_set_FormulaArray.argtypes=[c_void_p, c_wchar_p]
1139
1382
  CallCFunction(GetDllLibXls().XlsName_set_FormulaArray, self.Ptr, value)
1140
1383
 
1141
1384
  @property
1142
1385
 
1143
1386
  def FormulaArrayR1C1(self)->str:
1144
- """
1145
-
1387
+ """Gets or sets the array formula of the named range in R1C1 notation.
1388
+
1389
+ Returns:
1390
+ str: The array formula string in R1C1 notation.
1146
1391
  """
1147
1392
  GetDllLibXls().XlsName_get_FormulaArrayR1C1.argtypes=[c_void_p]
1148
1393
  GetDllLibXls().XlsName_get_FormulaArrayR1C1.restype=c_void_p
@@ -1152,13 +1397,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1152
1397
 
1153
1398
  @FormulaArrayR1C1.setter
1154
1399
  def FormulaArrayR1C1(self, value:str):
1400
+ """Sets the array formula of the named range in R1C1 notation.
1401
+
1402
+ Args:
1403
+ value (str): The array formula string in R1C1 notation to set.
1404
+ """
1155
1405
  GetDllLibXls().XlsName_set_FormulaArrayR1C1.argtypes=[c_void_p, c_wchar_p]
1156
1406
  CallCFunction(GetDllLibXls().XlsName_set_FormulaArrayR1C1, self.Ptr, value)
1157
1407
 
1158
1408
  @property
1159
1409
  def IsFormulaHidden(self)->bool:
1160
- """
1161
-
1410
+ """Gets or sets whether the formula in the named range is hidden.
1411
+
1412
+ Returns:
1413
+ bool: True if the formula is hidden; otherwise, False.
1162
1414
  """
1163
1415
  GetDllLibXls().XlsName_get_IsFormulaHidden.argtypes=[c_void_p]
1164
1416
  GetDllLibXls().XlsName_get_IsFormulaHidden.restype=c_bool
@@ -1167,14 +1419,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1167
1419
 
1168
1420
  @IsFormulaHidden.setter
1169
1421
  def IsFormulaHidden(self, value:bool):
1422
+ """Sets whether the formula in the named range is hidden.
1423
+
1424
+ Args:
1425
+ value (bool): True to hide the formula; False to show it.
1426
+ """
1170
1427
  GetDllLibXls().XlsName_set_IsFormulaHidden.argtypes=[c_void_p, c_bool]
1171
1428
  CallCFunction(GetDllLibXls().XlsName_set_IsFormulaHidden, self.Ptr, value)
1172
1429
 
1173
1430
  @property
1174
1431
 
1175
1432
  def FormulaDateTime(self)->'DateTime':
1176
- """
1177
-
1433
+ """Gets or sets the DateTime value of a formula in the named range.
1434
+
1435
+ Returns:
1436
+ DateTime: The DateTime value of the formula.
1178
1437
  """
1179
1438
  GetDllLibXls().XlsName_get_FormulaDateTime.argtypes=[c_void_p]
1180
1439
  GetDllLibXls().XlsName_get_FormulaDateTime.restype=c_void_p
@@ -1185,14 +1444,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1185
1444
 
1186
1445
  @FormulaDateTime.setter
1187
1446
  def FormulaDateTime(self, value:'DateTime'):
1447
+ """Sets the DateTime value of a formula in the named range.
1448
+
1449
+ Args:
1450
+ value (DateTime): The DateTime value to set for the formula.
1451
+ """
1188
1452
  GetDllLibXls().XlsName_set_FormulaDateTime.argtypes=[c_void_p, c_void_p]
1189
1453
  CallCFunction(GetDllLibXls().XlsName_set_FormulaDateTime, self.Ptr, value.Ptr)
1190
1454
 
1191
1455
  @property
1192
1456
 
1193
1457
  def FormulaR1C1(self)->str:
1194
- """
1195
-
1458
+ """Gets or sets the formula of the named range in R1C1 notation.
1459
+
1460
+ Returns:
1461
+ str: The formula string in R1C1 notation.
1196
1462
  """
1197
1463
  GetDllLibXls().XlsName_get_FormulaR1C1.argtypes=[c_void_p]
1198
1464
  GetDllLibXls().XlsName_get_FormulaR1C1.restype=c_void_p
@@ -1202,13 +1468,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1202
1468
 
1203
1469
  @FormulaR1C1.setter
1204
1470
  def FormulaR1C1(self, value:str):
1471
+ """Sets the formula of the named range in R1C1 notation.
1472
+
1473
+ Args:
1474
+ value (str): The formula string in R1C1 notation to set.
1475
+ """
1205
1476
  GetDllLibXls().XlsName_set_FormulaR1C1.argtypes=[c_void_p, c_wchar_p]
1206
1477
  CallCFunction(GetDllLibXls().XlsName_set_FormulaR1C1, self.Ptr, value)
1207
1478
 
1208
1479
  @property
1209
1480
  def FormulaBoolValue(self)->bool:
1210
- """
1211
-
1481
+ """Gets or sets the boolean value of a formula in the named range.
1482
+
1483
+ Returns:
1484
+ bool: The boolean value of the formula.
1212
1485
  """
1213
1486
  GetDllLibXls().XlsName_get_FormulaBoolValue.argtypes=[c_void_p]
1214
1487
  GetDllLibXls().XlsName_get_FormulaBoolValue.restype=c_bool
@@ -1217,14 +1490,21 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1217
1490
 
1218
1491
  @FormulaBoolValue.setter
1219
1492
  def FormulaBoolValue(self, value:bool):
1493
+ """Sets the boolean value of a formula in the named range.
1494
+
1495
+ Args:
1496
+ value (bool): The boolean value to set for the formula.
1497
+ """
1220
1498
  GetDllLibXls().XlsName_set_FormulaBoolValue.argtypes=[c_void_p, c_bool]
1221
1499
  CallCFunction(GetDllLibXls().XlsName_set_FormulaBoolValue, self.Ptr, value)
1222
1500
 
1223
1501
  @property
1224
1502
 
1225
1503
  def FormulaErrorValue(self)->str:
1226
- """
1227
-
1504
+ """Gets or sets the error value of a formula in the named range.
1505
+
1506
+ Returns:
1507
+ str: The error value of the formula as a string.
1228
1508
  """
1229
1509
  GetDllLibXls().XlsName_get_FormulaErrorValue.argtypes=[c_void_p]
1230
1510
  GetDllLibXls().XlsName_get_FormulaErrorValue.restype=c_void_p
@@ -1234,13 +1514,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1234
1514
 
1235
1515
  @FormulaErrorValue.setter
1236
1516
  def FormulaErrorValue(self, value:str):
1517
+ """Sets the error value of a formula in the named range.
1518
+
1519
+ Args:
1520
+ value (str): The error value to set for the formula.
1521
+ """
1237
1522
  GetDllLibXls().XlsName_set_FormulaErrorValue.argtypes=[c_void_p, c_wchar_p]
1238
1523
  CallCFunction(GetDllLibXls().XlsName_set_FormulaErrorValue, self.Ptr, value)
1239
1524
 
1240
1525
  @property
1241
1526
  def HasDataValidation(self)->bool:
1242
- """
1243
-
1527
+ """Gets whether the named range has data validation rules applied.
1528
+
1529
+ Returns:
1530
+ bool: True if the named range has data validation; otherwise, False.
1244
1531
  """
1245
1532
  GetDllLibXls().XlsName_get_HasDataValidation.argtypes=[c_void_p]
1246
1533
  GetDllLibXls().XlsName_get_HasDataValidation.restype=c_bool
@@ -1249,8 +1536,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1249
1536
 
1250
1537
  @property
1251
1538
  def HasBoolean(self)->bool:
1252
- """
1253
-
1539
+ """Gets whether the named range contains a boolean value.
1540
+
1541
+ Returns:
1542
+ bool: True if the named range contains a boolean value; otherwise, False.
1254
1543
  """
1255
1544
  GetDllLibXls().XlsName_get_HasBoolean.argtypes=[c_void_p]
1256
1545
  GetDllLibXls().XlsName_get_HasBoolean.restype=c_bool
@@ -1259,8 +1548,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1259
1548
 
1260
1549
  @property
1261
1550
  def HasDateTime(self)->bool:
1262
- """
1263
-
1551
+ """Gets whether the named range contains a DateTime value.
1552
+
1553
+ Returns:
1554
+ bool: True if the named range contains a DateTime value; otherwise, False.
1264
1555
  """
1265
1556
  GetDllLibXls().XlsName_get_HasDateTime.argtypes=[c_void_p]
1266
1557
  GetDllLibXls().XlsName_get_HasDateTime.restype=c_bool
@@ -1269,8 +1560,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1269
1560
 
1270
1561
  @property
1271
1562
  def HasFormula(self)->bool:
1272
- """
1273
-
1563
+ """Gets whether the named range contains a formula.
1564
+
1565
+ Returns:
1566
+ bool: True if the named range contains a formula; otherwise, False.
1274
1567
  """
1275
1568
  GetDllLibXls().XlsName_get_HasFormula.argtypes=[c_void_p]
1276
1569
  GetDllLibXls().XlsName_get_HasFormula.restype=c_bool
@@ -1279,8 +1572,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1279
1572
 
1280
1573
  @property
1281
1574
  def HasFormulaArray(self)->bool:
1282
- """
1283
-
1575
+ """Gets whether the named range has an array formula.
1576
+
1577
+ Returns:
1578
+ bool: True if the named range has an array formula; otherwise, False.
1284
1579
  """
1285
1580
  GetDllLibXls().XlsName_get_HasFormulaArray.argtypes=[c_void_p]
1286
1581
  GetDllLibXls().XlsName_get_HasFormulaArray.restype=c_bool
@@ -1289,8 +1584,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1289
1584
 
1290
1585
  @property
1291
1586
  def HasFormulaDateTime(self)->bool:
1292
- """
1293
-
1587
+ """Gets whether the named range has a date/time formula value.
1588
+
1589
+ Returns:
1590
+ bool: True if the named range has a date/time formula value; otherwise, False.
1294
1591
  """
1295
1592
  GetDllLibXls().XlsName_get_HasFormulaDateTime.argtypes=[c_void_p]
1296
1593
  GetDllLibXls().XlsName_get_HasFormulaDateTime.restype=c_bool
@@ -1299,8 +1596,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1299
1596
 
1300
1597
  @property
1301
1598
  def HasFormulaNumberValue(self)->bool:
1302
- """
1303
-
1599
+ """Gets whether the named range has a numeric formula value.
1600
+
1601
+ Returns:
1602
+ bool: True if the named range has a numeric formula value; otherwise, False.
1304
1603
  """
1305
1604
  GetDllLibXls().XlsName_get_HasFormulaNumberValue.argtypes=[c_void_p]
1306
1605
  GetDllLibXls().XlsName_get_HasFormulaNumberValue.restype=c_bool
@@ -1309,8 +1608,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1309
1608
 
1310
1609
  @property
1311
1610
  def HasFormulaStringValue(self)->bool:
1312
- """
1313
-
1611
+ """Gets whether the named range has a string formula value.
1612
+
1613
+ Returns:
1614
+ bool: True if the named range has a string formula value; otherwise, False.
1314
1615
  """
1315
1616
  GetDllLibXls().XlsName_get_HasFormulaStringValue.argtypes=[c_void_p]
1316
1617
  GetDllLibXls().XlsName_get_HasFormulaStringValue.restype=c_bool
@@ -1319,8 +1620,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1319
1620
 
1320
1621
  @property
1321
1622
  def HasNumber(self)->bool:
1322
- """
1323
-
1623
+ """Gets whether the named range has a numeric value.
1624
+
1625
+ Returns:
1626
+ bool: True if the named range has a numeric value; otherwise, False.
1324
1627
  """
1325
1628
  GetDllLibXls().XlsName_get_HasNumber.argtypes=[c_void_p]
1326
1629
  GetDllLibXls().XlsName_get_HasNumber.restype=c_bool
@@ -1329,8 +1632,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1329
1632
 
1330
1633
  @property
1331
1634
  def HasRichText(self)->bool:
1332
- """
1333
-
1635
+ """Gets whether the named range has rich text content.
1636
+
1637
+ Returns:
1638
+ bool: True if the named range has rich text content; otherwise, False.
1334
1639
  """
1335
1640
  GetDllLibXls().XlsName_get_HasRichText.argtypes=[c_void_p]
1336
1641
  GetDllLibXls().XlsName_get_HasRichText.restype=c_bool
@@ -1339,8 +1644,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1339
1644
 
1340
1645
  @property
1341
1646
  def HasString(self)->bool:
1342
- """
1343
-
1647
+ """Gets whether the named range has a string value.
1648
+
1649
+ Returns:
1650
+ bool: True if the named range has a string value; otherwise, False.
1344
1651
  """
1345
1652
  GetDllLibXls().XlsName_get_HasString.argtypes=[c_void_p]
1346
1653
  GetDllLibXls().XlsName_get_HasString.restype=c_bool
@@ -1349,8 +1656,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1349
1656
 
1350
1657
  @property
1351
1658
  def HasStyle(self)->bool:
1352
- """
1353
-
1659
+ """Gets whether the named range has a style applied.
1660
+
1661
+ Returns:
1662
+ bool: True if the named range has a style applied; otherwise, False.
1354
1663
  """
1355
1664
  GetDllLibXls().XlsName_get_HasStyle.argtypes=[c_void_p]
1356
1665
  GetDllLibXls().XlsName_get_HasStyle.restype=c_bool
@@ -1360,8 +1669,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1360
1669
  @property
1361
1670
 
1362
1671
  def HorizontalAlignment(self)->'HorizontalAlignType':
1363
- """
1364
-
1672
+ """Gets or sets the horizontal alignment of the named range.
1673
+
1674
+ Returns:
1675
+ HorizontalAlignType: The horizontal alignment setting.
1365
1676
  """
1366
1677
  GetDllLibXls().XlsName_get_HorizontalAlignment.argtypes=[c_void_p]
1367
1678
  GetDllLibXls().XlsName_get_HorizontalAlignment.restype=c_int
@@ -1371,13 +1682,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1371
1682
 
1372
1683
  @HorizontalAlignment.setter
1373
1684
  def HorizontalAlignment(self, value:'HorizontalAlignType'):
1685
+ """Sets the horizontal alignment of the named range.
1686
+
1687
+ Args:
1688
+ value (HorizontalAlignType): The horizontal alignment setting to apply.
1689
+ """
1374
1690
  GetDllLibXls().XlsName_set_HorizontalAlignment.argtypes=[c_void_p, c_int]
1375
1691
  CallCFunction(GetDllLibXls().XlsName_set_HorizontalAlignment, self.Ptr, value.value)
1376
1692
 
1377
1693
  @property
1378
1694
  def IndentLevel(self)->int:
1379
- """
1380
-
1695
+ """Gets or sets the indent level for the named range.
1696
+
1697
+ Returns:
1698
+ int: The indent level value.
1381
1699
  """
1382
1700
  GetDllLibXls().XlsName_get_IndentLevel.argtypes=[c_void_p]
1383
1701
  GetDllLibXls().XlsName_get_IndentLevel.restype=c_int
@@ -1386,13 +1704,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1386
1704
 
1387
1705
  @IndentLevel.setter
1388
1706
  def IndentLevel(self, value:int):
1707
+ """Sets the indent level for the named range.
1708
+
1709
+ Args:
1710
+ value (int): The indent level to set.
1711
+ """
1389
1712
  GetDllLibXls().XlsName_set_IndentLevel.argtypes=[c_void_p, c_int]
1390
1713
  CallCFunction(GetDllLibXls().XlsName_set_IndentLevel, self.Ptr, value)
1391
1714
 
1392
1715
  @property
1393
1716
  def IsBlank(self)->bool:
1394
- """
1395
-
1717
+ """Gets whether the named range contains blank cells.
1718
+
1719
+ Returns:
1720
+ bool: True if the named range contains blank cells; otherwise, False.
1396
1721
  """
1397
1722
  GetDllLibXls().XlsName_get_IsBlank.argtypes=[c_void_p]
1398
1723
  GetDllLibXls().XlsName_get_IsBlank.restype=c_bool
@@ -1401,8 +1726,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1401
1726
 
1402
1727
  @property
1403
1728
  def IsBuiltIn(self)->bool:
1404
- """
1405
-
1729
+ """Gets whether the named range is a built-in name.
1730
+
1731
+ Returns:
1732
+ bool: True if the named range is a built-in name; otherwise, False.
1406
1733
  """
1407
1734
  GetDllLibXls().XlsName_get_IsBuiltIn.argtypes=[c_void_p]
1408
1735
  GetDllLibXls().XlsName_get_IsBuiltIn.restype=c_bool
@@ -1411,13 +1738,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1411
1738
 
1412
1739
  @IsBuiltIn.setter
1413
1740
  def IsBuiltIn(self, value:bool):
1741
+ """Sets whether the named range is a built-in name.
1742
+
1743
+ Args:
1744
+ value (bool): True to mark the named range as built-in; False otherwise.
1745
+ """
1414
1746
  GetDllLibXls().XlsName_set_IsBuiltIn.argtypes=[c_void_p, c_bool]
1415
1747
  CallCFunction(GetDllLibXls().XlsName_set_IsBuiltIn, self.Ptr, value)
1416
1748
 
1417
1749
  @property
1418
1750
  def IsExternName(self)->bool:
1419
- """
1420
-
1751
+ """Gets whether the named range is an external name.
1752
+
1753
+ Returns:
1754
+ bool: True if the named range is an external name; otherwise, False.
1421
1755
  """
1422
1756
  GetDllLibXls().XlsName_get_IsExternName.argtypes=[c_void_p]
1423
1757
  GetDllLibXls().XlsName_get_IsExternName.restype=c_bool
@@ -1426,8 +1760,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1426
1760
 
1427
1761
  @property
1428
1762
  def IsFunction(self)->bool:
1429
- """
1430
-
1763
+ """Gets whether the named range is a function.
1764
+
1765
+ Returns:
1766
+ bool: True if the named range is a function; otherwise, False.
1431
1767
  """
1432
1768
  GetDllLibXls().XlsName_get_IsFunction.argtypes=[c_void_p]
1433
1769
  GetDllLibXls().XlsName_get_IsFunction.restype=c_bool
@@ -1436,13 +1772,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1436
1772
 
1437
1773
  @IsFunction.setter
1438
1774
  def IsFunction(self, value:bool):
1775
+ """Sets whether the named range is a function.
1776
+
1777
+ Args:
1778
+ value (bool): True to make the named range a function; False otherwise.
1779
+ """
1439
1780
  GetDllLibXls().XlsName_set_IsFunction.argtypes=[c_void_p, c_bool]
1440
1781
  CallCFunction(GetDllLibXls().XlsName_set_IsFunction, self.Ptr, value)
1441
1782
 
1442
1783
  @property
1443
1784
  def HasError(self)->bool:
1444
- """
1445
-
1785
+ """Gets whether the named range has an error.
1786
+
1787
+ Returns:
1788
+ bool: True if the named range has an error; otherwise, False.
1446
1789
  """
1447
1790
  GetDllLibXls().XlsName_get_HasError.argtypes=[c_void_p]
1448
1791
  GetDllLibXls().XlsName_get_HasError.restype=c_bool
@@ -1451,8 +1794,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1451
1794
 
1452
1795
  @property
1453
1796
  def IsGroupedByColumn(self)->bool:
1454
- """
1455
-
1797
+ """Gets whether the named range is grouped by columns.
1798
+
1799
+ Returns:
1800
+ bool: True if the named range is grouped by columns; otherwise, False.
1456
1801
  """
1457
1802
  GetDllLibXls().XlsName_get_IsGroupedByColumn.argtypes=[c_void_p]
1458
1803
  GetDllLibXls().XlsName_get_IsGroupedByColumn.restype=c_bool
@@ -1461,8 +1806,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1461
1806
 
1462
1807
  @property
1463
1808
  def IsGroupedByRow(self)->bool:
1464
- """
1465
-
1809
+ """Gets whether the named range is grouped by rows.
1810
+
1811
+ Returns:
1812
+ bool: True if the named range is grouped by rows; otherwise, False.
1466
1813
  """
1467
1814
  GetDllLibXls().XlsName_get_IsGroupedByRow.argtypes=[c_void_p]
1468
1815
  GetDllLibXls().XlsName_get_IsGroupedByRow.restype=c_bool
@@ -1471,8 +1818,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1471
1818
 
1472
1819
  @property
1473
1820
  def IsInitialized(self)->bool:
1474
- """
1475
-
1821
+ """Gets whether the named range is initialized.
1822
+
1823
+ Returns:
1824
+ bool: True if the named range is initialized; otherwise, False.
1476
1825
  """
1477
1826
  GetDllLibXls().XlsName_get_IsInitialized.argtypes=[c_void_p]
1478
1827
  GetDllLibXls().XlsName_get_IsInitialized.restype=c_bool
@@ -1481,8 +1830,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1481
1830
 
1482
1831
  @property
1483
1832
  def LastColumn(self)->int:
1484
- """
1485
-
1833
+ """Gets the index of the last column of the named range.
1834
+
1835
+ Returns:
1836
+ int: The index of the last column of the named range.
1486
1837
  """
1487
1838
  GetDllLibXls().XlsName_get_LastColumn.argtypes=[c_void_p]
1488
1839
  GetDllLibXls().XlsName_get_LastColumn.restype=c_int
@@ -1491,13 +1842,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1491
1842
 
1492
1843
  @LastColumn.setter
1493
1844
  def LastColumn(self, value:int):
1845
+ """Sets the index of the last column of the named range.
1846
+
1847
+ Args:
1848
+ value (int): The index of the last column of the named range.
1849
+ """
1494
1850
  GetDllLibXls().XlsName_set_LastColumn.argtypes=[c_void_p, c_int]
1495
1851
  CallCFunction(GetDllLibXls().XlsName_set_LastColumn, self.Ptr, value)
1496
1852
 
1497
1853
  @property
1498
1854
  def LastRow(self)->int:
1499
- """
1500
-
1855
+ """Gets the index of the last row of the named range.
1856
+
1857
+ Returns:
1858
+ int: The index of the last row of the named range.
1501
1859
  """
1502
1860
  GetDllLibXls().XlsName_get_LastRow.argtypes=[c_void_p]
1503
1861
  GetDllLibXls().XlsName_get_LastRow.restype=c_int
@@ -1506,13 +1864,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1506
1864
 
1507
1865
  @LastRow.setter
1508
1866
  def LastRow(self, value:int):
1867
+ """Sets the index of the last row of the named range.
1868
+
1869
+ Args:
1870
+ value (int): The index of the last row of the named range.
1871
+ """
1509
1872
  GetDllLibXls().XlsName_set_LastRow.argtypes=[c_void_p, c_int]
1510
1873
  CallCFunction(GetDllLibXls().XlsName_set_LastRow, self.Ptr, value)
1511
1874
 
1512
1875
  @property
1513
1876
  def NumberValue(self)->float:
1514
- """
1515
-
1877
+ """Gets the numeric value of the named range.
1878
+
1879
+ Returns:
1880
+ float: The numeric value of the named range.
1516
1881
  """
1517
1882
  GetDllLibXls().XlsName_get_NumberValue.argtypes=[c_void_p]
1518
1883
  GetDllLibXls().XlsName_get_NumberValue.restype=c_double
@@ -1521,30 +1886,42 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1521
1886
 
1522
1887
  @NumberValue.setter
1523
1888
  def NumberValue(self, value:float):
1889
+ """Sets the numeric value of the named range.
1890
+
1891
+ Args:
1892
+ value (float): The numeric value to set.
1893
+ """
1524
1894
  GetDllLibXls().XlsName_set_NumberValue.argtypes=[c_void_p, c_double]
1525
1895
  CallCFunction(GetDllLibXls().XlsName_set_NumberValue, self.Ptr, value)
1526
1896
 
1527
1897
  @property
1528
-
1529
1898
  def NumberFormat(self)->str:
1530
- """
1531
-
1899
+ """Gets the number format string of the named range.
1900
+
1901
+ Returns:
1902
+ str: The number format string of the named range.
1532
1903
  """
1533
1904
  GetDllLibXls().XlsName_get_NumberFormat.argtypes=[c_void_p]
1534
1905
  GetDllLibXls().XlsName_get_NumberFormat.restype=c_void_p
1535
1906
  ret = PtrToStr(CallCFunction(GetDllLibXls().XlsName_get_NumberFormat, self.Ptr))
1536
1907
  return ret
1537
1908
 
1538
-
1539
1909
  @NumberFormat.setter
1540
1910
  def NumberFormat(self, value:str):
1911
+ """Sets the number format string of the named range.
1912
+
1913
+ Args:
1914
+ value (str): The number format string to set.
1915
+ """
1541
1916
  GetDllLibXls().XlsName_set_NumberFormat.argtypes=[c_void_p, c_wchar_p]
1542
1917
  CallCFunction(GetDllLibXls().XlsName_set_NumberFormat, self.Ptr, value)
1543
1918
 
1544
1919
  @property
1545
1920
  def Row(self)->int:
1546
- """
1547
-
1921
+ """Gets the index of the first row of the named range.
1922
+
1923
+ Returns:
1924
+ int: The index of the first row of the named range.
1548
1925
  """
1549
1926
  GetDllLibXls().XlsName_get_Row.argtypes=[c_void_p]
1550
1927
  GetDllLibXls().XlsName_get_Row.restype=c_int
@@ -1553,8 +1930,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1553
1930
 
1554
1931
  @property
1555
1932
  def RowGroupLevel(self)->int:
1556
- """
1557
-
1933
+ """Gets the outline level of the row in the named range.
1934
+
1935
+ Returns:
1936
+ int: The outline level of the row in the named range.
1558
1937
  """
1559
1938
  GetDllLibXls().XlsName_get_RowGroupLevel.argtypes=[c_void_p]
1560
1939
  GetDllLibXls().XlsName_get_RowGroupLevel.restype=c_int
@@ -1563,8 +1942,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1563
1942
 
1564
1943
  @property
1565
1944
  def RowHeight(self)->float:
1566
- """
1567
-
1945
+ """Gets the height of the row in the named range.
1946
+
1947
+ Returns:
1948
+ float: The height of the row in the named range.
1568
1949
  """
1569
1950
  GetDllLibXls().XlsName_get_RowHeight.argtypes=[c_void_p]
1570
1951
  GetDllLibXls().XlsName_get_RowHeight.restype=c_double
@@ -1573,14 +1954,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1573
1954
 
1574
1955
  @RowHeight.setter
1575
1956
  def RowHeight(self, value:float):
1957
+ """Sets the height of the row in the named range.
1958
+
1959
+ Args:
1960
+ value (float): The height to set.
1961
+ """
1576
1962
  GetDllLibXls().XlsName_set_RowHeight.argtypes=[c_void_p, c_double]
1577
1963
  CallCFunction(GetDllLibXls().XlsName_set_RowHeight, self.Ptr, value)
1578
1964
 
1579
1965
  @property
1580
-
1581
1966
  def Rows(self)->ListXlsRanges:
1582
- """
1583
-
1967
+ """Gets the collection of rows in the named range.
1968
+
1969
+ Returns:
1970
+ ListXlsRanges: The collection of rows in the named range.
1584
1971
  """
1585
1972
  GetDllLibXls().XlsName_get_Rows.argtypes=[c_void_p]
1586
1973
  GetDllLibXls().XlsName_get_Rows.restype=c_void_p
@@ -1588,12 +1975,12 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1588
1975
  ret = None if intPtr==None else ListXlsRanges(intPtr)
1589
1976
  return ret
1590
1977
 
1591
-
1592
1978
  @property
1593
-
1594
1979
  def Columns(self)->ListXlsRanges:
1595
- """
1596
-
1980
+ """Gets the collection of columns in the named range.
1981
+
1982
+ Returns:
1983
+ ListXlsRanges: The collection of columns in the named range.
1597
1984
  """
1598
1985
  GetDllLibXls().XlsName_get_Columns.argtypes=[c_void_p]
1599
1986
  GetDllLibXls().XlsName_get_Columns.restype=c_void_p
@@ -1601,12 +1988,12 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1601
1988
  ret = None if intPtr==None else ListXlsRanges(intPtr)
1602
1989
  return ret
1603
1990
 
1604
-
1605
1991
  @property
1606
-
1607
1992
  def Style(self)->'IStyle':
1608
- """
1609
-
1993
+ """Gets the style applied to the named range.
1994
+
1995
+ Returns:
1996
+ IStyle: The style applied to the named range.
1610
1997
  """
1611
1998
  GetDllLibXls().XlsName_get_Style.argtypes=[c_void_p]
1612
1999
  GetDllLibXls().XlsName_get_Style.restype=c_void_p
@@ -1614,51 +2001,66 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1614
2001
  ret = None if intPtr==None else CellStyle(intPtr)
1615
2002
  return ret
1616
2003
 
1617
-
1618
2004
  @Style.setter
1619
2005
  def Style(self, value:'IStyle'):
2006
+ """Sets the style applied to the named range.
2007
+
2008
+ Args:
2009
+ value (IStyle): The style to apply.
2010
+ """
1620
2011
  GetDllLibXls().XlsName_set_Style.argtypes=[c_void_p, c_void_p]
1621
2012
  CallCFunction(GetDllLibXls().XlsName_set_Style, self.Ptr, value.Ptr)
1622
2013
 
1623
2014
  @property
1624
-
1625
2015
  def CellStyleName(self)->str:
1626
- """
1627
-
2016
+ """Gets the name of the cell style applied to the named range.
2017
+
2018
+ Returns:
2019
+ str: The name of the cell style applied to the named range.
1628
2020
  """
1629
2021
  GetDllLibXls().XlsName_get_CellStyleName.argtypes=[c_void_p]
1630
2022
  GetDllLibXls().XlsName_get_CellStyleName.restype=c_void_p
1631
2023
  ret = PtrToStr(CallCFunction(GetDllLibXls().XlsName_get_CellStyleName, self.Ptr))
1632
2024
  return ret
1633
2025
 
1634
-
1635
2026
  @CellStyleName.setter
1636
2027
  def CellStyleName(self, value:str):
2028
+ """Sets the name of the cell style applied to the named range.
2029
+
2030
+ Args:
2031
+ value (str): The name of the cell style to apply.
2032
+ """
1637
2033
  GetDllLibXls().XlsName_set_CellStyleName.argtypes=[c_void_p, c_wchar_p]
1638
2034
  CallCFunction(GetDllLibXls().XlsName_set_CellStyleName, self.Ptr, value)
1639
2035
 
1640
2036
  @property
1641
-
1642
2037
  def Text(self)->str:
1643
- """
1644
-
2038
+ """Gets the text value of the named range.
2039
+
2040
+ Returns:
2041
+ str: The text value of the named range.
1645
2042
  """
1646
2043
  GetDllLibXls().XlsName_get_Text.argtypes=[c_void_p]
1647
2044
  GetDllLibXls().XlsName_get_Text.restype=c_void_p
1648
2045
  ret = PtrToStr(CallCFunction(GetDllLibXls().XlsName_get_Text, self.Ptr))
1649
2046
  return ret
1650
2047
 
1651
-
1652
2048
  @Text.setter
1653
2049
  def Text(self, value:str):
2050
+ """Sets the text value of the named range.
2051
+
2052
+ Args:
2053
+ value (str): The text value to set.
2054
+ """
1654
2055
  GetDllLibXls().XlsName_set_Text.argtypes=[c_void_p, c_wchar_p]
1655
2056
  CallCFunction(GetDllLibXls().XlsName_set_Text, self.Ptr, value)
1656
2057
 
1657
2058
  @property
1658
-
1659
2059
  def TimeSpanValue(self)->'TimeSpan':
1660
- """
1661
-
2060
+ """Gets the TimeSpan value of the named range.
2061
+
2062
+ Returns:
2063
+ TimeSpan: The TimeSpan value of the named range.
1662
2064
  """
1663
2065
  GetDllLibXls().XlsName_get_TimeSpanValue.argtypes=[c_void_p]
1664
2066
  GetDllLibXls().XlsName_get_TimeSpanValue.restype=c_void_p
@@ -1666,31 +2068,34 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1666
2068
  ret = None if intPtr==None else TimeSpan(intPtr)
1667
2069
  return ret
1668
2070
 
1669
-
1670
2071
  @TimeSpanValue.setter
1671
2072
  def TimeSpanValue(self, value:'TimeSpan'):
2073
+ """Sets the TimeSpan value of the named range.
2074
+
2075
+ Args:
2076
+ value (TimeSpan): The TimeSpan value to set.
2077
+ """
1672
2078
  GetDllLibXls().XlsName_set_TimeSpanValue.argtypes=[c_void_p, c_void_p]
1673
2079
  CallCFunction(GetDllLibXls().XlsName_set_TimeSpanValue, self.Ptr, value.Ptr)
1674
2080
 
1675
2081
  @property
1676
-
1677
2082
  def EnvalutedValue(self)->str:
1678
- """
1679
- <summary>
1680
- Returns the calculated value of a formula.
1681
- </summary>
2083
+ """Gets the calculated value of a formula in the named range.
2084
+
2085
+ Returns:
2086
+ str: The calculated value of the formula.
1682
2087
  """
1683
2088
  GetDllLibXls().XlsName_get_EnvalutedValue.argtypes=[c_void_p]
1684
2089
  GetDllLibXls().XlsName_get_EnvalutedValue.restype=c_void_p
1685
2090
  ret = PtrToStr(CallCFunction(GetDllLibXls().XlsName_get_EnvalutedValue, self.Ptr))
1686
2091
  return ret
1687
2092
 
1688
-
1689
2093
  @property
1690
-
1691
2094
  def VerticalAlignment(self)->'VerticalAlignType':
1692
- """
1693
-
2095
+ """Gets the vertical alignment of the named range.
2096
+
2097
+ Returns:
2098
+ VerticalAlignType: The vertical alignment of the named range.
1694
2099
  """
1695
2100
  GetDllLibXls().XlsName_get_VerticalAlignment.argtypes=[c_void_p]
1696
2101
  GetDllLibXls().XlsName_get_VerticalAlignment.restype=c_int
@@ -1700,14 +2105,22 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1700
2105
 
1701
2106
  @VerticalAlignment.setter
1702
2107
  def VerticalAlignment(self, value:'VerticalAlignType'):
2108
+ """Sets the vertical alignment of the named range.
2109
+
2110
+ Args:
2111
+ value (VerticalAlignType): The vertical alignment setting to apply.
2112
+ """
1703
2113
  GetDllLibXls().XlsName_set_VerticalAlignment.argtypes=[c_void_p, c_int]
1704
2114
  CallCFunction(GetDllLibXls().XlsName_set_VerticalAlignment, self.Ptr, value.value)
1705
2115
 
1706
2116
  @property
1707
-
1708
2117
  def Value2(self)->'SpireObject':
1709
- """
1710
-
2118
+ """Gets the value of the named range as a SpireObject.
2119
+
2120
+ This property can return different types based on the cell content.
2121
+
2122
+ Returns:
2123
+ SpireObject: The value of the named range as an object.
1711
2124
  """
1712
2125
  GetDllLibXls().XlsName_get_Value2.argtypes=[c_void_p]
1713
2126
  GetDllLibXls().XlsName_get_Value2.restype=c_void_p
@@ -1715,17 +2128,26 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1715
2128
  ret = None if intPtr==None else SpireObject(intPtr)
1716
2129
  return ret
1717
2130
 
1718
-
1719
2131
  @Value2.setter
1720
2132
  def Value2(self, value:'SpireObject'):
2133
+ """Sets the value of the named range as a SpireObject.
2134
+
2135
+ Args:
2136
+ value (SpireObject): The object value to set.
2137
+ """
1721
2138
  GetDllLibXls().XlsName_set_Value2.argtypes=[c_void_p, c_void_p]
1722
2139
  CallCFunction(GetDllLibXls().XlsName_set_Value2, self.Ptr, value.Ptr)
1723
2140
 
1724
2141
  @dispatch
1725
-
1726
2142
  def get_Item(self ,row:int,column:int)->IXLSRange:
1727
- """
1728
-
2143
+ """Gets the cell at the specified row and column in the named range.
2144
+
2145
+ Args:
2146
+ row (int): The row index.
2147
+ column (int): The column index.
2148
+
2149
+ Returns:
2150
+ IXLSRange: The cell at the specified row and column.
1729
2151
  """
1730
2152
 
1731
2153
  GetDllLibXls().XlsName_get_Item.argtypes=[c_void_p ,c_int,c_int]
@@ -1734,11 +2156,13 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1734
2156
  ret = None if intPtr==None else XlsRange(intPtr)
1735
2157
  return ret
1736
2158
 
1737
-
1738
-
1739
2159
  def set_Item(self ,row:int,column:int,value:'IXLSRange'):
1740
- """
1741
-
2160
+ """Sets the cell at the specified row and column in the named range.
2161
+
2162
+ Args:
2163
+ row (int): The row index.
2164
+ column (int): The column index.
2165
+ value (IXLSRange): The cell to set.
1742
2166
  """
1743
2167
  intPtrvalue:c_void_p = value.Ptr
1744
2168
 
@@ -1746,10 +2170,17 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1746
2170
  CallCFunction(GetDllLibXls().XlsName_set_Item, self.Ptr, row,column,intPtrvalue)
1747
2171
 
1748
2172
  @dispatch
1749
-
1750
2173
  def get_Item(self ,row:int,column:int,lastRow:int,lastColumn:int)->IXLSRange:
1751
- """
1752
-
2174
+ """Gets a range of cells specified by the start and end row and column indices.
2175
+
2176
+ Args:
2177
+ row (int): The start row index.
2178
+ column (int): The start column index.
2179
+ lastRow (int): The end row index.
2180
+ lastColumn (int): The end column index.
2181
+
2182
+ Returns:
2183
+ IXLSRange: The range of cells.
1753
2184
  """
1754
2185
 
1755
2186
  GetDllLibXls().XlsName_get_ItemRCLL.argtypes=[c_void_p ,c_int,c_int,c_int,c_int]
@@ -1758,12 +2189,15 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1758
2189
  ret = None if intPtr==None else XlsRange(intPtr)
1759
2190
  return ret
1760
2191
 
1761
-
1762
2192
  @dispatch
1763
-
1764
2193
  def get_Item(self ,name:str)->IXLSRange:
1765
- """
1766
-
2194
+ """Gets a named range by its name.
2195
+
2196
+ Args:
2197
+ name (str): The name of the named range.
2198
+
2199
+ Returns:
2200
+ IXLSRange: The named range.
1767
2201
  """
1768
2202
 
1769
2203
  GetDllLibXls().XlsName_get_ItemN.argtypes=[c_void_p ,c_void_p]
@@ -1772,14 +2206,16 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1772
2206
  ret = None if intPtr==None else XlsRange(intPtr)
1773
2207
  return ret
1774
2208
 
1775
-
1776
2209
  @dispatch
1777
-
1778
2210
  def get_Item(self ,name:str,IsR1C1Notation:bool)->IXLSRange:
1779
- """
1780
- <summary>
1781
- Gets cell range. Read-only.
1782
- </summary>
2211
+ """Gets a named range by its name and whether to use R1C1 notation.
2212
+
2213
+ Args:
2214
+ name (str): The name of the named range.
2215
+ IsR1C1Notation (bool): True to use R1C1 notation; False to use A1 notation.
2216
+
2217
+ Returns:
2218
+ IXLSRange: The named range.
1783
2219
  """
1784
2220
 
1785
2221
  GetDllLibXls().XlsName_get_ItemNI.argtypes=[c_void_p ,c_void_p,c_bool]
@@ -1788,14 +2224,12 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1788
2224
  ret = None if intPtr==None else XlsRange(intPtr)
1789
2225
  return ret
1790
2226
 
1791
-
1792
2227
  @property
1793
-
1794
2228
  def ConditionalFormats(self)->'ConditionalFormats':
1795
- """
1796
- <summary>
1797
- Collection of conditional formats.
1798
- </summary>
2229
+ """Gets the collection of conditional formats applied to the named range.
2230
+
2231
+ Returns:
2232
+ ConditionalFormats: The collection of conditional formats.
1799
2233
  """
1800
2234
  GetDllLibXls().XlsName_get_ConditionalFormats.argtypes=[c_void_p]
1801
2235
  GetDllLibXls().XlsName_get_ConditionalFormats.restype=c_void_p
@@ -1803,12 +2237,12 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1803
2237
  ret = None if intPtr==None else ConditionalFormats(intPtr)
1804
2238
  return ret
1805
2239
 
1806
-
1807
2240
  @property
1808
-
1809
2241
  def DataValidation(self)->'Validation':
1810
- """
1811
-
2242
+ """Gets the data validation rules applied to the named range.
2243
+
2244
+ Returns:
2245
+ Validation: The data validation rules.
1812
2246
  """
1813
2247
  GetDllLibXls().XlsName_get_DataValidation.argtypes=[c_void_p]
1814
2248
  GetDllLibXls().XlsName_get_DataValidation.restype=c_void_p
@@ -1816,28 +2250,34 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1816
2250
  ret = None if intPtr==None else Validation(intPtr)
1817
2251
  return ret
1818
2252
 
1819
-
1820
2253
  @property
1821
-
1822
2254
  def FormulaStringValue(self)->str:
1823
- """
1824
-
2255
+ """Gets the formula string value of the named range.
2256
+
2257
+ Returns:
2258
+ str: The formula string value.
1825
2259
  """
1826
2260
  GetDllLibXls().XlsName_get_FormulaStringValue.argtypes=[c_void_p]
1827
2261
  GetDllLibXls().XlsName_get_FormulaStringValue.restype=c_void_p
1828
2262
  ret = PtrToStr(CallCFunction(GetDllLibXls().XlsName_get_FormulaStringValue, self.Ptr))
1829
2263
  return ret
1830
2264
 
1831
-
1832
2265
  @FormulaStringValue.setter
1833
2266
  def FormulaStringValue(self, value:str):
2267
+ """Sets the formula string value of the named range.
2268
+
2269
+ Args:
2270
+ value (str): The formula string value to set.
2271
+ """
1834
2272
  GetDllLibXls().XlsName_set_FormulaStringValue.argtypes=[c_void_p, c_wchar_p]
1835
2273
  CallCFunction(GetDllLibXls().XlsName_set_FormulaStringValue, self.Ptr, value)
1836
2274
 
1837
2275
  @property
1838
2276
  def FormulaNumberValue(self)->float:
1839
- """
1840
-
2277
+ """Gets the formula numeric value of the named range.
2278
+
2279
+ Returns:
2280
+ float: The formula numeric value.
1841
2281
  """
1842
2282
  GetDllLibXls().XlsName_get_FormulaNumberValue.argtypes=[c_void_p]
1843
2283
  GetDllLibXls().XlsName_get_FormulaNumberValue.restype=c_double
@@ -1846,13 +2286,20 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1846
2286
 
1847
2287
  @FormulaNumberValue.setter
1848
2288
  def FormulaNumberValue(self, value:float):
2289
+ """Sets the formula numeric value of the named range.
2290
+
2291
+ Args:
2292
+ value (float): The formula numeric value to set.
2293
+ """
1849
2294
  GetDllLibXls().XlsName_set_FormulaNumberValue.argtypes=[c_void_p, c_double]
1850
2295
  CallCFunction(GetDllLibXls().XlsName_set_FormulaNumberValue, self.Ptr, value)
1851
2296
 
1852
2297
  @property
1853
2298
  def HasFormulaBoolValue(self)->bool:
1854
- """
1855
-
2299
+ """Checks if the named range has a boolean formula value.
2300
+
2301
+ Returns:
2302
+ bool: True if the named range has a boolean formula value; otherwise, False.
1856
2303
  """
1857
2304
  GetDllLibXls().XlsName_get_HasFormulaBoolValue.argtypes=[c_void_p]
1858
2305
  GetDllLibXls().XlsName_get_HasFormulaBoolValue.restype=c_bool
@@ -1861,8 +2308,10 @@ class XlsName ( XlsObject, INamedRange, IXLSRange) :
1861
2308
 
1862
2309
  @property
1863
2310
  def HasFormulaErrorValue(self)->bool:
1864
- """
1865
-
2311
+ """Checks if the named range has an error formula value.
2312
+
2313
+ Returns:
2314
+ bool: True if the named range has an error formula value; otherwise, False.
1866
2315
  """
1867
2316
  GetDllLibXls().XlsName_get_HasFormulaErrorValue.argtypes=[c_void_p]
1868
2317
  GetDllLibXls().XlsName_get_HasFormulaErrorValue.restype=c_bool