rubyXL-ptr 3.3.27

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 (457) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +17 -0
  3. data/LICENSE.txt +20 -0
  4. data/README.rdoc +229 -0
  5. data/Rakefile +103 -0
  6. data/VERSION +1 -0
  7. data/lib/rubyXL.rb +12 -0
  8. data/lib/rubyXL/cell.rb +54 -0
  9. data/lib/rubyXL/convenience_methods.rb +1122 -0
  10. data/lib/rubyXL/objects/border.rb +74 -0
  11. data/lib/rubyXL/objects/calculation_chain.rb +31 -0
  12. data/lib/rubyXL/objects/cell_style.rb +65 -0
  13. data/lib/rubyXL/objects/chartsheet.rb +92 -0
  14. data/lib/rubyXL/objects/color.rb +27 -0
  15. data/lib/rubyXL/objects/column_range.rb +92 -0
  16. data/lib/rubyXL/objects/comments.rb +47 -0
  17. data/lib/rubyXL/objects/container_nodes.rb +135 -0
  18. data/lib/rubyXL/objects/content_types.rb +77 -0
  19. data/lib/rubyXL/objects/data_validation.rb +37 -0
  20. data/lib/rubyXL/objects/document_properties.rb +159 -0
  21. data/lib/rubyXL/objects/extensions.rb +40 -0
  22. data/lib/rubyXL/objects/external_links.rb +85 -0
  23. data/lib/rubyXL/objects/fill.rb +55 -0
  24. data/lib/rubyXL/objects/filters.rb +120 -0
  25. data/lib/rubyXL/objects/font.rb +48 -0
  26. data/lib/rubyXL/objects/formula.rb +24 -0
  27. data/lib/rubyXL/objects/ooxml_object.rb +460 -0
  28. data/lib/rubyXL/objects/reference.rb +110 -0
  29. data/lib/rubyXL/objects/relationships.rb +213 -0
  30. data/lib/rubyXL/objects/root.rb +86 -0
  31. data/lib/rubyXL/objects/shared_strings.rb +70 -0
  32. data/lib/rubyXL/objects/sheet_common.rb +51 -0
  33. data/lib/rubyXL/objects/sheet_data.rb +188 -0
  34. data/lib/rubyXL/objects/simple_types.rb +232 -0
  35. data/lib/rubyXL/objects/storage.rb +182 -0
  36. data/lib/rubyXL/objects/stylesheet.rb +232 -0
  37. data/lib/rubyXL/objects/text.rb +94 -0
  38. data/lib/rubyXL/objects/theme.rb +1716 -0
  39. data/lib/rubyXL/objects/workbook.rb +464 -0
  40. data/lib/rubyXL/objects/worksheet.rb +748 -0
  41. data/lib/rubyXL/parser.rb +29 -0
  42. data/lib/rubyXL/worksheet.rb +105 -0
  43. data/rdoc/README_rdoc.html +475 -0
  44. data/rdoc/RubyXL.html +598 -0
  45. data/rdoc/RubyXL/AExtension.html +223 -0
  46. data/rdoc/RubyXL/AExtensionStorageArea.html +103 -0
  47. data/rdoc/RubyXL/ActiveX.html +182 -0
  48. data/rdoc/RubyXL/ActiveXBinary.html +117 -0
  49. data/rdoc/RubyXL/AdjustHandleList.html +106 -0
  50. data/rdoc/RubyXL/Alignment.html +106 -0
  51. data/rdoc/RubyXL/AlternateContent.html +103 -0
  52. data/rdoc/RubyXL/Authors.html +106 -0
  53. data/rdoc/RubyXL/AutoFilter.html +106 -0
  54. data/rdoc/RubyXL/AutoFilterColumn.html +106 -0
  55. data/rdoc/RubyXL/BinaryImageFile.html +122 -0
  56. data/rdoc/RubyXL/BodyProperties.html +106 -0
  57. data/rdoc/RubyXL/BooleanNode.html +103 -0
  58. data/rdoc/RubyXL/BooleanValue.html +103 -0
  59. data/rdoc/RubyXL/Border.html +275 -0
  60. data/rdoc/RubyXL/BorderEdge.html +189 -0
  61. data/rdoc/RubyXL/Borders.html +157 -0
  62. data/rdoc/RubyXL/Break.html +106 -0
  63. data/rdoc/RubyXL/BreakList.html +106 -0
  64. data/rdoc/RubyXL/CT_AdjPoint2D.html +106 -0
  65. data/rdoc/RubyXL/CT_AlphaBiLevelEffect.html +106 -0
  66. data/rdoc/RubyXL/CT_AlphaModulateEffect.html +106 -0
  67. data/rdoc/RubyXL/CT_AlphaModulateFixedEffect.html +106 -0
  68. data/rdoc/RubyXL/CT_AlphaOutsetEffect.html +106 -0
  69. data/rdoc/RubyXL/CT_AlphaReplaceEffect.html +106 -0
  70. data/rdoc/RubyXL/CT_Backdrop.html +106 -0
  71. data/rdoc/RubyXL/CT_Bevel.html +106 -0
  72. data/rdoc/RubyXL/CT_BiLevelEffect.html +106 -0
  73. data/rdoc/RubyXL/CT_BlendEffect.html +106 -0
  74. data/rdoc/RubyXL/CT_Blip.html +106 -0
  75. data/rdoc/RubyXL/CT_BlipFillProperties.html +106 -0
  76. data/rdoc/RubyXL/CT_BlurEffect.html +106 -0
  77. data/rdoc/RubyXL/CT_Camera.html +106 -0
  78. data/rdoc/RubyXL/CT_Color.html +106 -0
  79. data/rdoc/RubyXL/CT_ColorChangeEffect.html +106 -0
  80. data/rdoc/RubyXL/CT_ColorMapping.html +106 -0
  81. data/rdoc/RubyXL/CT_ColorScheme.html +106 -0
  82. data/rdoc/RubyXL/CT_ColorSchemeAndMapping.html +106 -0
  83. data/rdoc/RubyXL/CT_ConnectionSite.html +106 -0
  84. data/rdoc/RubyXL/CT_ConnectionSiteList.html +106 -0
  85. data/rdoc/RubyXL/CT_DashStop.html +106 -0
  86. data/rdoc/RubyXL/CT_DashStopList.html +106 -0
  87. data/rdoc/RubyXL/CT_DefaultShapeDefinition.html +106 -0
  88. data/rdoc/RubyXL/CT_DuotoneEffect.html +106 -0
  89. data/rdoc/RubyXL/CT_EffectContainer.html +106 -0
  90. data/rdoc/RubyXL/CT_EffectList.html +106 -0
  91. data/rdoc/RubyXL/CT_EffectReference.html +106 -0
  92. data/rdoc/RubyXL/CT_EffectStyleItem.html +106 -0
  93. data/rdoc/RubyXL/CT_EffectStyleList.html +106 -0
  94. data/rdoc/RubyXL/CT_EmbeddedWAVAudioFile.html +106 -0
  95. data/rdoc/RubyXL/CT_FillEffect.html +106 -0
  96. data/rdoc/RubyXL/CT_FillOverlayEffect.html +106 -0
  97. data/rdoc/RubyXL/CT_FillStyleList.html +106 -0
  98. data/rdoc/RubyXL/CT_FlatText.html +106 -0
  99. data/rdoc/RubyXL/CT_FontCollection.html +106 -0
  100. data/rdoc/RubyXL/CT_FontReference.html +106 -0
  101. data/rdoc/RubyXL/CT_GeomGuideList.html +106 -0
  102. data/rdoc/RubyXL/CT_GlowEffect.html +106 -0
  103. data/rdoc/RubyXL/CT_GradientFillProperties.html +106 -0
  104. data/rdoc/RubyXL/CT_GradientStop.html +106 -0
  105. data/rdoc/RubyXL/CT_GradientStopList.html +106 -0
  106. data/rdoc/RubyXL/CT_HSLEffect.html +106 -0
  107. data/rdoc/RubyXL/CT_HslColor.html +106 -0
  108. data/rdoc/RubyXL/CT_Hyperlink.html +106 -0
  109. data/rdoc/RubyXL/CT_InnerShadowEffect.html +106 -0
  110. data/rdoc/RubyXL/CT_LightRig.html +106 -0
  111. data/rdoc/RubyXL/CT_LineEndProperties.html +106 -0
  112. data/rdoc/RubyXL/CT_LineJoinMiterProperties.html +106 -0
  113. data/rdoc/RubyXL/CT_LineProperties.html +106 -0
  114. data/rdoc/RubyXL/CT_LineStyleList.html +106 -0
  115. data/rdoc/RubyXL/CT_LinearShadeProperties.html +106 -0
  116. data/rdoc/RubyXL/CT_LuminanceEffect.html +106 -0
  117. data/rdoc/RubyXL/CT_ObjectStyleDefaults.html +106 -0
  118. data/rdoc/RubyXL/CT_OuterShadowEffect.html +106 -0
  119. data/rdoc/RubyXL/CT_Path2D.html +106 -0
  120. data/rdoc/RubyXL/CT_Path2DArcTo.html +106 -0
  121. data/rdoc/RubyXL/CT_Path2DCubicBezierTo.html +106 -0
  122. data/rdoc/RubyXL/CT_Path2DList.html +106 -0
  123. data/rdoc/RubyXL/CT_Path2DQuadBezierTo.html +106 -0
  124. data/rdoc/RubyXL/CT_Path2DTo.html +106 -0
  125. data/rdoc/RubyXL/CT_PathShadeProperties.html +106 -0
  126. data/rdoc/RubyXL/CT_PatternFillProperties.html +106 -0
  127. data/rdoc/RubyXL/CT_Point3D.html +106 -0
  128. data/rdoc/RubyXL/CT_PolarAdjustHandle.html +106 -0
  129. data/rdoc/RubyXL/CT_PresetColor.html +106 -0
  130. data/rdoc/RubyXL/CT_PresetLineDashProperties.html +106 -0
  131. data/rdoc/RubyXL/CT_PresetShadowEffect.html +106 -0
  132. data/rdoc/RubyXL/CT_PresetTextShape.html +106 -0
  133. data/rdoc/RubyXL/CT_ReflectionEffect.html +106 -0
  134. data/rdoc/RubyXL/CT_RelativeOffsetEffect.html +106 -0
  135. data/rdoc/RubyXL/CT_RelativeRect.html +106 -0
  136. data/rdoc/RubyXL/CT_SRgbColor.html +106 -0
  137. data/rdoc/RubyXL/CT_ScRgbColor.html +106 -0
  138. data/rdoc/RubyXL/CT_Scene3D.html +106 -0
  139. data/rdoc/RubyXL/CT_SchemeColor.html +106 -0
  140. data/rdoc/RubyXL/CT_Shape3D.html +106 -0
  141. data/rdoc/RubyXL/CT_ShapeStyle.html +106 -0
  142. data/rdoc/RubyXL/CT_SoftEdgesEffect.html +106 -0
  143. data/rdoc/RubyXL/CT_SphereCoords.html +106 -0
  144. data/rdoc/RubyXL/CT_StretchInfoProperties.html +106 -0
  145. data/rdoc/RubyXL/CT_StyleMatrix.html +106 -0
  146. data/rdoc/RubyXL/CT_StyleMatrixReference.html +106 -0
  147. data/rdoc/RubyXL/CT_SupplementalFont.html +106 -0
  148. data/rdoc/RubyXL/CT_SystemColor.html +106 -0
  149. data/rdoc/RubyXL/CT_TextAutonumberBullet.html +106 -0
  150. data/rdoc/RubyXL/CT_TextBlipBullet.html +106 -0
  151. data/rdoc/RubyXL/CT_TextCharBullet.html +106 -0
  152. data/rdoc/RubyXL/CT_TextCharacterProperties.html +106 -0
  153. data/rdoc/RubyXL/CT_TextFont.html +106 -0
  154. data/rdoc/RubyXL/CT_TextListStyle.html +106 -0
  155. data/rdoc/RubyXL/CT_TextNormalAutofit.html +106 -0
  156. data/rdoc/RubyXL/CT_TextParagraphProperties.html +106 -0
  157. data/rdoc/RubyXL/CT_TextSpacing.html +106 -0
  158. data/rdoc/RubyXL/CT_TextTabStop.html +106 -0
  159. data/rdoc/RubyXL/CT_TextTabStopList.html +106 -0
  160. data/rdoc/RubyXL/CT_TileInfoProperties.html +106 -0
  161. data/rdoc/RubyXL/CT_TintEffect.html +106 -0
  162. data/rdoc/RubyXL/CT_Transform2D.html +106 -0
  163. data/rdoc/RubyXL/CT_TransformEffect.html +106 -0
  164. data/rdoc/RubyXL/CT_Vector3D.html +106 -0
  165. data/rdoc/RubyXL/CT_XYAdjustHandle.html +106 -0
  166. data/rdoc/RubyXL/CalculationChain.html +176 -0
  167. data/rdoc/RubyXL/CalculationChainCell.html +106 -0
  168. data/rdoc/RubyXL/CalculationProperties.html +106 -0
  169. data/rdoc/RubyXL/Cell.html +558 -0
  170. data/rdoc/RubyXL/CellConvenienceMethods.html +1211 -0
  171. data/rdoc/RubyXL/CellExt.html +106 -0
  172. data/rdoc/RubyXL/CellSmartTag.html +106 -0
  173. data/rdoc/RubyXL/CellSmartTagProperty.html +106 -0
  174. data/rdoc/RubyXL/CellSmartTags.html +106 -0
  175. data/rdoc/RubyXL/CellStyle.html +106 -0
  176. data/rdoc/RubyXL/CellStyleXFs.html +157 -0
  177. data/rdoc/RubyXL/CellStyles.html +157 -0
  178. data/rdoc/RubyXL/CellValue.html +158 -0
  179. data/rdoc/RubyXL/CellWatch.html +106 -0
  180. data/rdoc/RubyXL/CellWatches.html +106 -0
  181. data/rdoc/RubyXL/CellXFs.html +161 -0
  182. data/rdoc/RubyXL/ChartColorsFile.html +122 -0
  183. data/rdoc/RubyXL/ChartFile.html +189 -0
  184. data/rdoc/RubyXL/ChartStyleFile.html +122 -0
  185. data/rdoc/RubyXL/ChartUserShapesFile.html +122 -0
  186. data/rdoc/RubyXL/Chartsheet.html +260 -0
  187. data/rdoc/RubyXL/ChartsheetPageSetup.html +106 -0
  188. data/rdoc/RubyXL/ChartsheetProperties.html +106 -0
  189. data/rdoc/RubyXL/ChartsheetProtection.html +106 -0
  190. data/rdoc/RubyXL/ChartsheetView.html +106 -0
  191. data/rdoc/RubyXL/ChartsheetViews.html +106 -0
  192. data/rdoc/RubyXL/Color.html +175 -0
  193. data/rdoc/RubyXL/ColorFilter.html +106 -0
  194. data/rdoc/RubyXL/ColorScale.html +106 -0
  195. data/rdoc/RubyXL/ColorSet.html +106 -0
  196. data/rdoc/RubyXL/Colors.html +106 -0
  197. data/rdoc/RubyXL/ColumnRange.html +245 -0
  198. data/rdoc/RubyXL/ColumnRanges.html +289 -0
  199. data/rdoc/RubyXL/Comment.html +106 -0
  200. data/rdoc/RubyXL/CommentList.html +106 -0
  201. data/rdoc/RubyXL/CommentsFile.html +197 -0
  202. data/rdoc/RubyXL/ConditionalFormatValue.html +106 -0
  203. data/rdoc/RubyXL/ConditionalFormatting.html +106 -0
  204. data/rdoc/RubyXL/ConditionalFormattingRule.html +106 -0
  205. data/rdoc/RubyXL/ContentTypeDefault.html +103 -0
  206. data/rdoc/RubyXL/ContentTypeOverride.html +103 -0
  207. data/rdoc/RubyXL/ContentTypes.html +248 -0
  208. data/rdoc/RubyXL/ControlPropertiesFile.html +117 -0
  209. data/rdoc/RubyXL/CorePropertiesFile.html +474 -0
  210. data/rdoc/RubyXL/CustomColor.html +106 -0
  211. data/rdoc/RubyXL/CustomColorList.html +106 -0
  212. data/rdoc/RubyXL/CustomFilter.html +106 -0
  213. data/rdoc/RubyXL/CustomFilters.html +106 -0
  214. data/rdoc/RubyXL/CustomGeometry.html +106 -0
  215. data/rdoc/RubyXL/CustomProperties.html +106 -0
  216. data/rdoc/RubyXL/CustomPropertiesFile.html +122 -0
  217. data/rdoc/RubyXL/CustomProperty.html +106 -0
  218. data/rdoc/RubyXL/CustomSheetView.html +106 -0
  219. data/rdoc/RubyXL/CustomSheetViews.html +106 -0
  220. data/rdoc/RubyXL/CustomWorkbookView.html +106 -0
  221. data/rdoc/RubyXL/CustomWorkbookViews.html +106 -0
  222. data/rdoc/RubyXL/CustomXMLFile.html +117 -0
  223. data/rdoc/RubyXL/DXF.html +106 -0
  224. data/rdoc/RubyXL/DXFs.html +106 -0
  225. data/rdoc/RubyXL/DataBar.html +106 -0
  226. data/rdoc/RubyXL/DataConsolidate.html +106 -0
  227. data/rdoc/RubyXL/DataConsolidationReference.html +106 -0
  228. data/rdoc/RubyXL/DataConsolidationReferences.html +106 -0
  229. data/rdoc/RubyXL/DataType.html +143 -0
  230. data/rdoc/RubyXL/DataValidation.html +106 -0
  231. data/rdoc/RubyXL/DataValidations.html +106 -0
  232. data/rdoc/RubyXL/DateGroupItem.html +106 -0
  233. data/rdoc/RubyXL/DefinedName.html +106 -0
  234. data/rdoc/RubyXL/DefinedNameExt.html +106 -0
  235. data/rdoc/RubyXL/DefinedNames.html +106 -0
  236. data/rdoc/RubyXL/DefinedNamesExt.html +106 -0
  237. data/rdoc/RubyXL/DocumentPropertiesFile.html +255 -0
  238. data/rdoc/RubyXL/DrawingFile.html +188 -0
  239. data/rdoc/RubyXL/DynamicFilter.html +106 -0
  240. data/rdoc/RubyXL/EmbeddedControl.html +106 -0
  241. data/rdoc/RubyXL/EmbeddedControls.html +106 -0
  242. data/rdoc/RubyXL/Extension.html +106 -0
  243. data/rdoc/RubyXL/ExtensionStorageArea.html +106 -0
  244. data/rdoc/RubyXL/Extents.html +106 -0
  245. data/rdoc/RubyXL/ExternalBook.html +106 -0
  246. data/rdoc/RubyXL/ExternalLinksFile.html +184 -0
  247. data/rdoc/RubyXL/ExternalReference.html +106 -0
  248. data/rdoc/RubyXL/ExternalReferences.html +106 -0
  249. data/rdoc/RubyXL/ExtraColorSchemeList.html +106 -0
  250. data/rdoc/RubyXL/FieldItem.html +106 -0
  251. data/rdoc/RubyXL/FileRecoveryProperties.html +106 -0
  252. data/rdoc/RubyXL/FileSharing.html +106 -0
  253. data/rdoc/RubyXL/FileVersion.html +106 -0
  254. data/rdoc/RubyXL/Fill.html +157 -0
  255. data/rdoc/RubyXL/Fills.html +157 -0
  256. data/rdoc/RubyXL/FilterContainer.html +106 -0
  257. data/rdoc/RubyXL/FloatNode.html +103 -0
  258. data/rdoc/RubyXL/FloatValue.html +103 -0
  259. data/rdoc/RubyXL/Font.html +184 -0
  260. data/rdoc/RubyXL/FontConvenienceMethods.html +603 -0
  261. data/rdoc/RubyXL/FontScheme.html +106 -0
  262. data/rdoc/RubyXL/Fonts.html +157 -0
  263. data/rdoc/RubyXL/Formula.html +106 -0
  264. data/rdoc/RubyXL/FunctionGroup.html +106 -0
  265. data/rdoc/RubyXL/FunctionGroups.html +106 -0
  266. data/rdoc/RubyXL/GenericStorageObject.html +298 -0
  267. data/rdoc/RubyXL/GradientFill.html +106 -0
  268. data/rdoc/RubyXL/HeaderFooterSettings.html +106 -0
  269. data/rdoc/RubyXL/Hyperlink.html +106 -0
  270. data/rdoc/RubyXL/HyperlinkRelFile.html +117 -0
  271. data/rdoc/RubyXL/Hyperlinks.html +106 -0
  272. data/rdoc/RubyXL/IconFilter.html +106 -0
  273. data/rdoc/RubyXL/IconSet.html +106 -0
  274. data/rdoc/RubyXL/IgnoredError.html +106 -0
  275. data/rdoc/RubyXL/IgnoredErrors.html +106 -0
  276. data/rdoc/RubyXL/IndexedColors.html +106 -0
  277. data/rdoc/RubyXL/InputCells.html +106 -0
  278. data/rdoc/RubyXL/IntegerNode.html +103 -0
  279. data/rdoc/RubyXL/IntegerValue.html +103 -0
  280. data/rdoc/RubyXL/LegacyCell.html +181 -0
  281. data/rdoc/RubyXL/LegacyWorksheet.html +355 -0
  282. data/rdoc/RubyXL/MRUColors.html +106 -0
  283. data/rdoc/RubyXL/MacrosFile.html +122 -0
  284. data/rdoc/RubyXL/MergedCell.html +106 -0
  285. data/rdoc/RubyXL/MergedCells.html +106 -0
  286. data/rdoc/RubyXL/NumFmt.html +106 -0
  287. data/rdoc/RubyXL/NumberFormat.html +158 -0
  288. data/rdoc/RubyXL/NumberFormats.html +172 -0
  289. data/rdoc/RubyXL/OLEObject.html +106 -0
  290. data/rdoc/RubyXL/OLEObjectFile.html +122 -0
  291. data/rdoc/RubyXL/OLEObjects.html +106 -0
  292. data/rdoc/RubyXL/OLESize.html +106 -0
  293. data/rdoc/RubyXL/OOXMLContainerObject.html +394 -0
  294. data/rdoc/RubyXL/OOXMLObject.html +118 -0
  295. data/rdoc/RubyXL/OOXMLObjectClassMethods.html +532 -0
  296. data/rdoc/RubyXL/OOXMLObjectInstanceMethods.html +564 -0
  297. data/rdoc/RubyXL/OOXMLRelationshipsFile.html +603 -0
  298. data/rdoc/RubyXL/OOXMLTopLevelObject.html +384 -0
  299. data/rdoc/RubyXL/Offset.html +106 -0
  300. data/rdoc/RubyXL/OutlineProperties.html +106 -0
  301. data/rdoc/RubyXL/PageMargins.html +106 -0
  302. data/rdoc/RubyXL/PageSetup.html +106 -0
  303. data/rdoc/RubyXL/PageSetupProperties.html +106 -0
  304. data/rdoc/RubyXL/Pane.html +106 -0
  305. data/rdoc/RubyXL/Parser.html +204 -0
  306. data/rdoc/RubyXL/PatternFill.html +106 -0
  307. data/rdoc/RubyXL/PhoneticProperties.html +106 -0
  308. data/rdoc/RubyXL/PhoneticRun.html +106 -0
  309. data/rdoc/RubyXL/PivotArea.html +106 -0
  310. data/rdoc/RubyXL/PivotCache.html +106 -0
  311. data/rdoc/RubyXL/PivotCacheDefinitionFile.html +133 -0
  312. data/rdoc/RubyXL/PivotCacheRecordsFile.html +122 -0
  313. data/rdoc/RubyXL/PivotCaches.html +106 -0
  314. data/rdoc/RubyXL/PivotReference.html +106 -0
  315. data/rdoc/RubyXL/PivotReferences.html +106 -0
  316. data/rdoc/RubyXL/PivotTableFile.html +133 -0
  317. data/rdoc/RubyXL/PivotTableSelection.html +106 -0
  318. data/rdoc/RubyXL/PresetGeometry.html +106 -0
  319. data/rdoc/RubyXL/PrintOptions.html +106 -0
  320. data/rdoc/RubyXL/PrinterSettingsFile.html +122 -0
  321. data/rdoc/RubyXL/ProtectedRange.html +106 -0
  322. data/rdoc/RubyXL/ProtectedRanges.html +106 -0
  323. data/rdoc/RubyXL/Protection.html +106 -0
  324. data/rdoc/RubyXL/RID.html +103 -0
  325. data/rdoc/RubyXL/RawOOXML.html +223 -0
  326. data/rdoc/RubyXL/Reference.html +640 -0
  327. data/rdoc/RubyXL/Relationship.html +103 -0
  328. data/rdoc/RubyXL/RelationshipSupport.html +419 -0
  329. data/rdoc/RubyXL/RelationshipSupport/ClassMehods.html +148 -0
  330. data/rdoc/RubyXL/RichText.html +159 -0
  331. data/rdoc/RubyXL/RichTextRun.html +157 -0
  332. data/rdoc/RubyXL/Row.html +439 -0
  333. data/rdoc/RubyXL/RowExt.html +106 -0
  334. data/rdoc/RubyXL/RunProperties.html +106 -0
  335. data/rdoc/RubyXL/Scenario.html +106 -0
  336. data/rdoc/RubyXL/Scenarios.html +106 -0
  337. data/rdoc/RubyXL/Selection.html +165 -0
  338. data/rdoc/RubyXL/ShapeGuide.html +106 -0
  339. data/rdoc/RubyXL/ShapeTextRectangle.html +106 -0
  340. data/rdoc/RubyXL/SharedStringsTable.html +424 -0
  341. data/rdoc/RubyXL/Sheet.html +106 -0
  342. data/rdoc/RubyXL/SheetCalculationProperties.html +106 -0
  343. data/rdoc/RubyXL/SheetData.html +192 -0
  344. data/rdoc/RubyXL/SheetDataExt.html +106 -0
  345. data/rdoc/RubyXL/SheetDataSet.html +106 -0
  346. data/rdoc/RubyXL/SheetName.html +106 -0
  347. data/rdoc/RubyXL/SheetNames.html +106 -0
  348. data/rdoc/RubyXL/Sheets.html +106 -0
  349. data/rdoc/RubyXL/SlicerCacheFile.html +122 -0
  350. data/rdoc/RubyXL/SlicerFile.html +122 -0
  351. data/rdoc/RubyXL/SmartTagProperties.html +106 -0
  352. data/rdoc/RubyXL/SmartTagType.html +106 -0
  353. data/rdoc/RubyXL/SmartTagTypes.html +106 -0
  354. data/rdoc/RubyXL/SmartTags.html +106 -0
  355. data/rdoc/RubyXL/SortCondition.html +106 -0
  356. data/rdoc/RubyXL/SortState.html +106 -0
  357. data/rdoc/RubyXL/Sqref.html +197 -0
  358. data/rdoc/RubyXL/Stop.html +106 -0
  359. data/rdoc/RubyXL/StringNode.html +103 -0
  360. data/rdoc/RubyXL/StringNodeW3C.html +197 -0
  361. data/rdoc/RubyXL/StringValue.html +103 -0
  362. data/rdoc/RubyXL/Stylesheet.html +354 -0
  363. data/rdoc/RubyXL/TableFile.html +122 -0
  364. data/rdoc/RubyXL/TableParts.html +103 -0
  365. data/rdoc/RubyXL/TableStyle.html +106 -0
  366. data/rdoc/RubyXL/TableStyles.html +106 -0
  367. data/rdoc/RubyXL/Text.html +216 -0
  368. data/rdoc/RubyXL/Theme.html +535 -0
  369. data/rdoc/RubyXL/ThemeElements.html +106 -0
  370. data/rdoc/RubyXL/ThumbnailFile.html +122 -0
  371. data/rdoc/RubyXL/Top10.html +106 -0
  372. data/rdoc/RubyXL/VMLDrawingFile.html +134 -0
  373. data/rdoc/RubyXL/Variant.html +106 -0
  374. data/rdoc/RubyXL/Vector.html +161 -0
  375. data/rdoc/RubyXL/VectorValue.html +103 -0
  376. data/rdoc/RubyXL/VisualProperties.html +106 -0
  377. data/rdoc/RubyXL/WebPublishObject.html +106 -0
  378. data/rdoc/RubyXL/WebPublishObjects.html +106 -0
  379. data/rdoc/RubyXL/WebPublishingItem.html +106 -0
  380. data/rdoc/RubyXL/WebPublishingItems.html +106 -0
  381. data/rdoc/RubyXL/WebPublishingProperties.html +106 -0
  382. data/rdoc/RubyXL/Workbook.html +633 -0
  383. data/rdoc/RubyXL/WorkbookConvenienceMethods.html +1321 -0
  384. data/rdoc/RubyXL/WorkbookProperties.html +106 -0
  385. data/rdoc/RubyXL/WorkbookProtection.html +106 -0
  386. data/rdoc/RubyXL/WorkbookRoot.html +402 -0
  387. data/rdoc/RubyXL/WorkbookView.html +106 -0
  388. data/rdoc/RubyXL/WorkbookViews.html +106 -0
  389. data/rdoc/RubyXL/Worksheet.html +433 -0
  390. data/rdoc/RubyXL/WorksheetConvenienceMethods.html +2861 -0
  391. data/rdoc/RubyXL/WorksheetDimensions.html +106 -0
  392. data/rdoc/RubyXL/WorksheetFormatProperties.html +103 -0
  393. data/rdoc/RubyXL/WorksheetProperties.html +106 -0
  394. data/rdoc/RubyXL/WorksheetProtection.html +106 -0
  395. data/rdoc/RubyXL/WorksheetView.html +106 -0
  396. data/rdoc/RubyXL/WorksheetViews.html +106 -0
  397. data/rdoc/RubyXL/XF.html +106 -0
  398. data/rdoc/created.rid +38 -0
  399. data/rdoc/css/fonts.css +167 -0
  400. data/rdoc/css/rdoc.css +590 -0
  401. data/rdoc/fonts/Lato-Light.ttf +0 -0
  402. data/rdoc/fonts/Lato-LightItalic.ttf +0 -0
  403. data/rdoc/fonts/Lato-Regular.ttf +0 -0
  404. data/rdoc/fonts/Lato-RegularItalic.ttf +0 -0
  405. data/rdoc/fonts/SourceCodePro-Bold.ttf +0 -0
  406. data/rdoc/fonts/SourceCodePro-Regular.ttf +0 -0
  407. data/rdoc/images/add.png +0 -0
  408. data/rdoc/images/arrow_up.png +0 -0
  409. data/rdoc/images/brick.png +0 -0
  410. data/rdoc/images/brick_link.png +0 -0
  411. data/rdoc/images/bug.png +0 -0
  412. data/rdoc/images/bullet_black.png +0 -0
  413. data/rdoc/images/bullet_toggle_minus.png +0 -0
  414. data/rdoc/images/bullet_toggle_plus.png +0 -0
  415. data/rdoc/images/date.png +0 -0
  416. data/rdoc/images/delete.png +0 -0
  417. data/rdoc/images/find.png +0 -0
  418. data/rdoc/images/loadingAnimation.gif +0 -0
  419. data/rdoc/images/macFFBgHack.png +0 -0
  420. data/rdoc/images/package.png +0 -0
  421. data/rdoc/images/page_green.png +0 -0
  422. data/rdoc/images/page_white_text.png +0 -0
  423. data/rdoc/images/page_white_width.png +0 -0
  424. data/rdoc/images/plugin.png +0 -0
  425. data/rdoc/images/ruby.png +0 -0
  426. data/rdoc/images/tag_blue.png +0 -0
  427. data/rdoc/images/tag_green.png +0 -0
  428. data/rdoc/images/transparent.png +0 -0
  429. data/rdoc/images/wrench.png +0 -0
  430. data/rdoc/images/wrench_orange.png +0 -0
  431. data/rdoc/images/zoom.png +0 -0
  432. data/rdoc/index.html +796 -0
  433. data/rdoc/js/darkfish.js +161 -0
  434. data/rdoc/js/jquery.js +4 -0
  435. data/rdoc/js/navigation.js +142 -0
  436. data/rdoc/js/navigation.js.gz +0 -0
  437. data/rdoc/js/search.js +109 -0
  438. data/rdoc/js/search_index.js +1 -0
  439. data/rdoc/js/search_index.js.gz +0 -0
  440. data/rdoc/js/searcher.js +229 -0
  441. data/rdoc/js/searcher.js.gz +0 -0
  442. data/rdoc/table_of_contents.html +2758 -0
  443. data/rubyXL.gemspec +516 -0
  444. data/spec/lib/cell_spec.rb +515 -0
  445. data/spec/lib/color_spec.rb +13 -0
  446. data/spec/lib/parser_spec.rb +118 -0
  447. data/spec/lib/reference_spec.rb +28 -0
  448. data/spec/lib/stylesheet_spec.rb +28 -0
  449. data/spec/lib/text_spec.rb +29 -0
  450. data/spec/lib/workbook_spec.rb +174 -0
  451. data/spec/lib/worksheet_spec.rb +1363 -0
  452. data/spec/spec_helper.rb +11 -0
  453. data/test/input/.gitkeep +0 -0
  454. data/test/output/.gitkeep +0 -0
  455. data/test/test_parse_write.rb +15 -0
  456. data/tmp/.gitignore +1 -0
  457. metadata +615 -0
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,796 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta charset="UTF-8">
6
+
7
+ <title>rubyXL 3.3.27</title>
8
+
9
+ <script type="text/javascript">
10
+ var rdoc_rel_prefix = "./";
11
+ var index_rel_prefix = "./";
12
+ </script>
13
+
14
+ <script src="./js/jquery.js"></script>
15
+ <script src="./js/darkfish.js"></script>
16
+
17
+ <link href="./css/fonts.css" rel="stylesheet">
18
+ <link href="./css/rdoc.css" rel="stylesheet">
19
+
20
+
21
+
22
+ <body id="top" role="document" class="file">
23
+ <nav role="navigation">
24
+ <div id="project-navigation">
25
+ <div id="home-section" role="region" title="Quick navigation" class="nav-section">
26
+ <h2>
27
+ <a href="./index.html" rel="home">Home</a>
28
+ </h2>
29
+
30
+ <div id="table-of-contents-navigation">
31
+ <a href="./table_of_contents.html#pages">Pages</a>
32
+ <a href="./table_of_contents.html#classes">Classes</a>
33
+ <a href="./table_of_contents.html#methods">Methods</a>
34
+ </div>
35
+ </div>
36
+
37
+
38
+ <div id="search-section" role="search" class="project-section initially-hidden">
39
+ <form action="#" method="get" accept-charset="utf-8">
40
+ <div id="search-field-wrapper">
41
+ <input id="search-field" role="combobox" aria-label="Search"
42
+ aria-autocomplete="list" aria-controls="search-results"
43
+ type="text" name="search" placeholder="Search" spellcheck="false"
44
+ title="Type to search, Up and Down to navigate, Enter to load">
45
+ </div>
46
+
47
+ <ul id="search-results" aria-label="Search Results"
48
+ aria-busy="false" aria-expanded="false"
49
+ aria-atomic="false" class="initially-hidden"></ul>
50
+ </form>
51
+ </div>
52
+
53
+ </div>
54
+
55
+ <div id="project-metadata">
56
+ <div id="fileindex-section" class="nav-section">
57
+ <h3>Pages</h3>
58
+
59
+ <ul class="link-list">
60
+
61
+ <li><a href="./README_rdoc.html">README</a>
62
+
63
+ </ul>
64
+ </div>
65
+
66
+ <div id="classindex-section" class="nav-section">
67
+ <h3>Class and Module Index</h3>
68
+
69
+ <ul class="link-list">
70
+
71
+ <li><a href="./RubyXL.html">RubyXL</a>
72
+
73
+ <li><a href="./RubyXL/AExtension.html">RubyXL::AExtension</a>
74
+
75
+ <li><a href="./RubyXL/AExtensionStorageArea.html">RubyXL::AExtensionStorageArea</a>
76
+
77
+ <li><a href="./RubyXL/ActiveX.html">RubyXL::ActiveX</a>
78
+
79
+ <li><a href="./RubyXL/ActiveXBinary.html">RubyXL::ActiveXBinary</a>
80
+
81
+ <li><a href="./RubyXL/AdjustHandleList.html">RubyXL::AdjustHandleList</a>
82
+
83
+ <li><a href="./RubyXL/Alignment.html">RubyXL::Alignment</a>
84
+
85
+ <li><a href="./RubyXL/AlternateContent.html">RubyXL::AlternateContent</a>
86
+
87
+ <li><a href="./RubyXL/Authors.html">RubyXL::Authors</a>
88
+
89
+ <li><a href="./RubyXL/AutoFilter.html">RubyXL::AutoFilter</a>
90
+
91
+ <li><a href="./RubyXL/AutoFilterColumn.html">RubyXL::AutoFilterColumn</a>
92
+
93
+ <li><a href="./RubyXL/BinaryImageFile.html">RubyXL::BinaryImageFile</a>
94
+
95
+ <li><a href="./RubyXL/BodyProperties.html">RubyXL::BodyProperties</a>
96
+
97
+ <li><a href="./RubyXL/BooleanNode.html">RubyXL::BooleanNode</a>
98
+
99
+ <li><a href="./RubyXL/BooleanValue.html">RubyXL::BooleanValue</a>
100
+
101
+ <li><a href="./RubyXL/Border.html">RubyXL::Border</a>
102
+
103
+ <li><a href="./RubyXL/BorderEdge.html">RubyXL::BorderEdge</a>
104
+
105
+ <li><a href="./RubyXL/Borders.html">RubyXL::Borders</a>
106
+
107
+ <li><a href="./RubyXL/Break.html">RubyXL::Break</a>
108
+
109
+ <li><a href="./RubyXL/BreakList.html">RubyXL::BreakList</a>
110
+
111
+ <li><a href="./RubyXL/CT_AdjPoint2D.html">RubyXL::CT_AdjPoint2D</a>
112
+
113
+ <li><a href="./RubyXL/CT_AlphaBiLevelEffect.html">RubyXL::CT_AlphaBiLevelEffect</a>
114
+
115
+ <li><a href="./RubyXL/CT_AlphaModulateEffect.html">RubyXL::CT_AlphaModulateEffect</a>
116
+
117
+ <li><a href="./RubyXL/CT_AlphaModulateFixedEffect.html">RubyXL::CT_AlphaModulateFixedEffect</a>
118
+
119
+ <li><a href="./RubyXL/CT_AlphaOutsetEffect.html">RubyXL::CT_AlphaOutsetEffect</a>
120
+
121
+ <li><a href="./RubyXL/CT_AlphaReplaceEffect.html">RubyXL::CT_AlphaReplaceEffect</a>
122
+
123
+ <li><a href="./RubyXL/CT_Backdrop.html">RubyXL::CT_Backdrop</a>
124
+
125
+ <li><a href="./RubyXL/CT_Bevel.html">RubyXL::CT_Bevel</a>
126
+
127
+ <li><a href="./RubyXL/CT_BiLevelEffect.html">RubyXL::CT_BiLevelEffect</a>
128
+
129
+ <li><a href="./RubyXL/CT_BlendEffect.html">RubyXL::CT_BlendEffect</a>
130
+
131
+ <li><a href="./RubyXL/CT_Blip.html">RubyXL::CT_Blip</a>
132
+
133
+ <li><a href="./RubyXL/CT_BlipFillProperties.html">RubyXL::CT_BlipFillProperties</a>
134
+
135
+ <li><a href="./RubyXL/CT_BlurEffect.html">RubyXL::CT_BlurEffect</a>
136
+
137
+ <li><a href="./RubyXL/CT_Camera.html">RubyXL::CT_Camera</a>
138
+
139
+ <li><a href="./RubyXL/CT_Color.html">RubyXL::CT_Color</a>
140
+
141
+ <li><a href="./RubyXL/CT_ColorChangeEffect.html">RubyXL::CT_ColorChangeEffect</a>
142
+
143
+ <li><a href="./RubyXL/CT_ColorMapping.html">RubyXL::CT_ColorMapping</a>
144
+
145
+ <li><a href="./RubyXL/CT_ColorScheme.html">RubyXL::CT_ColorScheme</a>
146
+
147
+ <li><a href="./RubyXL/CT_ColorSchemeAndMapping.html">RubyXL::CT_ColorSchemeAndMapping</a>
148
+
149
+ <li><a href="./RubyXL/CT_ConnectionSite.html">RubyXL::CT_ConnectionSite</a>
150
+
151
+ <li><a href="./RubyXL/CT_ConnectionSiteList.html">RubyXL::CT_ConnectionSiteList</a>
152
+
153
+ <li><a href="./RubyXL/CT_DashStop.html">RubyXL::CT_DashStop</a>
154
+
155
+ <li><a href="./RubyXL/CT_DashStopList.html">RubyXL::CT_DashStopList</a>
156
+
157
+ <li><a href="./RubyXL/CT_DefaultShapeDefinition.html">RubyXL::CT_DefaultShapeDefinition</a>
158
+
159
+ <li><a href="./RubyXL/CT_DuotoneEffect.html">RubyXL::CT_DuotoneEffect</a>
160
+
161
+ <li><a href="./RubyXL/CT_EffectContainer.html">RubyXL::CT_EffectContainer</a>
162
+
163
+ <li><a href="./RubyXL/CT_EffectList.html">RubyXL::CT_EffectList</a>
164
+
165
+ <li><a href="./RubyXL/CT_EffectReference.html">RubyXL::CT_EffectReference</a>
166
+
167
+ <li><a href="./RubyXL/CT_EffectStyleItem.html">RubyXL::CT_EffectStyleItem</a>
168
+
169
+ <li><a href="./RubyXL/CT_EffectStyleList.html">RubyXL::CT_EffectStyleList</a>
170
+
171
+ <li><a href="./RubyXL/CT_EmbeddedWAVAudioFile.html">RubyXL::CT_EmbeddedWAVAudioFile</a>
172
+
173
+ <li><a href="./RubyXL/CT_FillEffect.html">RubyXL::CT_FillEffect</a>
174
+
175
+ <li><a href="./RubyXL/CT_FillOverlayEffect.html">RubyXL::CT_FillOverlayEffect</a>
176
+
177
+ <li><a href="./RubyXL/CT_FillStyleList.html">RubyXL::CT_FillStyleList</a>
178
+
179
+ <li><a href="./RubyXL/CT_FlatText.html">RubyXL::CT_FlatText</a>
180
+
181
+ <li><a href="./RubyXL/CT_FontCollection.html">RubyXL::CT_FontCollection</a>
182
+
183
+ <li><a href="./RubyXL/CT_FontReference.html">RubyXL::CT_FontReference</a>
184
+
185
+ <li><a href="./RubyXL/CT_GeomGuideList.html">RubyXL::CT_GeomGuideList</a>
186
+
187
+ <li><a href="./RubyXL/CT_GlowEffect.html">RubyXL::CT_GlowEffect</a>
188
+
189
+ <li><a href="./RubyXL/CT_GradientFillProperties.html">RubyXL::CT_GradientFillProperties</a>
190
+
191
+ <li><a href="./RubyXL/CT_GradientStop.html">RubyXL::CT_GradientStop</a>
192
+
193
+ <li><a href="./RubyXL/CT_GradientStopList.html">RubyXL::CT_GradientStopList</a>
194
+
195
+ <li><a href="./RubyXL/CT_HSLEffect.html">RubyXL::CT_HSLEffect</a>
196
+
197
+ <li><a href="./RubyXL/CT_HslColor.html">RubyXL::CT_HslColor</a>
198
+
199
+ <li><a href="./RubyXL/CT_Hyperlink.html">RubyXL::CT_Hyperlink</a>
200
+
201
+ <li><a href="./RubyXL/CT_InnerShadowEffect.html">RubyXL::CT_InnerShadowEffect</a>
202
+
203
+ <li><a href="./RubyXL/CT_LightRig.html">RubyXL::CT_LightRig</a>
204
+
205
+ <li><a href="./RubyXL/CT_LineEndProperties.html">RubyXL::CT_LineEndProperties</a>
206
+
207
+ <li><a href="./RubyXL/CT_LineJoinMiterProperties.html">RubyXL::CT_LineJoinMiterProperties</a>
208
+
209
+ <li><a href="./RubyXL/CT_LineProperties.html">RubyXL::CT_LineProperties</a>
210
+
211
+ <li><a href="./RubyXL/CT_LineStyleList.html">RubyXL::CT_LineStyleList</a>
212
+
213
+ <li><a href="./RubyXL/CT_LinearShadeProperties.html">RubyXL::CT_LinearShadeProperties</a>
214
+
215
+ <li><a href="./RubyXL/CT_LuminanceEffect.html">RubyXL::CT_LuminanceEffect</a>
216
+
217
+ <li><a href="./RubyXL/CT_ObjectStyleDefaults.html">RubyXL::CT_ObjectStyleDefaults</a>
218
+
219
+ <li><a href="./RubyXL/CT_OuterShadowEffect.html">RubyXL::CT_OuterShadowEffect</a>
220
+
221
+ <li><a href="./RubyXL/CT_Path2D.html">RubyXL::CT_Path2D</a>
222
+
223
+ <li><a href="./RubyXL/CT_Path2DArcTo.html">RubyXL::CT_Path2DArcTo</a>
224
+
225
+ <li><a href="./RubyXL/CT_Path2DCubicBezierTo.html">RubyXL::CT_Path2DCubicBezierTo</a>
226
+
227
+ <li><a href="./RubyXL/CT_Path2DList.html">RubyXL::CT_Path2DList</a>
228
+
229
+ <li><a href="./RubyXL/CT_Path2DQuadBezierTo.html">RubyXL::CT_Path2DQuadBezierTo</a>
230
+
231
+ <li><a href="./RubyXL/CT_Path2DTo.html">RubyXL::CT_Path2DTo</a>
232
+
233
+ <li><a href="./RubyXL/CT_PathShadeProperties.html">RubyXL::CT_PathShadeProperties</a>
234
+
235
+ <li><a href="./RubyXL/CT_PatternFillProperties.html">RubyXL::CT_PatternFillProperties</a>
236
+
237
+ <li><a href="./RubyXL/CT_Point3D.html">RubyXL::CT_Point3D</a>
238
+
239
+ <li><a href="./RubyXL/CT_PolarAdjustHandle.html">RubyXL::CT_PolarAdjustHandle</a>
240
+
241
+ <li><a href="./RubyXL/CT_PresetColor.html">RubyXL::CT_PresetColor</a>
242
+
243
+ <li><a href="./RubyXL/CT_PresetLineDashProperties.html">RubyXL::CT_PresetLineDashProperties</a>
244
+
245
+ <li><a href="./RubyXL/CT_PresetShadowEffect.html">RubyXL::CT_PresetShadowEffect</a>
246
+
247
+ <li><a href="./RubyXL/CT_PresetTextShape.html">RubyXL::CT_PresetTextShape</a>
248
+
249
+ <li><a href="./RubyXL/CT_ReflectionEffect.html">RubyXL::CT_ReflectionEffect</a>
250
+
251
+ <li><a href="./RubyXL/CT_RelativeOffsetEffect.html">RubyXL::CT_RelativeOffsetEffect</a>
252
+
253
+ <li><a href="./RubyXL/CT_RelativeRect.html">RubyXL::CT_RelativeRect</a>
254
+
255
+ <li><a href="./RubyXL/CT_SRgbColor.html">RubyXL::CT_SRgbColor</a>
256
+
257
+ <li><a href="./RubyXL/CT_ScRgbColor.html">RubyXL::CT_ScRgbColor</a>
258
+
259
+ <li><a href="./RubyXL/CT_Scene3D.html">RubyXL::CT_Scene3D</a>
260
+
261
+ <li><a href="./RubyXL/CT_SchemeColor.html">RubyXL::CT_SchemeColor</a>
262
+
263
+ <li><a href="./RubyXL/CT_Shape3D.html">RubyXL::CT_Shape3D</a>
264
+
265
+ <li><a href="./RubyXL/CT_ShapeStyle.html">RubyXL::CT_ShapeStyle</a>
266
+
267
+ <li><a href="./RubyXL/CT_SoftEdgesEffect.html">RubyXL::CT_SoftEdgesEffect</a>
268
+
269
+ <li><a href="./RubyXL/CT_SphereCoords.html">RubyXL::CT_SphereCoords</a>
270
+
271
+ <li><a href="./RubyXL/CT_StretchInfoProperties.html">RubyXL::CT_StretchInfoProperties</a>
272
+
273
+ <li><a href="./RubyXL/CT_StyleMatrix.html">RubyXL::CT_StyleMatrix</a>
274
+
275
+ <li><a href="./RubyXL/CT_StyleMatrixReference.html">RubyXL::CT_StyleMatrixReference</a>
276
+
277
+ <li><a href="./RubyXL/CT_SupplementalFont.html">RubyXL::CT_SupplementalFont</a>
278
+
279
+ <li><a href="./RubyXL/CT_SystemColor.html">RubyXL::CT_SystemColor</a>
280
+
281
+ <li><a href="./RubyXL/CT_TextAutonumberBullet.html">RubyXL::CT_TextAutonumberBullet</a>
282
+
283
+ <li><a href="./RubyXL/CT_TextBlipBullet.html">RubyXL::CT_TextBlipBullet</a>
284
+
285
+ <li><a href="./RubyXL/CT_TextCharBullet.html">RubyXL::CT_TextCharBullet</a>
286
+
287
+ <li><a href="./RubyXL/CT_TextCharacterProperties.html">RubyXL::CT_TextCharacterProperties</a>
288
+
289
+ <li><a href="./RubyXL/CT_TextFont.html">RubyXL::CT_TextFont</a>
290
+
291
+ <li><a href="./RubyXL/CT_TextListStyle.html">RubyXL::CT_TextListStyle</a>
292
+
293
+ <li><a href="./RubyXL/CT_TextNormalAutofit.html">RubyXL::CT_TextNormalAutofit</a>
294
+
295
+ <li><a href="./RubyXL/CT_TextParagraphProperties.html">RubyXL::CT_TextParagraphProperties</a>
296
+
297
+ <li><a href="./RubyXL/CT_TextSpacing.html">RubyXL::CT_TextSpacing</a>
298
+
299
+ <li><a href="./RubyXL/CT_TextTabStop.html">RubyXL::CT_TextTabStop</a>
300
+
301
+ <li><a href="./RubyXL/CT_TextTabStopList.html">RubyXL::CT_TextTabStopList</a>
302
+
303
+ <li><a href="./RubyXL/CT_TileInfoProperties.html">RubyXL::CT_TileInfoProperties</a>
304
+
305
+ <li><a href="./RubyXL/CT_TintEffect.html">RubyXL::CT_TintEffect</a>
306
+
307
+ <li><a href="./RubyXL/CT_Transform2D.html">RubyXL::CT_Transform2D</a>
308
+
309
+ <li><a href="./RubyXL/CT_TransformEffect.html">RubyXL::CT_TransformEffect</a>
310
+
311
+ <li><a href="./RubyXL/CT_Vector3D.html">RubyXL::CT_Vector3D</a>
312
+
313
+ <li><a href="./RubyXL/CT_XYAdjustHandle.html">RubyXL::CT_XYAdjustHandle</a>
314
+
315
+ <li><a href="./RubyXL/CalculationChain.html">RubyXL::CalculationChain</a>
316
+
317
+ <li><a href="./RubyXL/CalculationChainCell.html">RubyXL::CalculationChainCell</a>
318
+
319
+ <li><a href="./RubyXL/CalculationProperties.html">RubyXL::CalculationProperties</a>
320
+
321
+ <li><a href="./RubyXL/Cell.html">RubyXL::Cell</a>
322
+
323
+ <li><a href="./RubyXL/CellConvenienceMethods.html">RubyXL::CellConvenienceMethods</a>
324
+
325
+ <li><a href="./RubyXL/CellExt.html">RubyXL::CellExt</a>
326
+
327
+ <li><a href="./RubyXL/CellSmartTag.html">RubyXL::CellSmartTag</a>
328
+
329
+ <li><a href="./RubyXL/CellSmartTagProperty.html">RubyXL::CellSmartTagProperty</a>
330
+
331
+ <li><a href="./RubyXL/CellSmartTags.html">RubyXL::CellSmartTags</a>
332
+
333
+ <li><a href="./RubyXL/CellStyle.html">RubyXL::CellStyle</a>
334
+
335
+ <li><a href="./RubyXL/CellStyleXFs.html">RubyXL::CellStyleXFs</a>
336
+
337
+ <li><a href="./RubyXL/CellStyles.html">RubyXL::CellStyles</a>
338
+
339
+ <li><a href="./RubyXL/CellValue.html">RubyXL::CellValue</a>
340
+
341
+ <li><a href="./RubyXL/CellWatch.html">RubyXL::CellWatch</a>
342
+
343
+ <li><a href="./RubyXL/CellWatches.html">RubyXL::CellWatches</a>
344
+
345
+ <li><a href="./RubyXL/CellXFs.html">RubyXL::CellXFs</a>
346
+
347
+ <li><a href="./RubyXL/ChartColorsFile.html">RubyXL::ChartColorsFile</a>
348
+
349
+ <li><a href="./RubyXL/ChartFile.html">RubyXL::ChartFile</a>
350
+
351
+ <li><a href="./RubyXL/ChartStyleFile.html">RubyXL::ChartStyleFile</a>
352
+
353
+ <li><a href="./RubyXL/ChartUserShapesFile.html">RubyXL::ChartUserShapesFile</a>
354
+
355
+ <li><a href="./RubyXL/Chartsheet.html">RubyXL::Chartsheet</a>
356
+
357
+ <li><a href="./RubyXL/ChartsheetPageSetup.html">RubyXL::ChartsheetPageSetup</a>
358
+
359
+ <li><a href="./RubyXL/ChartsheetProperties.html">RubyXL::ChartsheetProperties</a>
360
+
361
+ <li><a href="./RubyXL/ChartsheetProtection.html">RubyXL::ChartsheetProtection</a>
362
+
363
+ <li><a href="./RubyXL/ChartsheetView.html">RubyXL::ChartsheetView</a>
364
+
365
+ <li><a href="./RubyXL/ChartsheetViews.html">RubyXL::ChartsheetViews</a>
366
+
367
+ <li><a href="./RubyXL/Color.html">RubyXL::Color</a>
368
+
369
+ <li><a href="./RubyXL/ColorFilter.html">RubyXL::ColorFilter</a>
370
+
371
+ <li><a href="./RubyXL/ColorScale.html">RubyXL::ColorScale</a>
372
+
373
+ <li><a href="./RubyXL/ColorSet.html">RubyXL::ColorSet</a>
374
+
375
+ <li><a href="./RubyXL/Colors.html">RubyXL::Colors</a>
376
+
377
+ <li><a href="./RubyXL/ColumnRange.html">RubyXL::ColumnRange</a>
378
+
379
+ <li><a href="./RubyXL/ColumnRanges.html">RubyXL::ColumnRanges</a>
380
+
381
+ <li><a href="./RubyXL/Comment.html">RubyXL::Comment</a>
382
+
383
+ <li><a href="./RubyXL/CommentList.html">RubyXL::CommentList</a>
384
+
385
+ <li><a href="./RubyXL/CommentsFile.html">RubyXL::CommentsFile</a>
386
+
387
+ <li><a href="./RubyXL/ConditionalFormatValue.html">RubyXL::ConditionalFormatValue</a>
388
+
389
+ <li><a href="./RubyXL/ConditionalFormatting.html">RubyXL::ConditionalFormatting</a>
390
+
391
+ <li><a href="./RubyXL/ConditionalFormattingRule.html">RubyXL::ConditionalFormattingRule</a>
392
+
393
+ <li><a href="./RubyXL/ContentTypeDefault.html">RubyXL::ContentTypeDefault</a>
394
+
395
+ <li><a href="./RubyXL/ContentTypeOverride.html">RubyXL::ContentTypeOverride</a>
396
+
397
+ <li><a href="./RubyXL/ContentTypes.html">RubyXL::ContentTypes</a>
398
+
399
+ <li><a href="./RubyXL/ControlPropertiesFile.html">RubyXL::ControlPropertiesFile</a>
400
+
401
+ <li><a href="./RubyXL/CorePropertiesFile.html">RubyXL::CorePropertiesFile</a>
402
+
403
+ <li><a href="./RubyXL/CustomColor.html">RubyXL::CustomColor</a>
404
+
405
+ <li><a href="./RubyXL/CustomColorList.html">RubyXL::CustomColorList</a>
406
+
407
+ <li><a href="./RubyXL/CustomFilter.html">RubyXL::CustomFilter</a>
408
+
409
+ <li><a href="./RubyXL/CustomFilters.html">RubyXL::CustomFilters</a>
410
+
411
+ <li><a href="./RubyXL/CustomGeometry.html">RubyXL::CustomGeometry</a>
412
+
413
+ <li><a href="./RubyXL/CustomProperties.html">RubyXL::CustomProperties</a>
414
+
415
+ <li><a href="./RubyXL/CustomPropertiesFile.html">RubyXL::CustomPropertiesFile</a>
416
+
417
+ <li><a href="./RubyXL/CustomProperty.html">RubyXL::CustomProperty</a>
418
+
419
+ <li><a href="./RubyXL/CustomSheetView.html">RubyXL::CustomSheetView</a>
420
+
421
+ <li><a href="./RubyXL/CustomSheetViews.html">RubyXL::CustomSheetViews</a>
422
+
423
+ <li><a href="./RubyXL/CustomWorkbookView.html">RubyXL::CustomWorkbookView</a>
424
+
425
+ <li><a href="./RubyXL/CustomWorkbookViews.html">RubyXL::CustomWorkbookViews</a>
426
+
427
+ <li><a href="./RubyXL/CustomXMLFile.html">RubyXL::CustomXMLFile</a>
428
+
429
+ <li><a href="./RubyXL/DXF.html">RubyXL::DXF</a>
430
+
431
+ <li><a href="./RubyXL/DXFs.html">RubyXL::DXFs</a>
432
+
433
+ <li><a href="./RubyXL/DataBar.html">RubyXL::DataBar</a>
434
+
435
+ <li><a href="./RubyXL/DataConsolidate.html">RubyXL::DataConsolidate</a>
436
+
437
+ <li><a href="./RubyXL/DataConsolidationReference.html">RubyXL::DataConsolidationReference</a>
438
+
439
+ <li><a href="./RubyXL/DataConsolidationReferences.html">RubyXL::DataConsolidationReferences</a>
440
+
441
+ <li><a href="./RubyXL/DataType.html">RubyXL::DataType</a>
442
+
443
+ <li><a href="./RubyXL/DataValidation.html">RubyXL::DataValidation</a>
444
+
445
+ <li><a href="./RubyXL/DataValidations.html">RubyXL::DataValidations</a>
446
+
447
+ <li><a href="./RubyXL/DateGroupItem.html">RubyXL::DateGroupItem</a>
448
+
449
+ <li><a href="./RubyXL/DefinedName.html">RubyXL::DefinedName</a>
450
+
451
+ <li><a href="./RubyXL/DefinedNameExt.html">RubyXL::DefinedNameExt</a>
452
+
453
+ <li><a href="./RubyXL/DefinedNames.html">RubyXL::DefinedNames</a>
454
+
455
+ <li><a href="./RubyXL/DefinedNamesExt.html">RubyXL::DefinedNamesExt</a>
456
+
457
+ <li><a href="./RubyXL/DocumentPropertiesFile.html">RubyXL::DocumentPropertiesFile</a>
458
+
459
+ <li><a href="./RubyXL/DrawingFile.html">RubyXL::DrawingFile</a>
460
+
461
+ <li><a href="./RubyXL/DynamicFilter.html">RubyXL::DynamicFilter</a>
462
+
463
+ <li><a href="./RubyXL/EmbeddedControl.html">RubyXL::EmbeddedControl</a>
464
+
465
+ <li><a href="./RubyXL/EmbeddedControls.html">RubyXL::EmbeddedControls</a>
466
+
467
+ <li><a href="./RubyXL/Extension.html">RubyXL::Extension</a>
468
+
469
+ <li><a href="./RubyXL/ExtensionStorageArea.html">RubyXL::ExtensionStorageArea</a>
470
+
471
+ <li><a href="./RubyXL/Extents.html">RubyXL::Extents</a>
472
+
473
+ <li><a href="./RubyXL/ExternalBook.html">RubyXL::ExternalBook</a>
474
+
475
+ <li><a href="./RubyXL/ExternalLinksFile.html">RubyXL::ExternalLinksFile</a>
476
+
477
+ <li><a href="./RubyXL/ExternalReference.html">RubyXL::ExternalReference</a>
478
+
479
+ <li><a href="./RubyXL/ExternalReferences.html">RubyXL::ExternalReferences</a>
480
+
481
+ <li><a href="./RubyXL/ExtraColorSchemeList.html">RubyXL::ExtraColorSchemeList</a>
482
+
483
+ <li><a href="./RubyXL/FieldItem.html">RubyXL::FieldItem</a>
484
+
485
+ <li><a href="./RubyXL/FileRecoveryProperties.html">RubyXL::FileRecoveryProperties</a>
486
+
487
+ <li><a href="./RubyXL/FileSharing.html">RubyXL::FileSharing</a>
488
+
489
+ <li><a href="./RubyXL/FileVersion.html">RubyXL::FileVersion</a>
490
+
491
+ <li><a href="./RubyXL/Fill.html">RubyXL::Fill</a>
492
+
493
+ <li><a href="./RubyXL/Fills.html">RubyXL::Fills</a>
494
+
495
+ <li><a href="./RubyXL/FilterContainer.html">RubyXL::FilterContainer</a>
496
+
497
+ <li><a href="./RubyXL/FloatNode.html">RubyXL::FloatNode</a>
498
+
499
+ <li><a href="./RubyXL/FloatValue.html">RubyXL::FloatValue</a>
500
+
501
+ <li><a href="./RubyXL/Font.html">RubyXL::Font</a>
502
+
503
+ <li><a href="./RubyXL/FontConvenienceMethods.html">RubyXL::FontConvenienceMethods</a>
504
+
505
+ <li><a href="./RubyXL/FontScheme.html">RubyXL::FontScheme</a>
506
+
507
+ <li><a href="./RubyXL/Fonts.html">RubyXL::Fonts</a>
508
+
509
+ <li><a href="./RubyXL/Formula.html">RubyXL::Formula</a>
510
+
511
+ <li><a href="./RubyXL/FunctionGroup.html">RubyXL::FunctionGroup</a>
512
+
513
+ <li><a href="./RubyXL/FunctionGroups.html">RubyXL::FunctionGroups</a>
514
+
515
+ <li><a href="./RubyXL/GenericStorageObject.html">RubyXL::GenericStorageObject</a>
516
+
517
+ <li><a href="./RubyXL/GradientFill.html">RubyXL::GradientFill</a>
518
+
519
+ <li><a href="./RubyXL/HeaderFooterSettings.html">RubyXL::HeaderFooterSettings</a>
520
+
521
+ <li><a href="./RubyXL/Hyperlink.html">RubyXL::Hyperlink</a>
522
+
523
+ <li><a href="./RubyXL/HyperlinkRelFile.html">RubyXL::HyperlinkRelFile</a>
524
+
525
+ <li><a href="./RubyXL/Hyperlinks.html">RubyXL::Hyperlinks</a>
526
+
527
+ <li><a href="./RubyXL/IconFilter.html">RubyXL::IconFilter</a>
528
+
529
+ <li><a href="./RubyXL/IconSet.html">RubyXL::IconSet</a>
530
+
531
+ <li><a href="./RubyXL/IgnoredError.html">RubyXL::IgnoredError</a>
532
+
533
+ <li><a href="./RubyXL/IgnoredErrors.html">RubyXL::IgnoredErrors</a>
534
+
535
+ <li><a href="./RubyXL/IndexedColors.html">RubyXL::IndexedColors</a>
536
+
537
+ <li><a href="./RubyXL/InputCells.html">RubyXL::InputCells</a>
538
+
539
+ <li><a href="./RubyXL/IntegerNode.html">RubyXL::IntegerNode</a>
540
+
541
+ <li><a href="./RubyXL/IntegerValue.html">RubyXL::IntegerValue</a>
542
+
543
+ <li><a href="./RubyXL/LegacyCell.html">RubyXL::LegacyCell</a>
544
+
545
+ <li><a href="./RubyXL/LegacyWorksheet.html">RubyXL::LegacyWorksheet</a>
546
+
547
+ <li><a href="./RubyXL/MRUColors.html">RubyXL::MRUColors</a>
548
+
549
+ <li><a href="./RubyXL/MacrosFile.html">RubyXL::MacrosFile</a>
550
+
551
+ <li><a href="./RubyXL/MergedCell.html">RubyXL::MergedCell</a>
552
+
553
+ <li><a href="./RubyXL/MergedCells.html">RubyXL::MergedCells</a>
554
+
555
+ <li><a href="./RubyXL/NumFmt.html">RubyXL::NumFmt</a>
556
+
557
+ <li><a href="./RubyXL/NumberFormat.html">RubyXL::NumberFormat</a>
558
+
559
+ <li><a href="./RubyXL/NumberFormats.html">RubyXL::NumberFormats</a>
560
+
561
+ <li><a href="./RubyXL/OLEObject.html">RubyXL::OLEObject</a>
562
+
563
+ <li><a href="./RubyXL/OLEObjectFile.html">RubyXL::OLEObjectFile</a>
564
+
565
+ <li><a href="./RubyXL/OLEObjects.html">RubyXL::OLEObjects</a>
566
+
567
+ <li><a href="./RubyXL/OLESize.html">RubyXL::OLESize</a>
568
+
569
+ <li><a href="./RubyXL/OOXMLContainerObject.html">RubyXL::OOXMLContainerObject</a>
570
+
571
+ <li><a href="./RubyXL/OOXMLObject.html">RubyXL::OOXMLObject</a>
572
+
573
+ <li><a href="./RubyXL/OOXMLObjectClassMethods.html">RubyXL::OOXMLObjectClassMethods</a>
574
+
575
+ <li><a href="./RubyXL/OOXMLObjectInstanceMethods.html">RubyXL::OOXMLObjectInstanceMethods</a>
576
+
577
+ <li><a href="./RubyXL/OOXMLRelationshipsFile.html">RubyXL::OOXMLRelationshipsFile</a>
578
+
579
+ <li><a href="./RubyXL/OOXMLTopLevelObject.html">RubyXL::OOXMLTopLevelObject</a>
580
+
581
+ <li><a href="./RubyXL/Offset.html">RubyXL::Offset</a>
582
+
583
+ <li><a href="./RubyXL/OutlineProperties.html">RubyXL::OutlineProperties</a>
584
+
585
+ <li><a href="./RubyXL/PageMargins.html">RubyXL::PageMargins</a>
586
+
587
+ <li><a href="./RubyXL/PageSetup.html">RubyXL::PageSetup</a>
588
+
589
+ <li><a href="./RubyXL/PageSetupProperties.html">RubyXL::PageSetupProperties</a>
590
+
591
+ <li><a href="./RubyXL/Pane.html">RubyXL::Pane</a>
592
+
593
+ <li><a href="./RubyXL/Parser.html">RubyXL::Parser</a>
594
+
595
+ <li><a href="./RubyXL/PatternFill.html">RubyXL::PatternFill</a>
596
+
597
+ <li><a href="./RubyXL/PhoneticProperties.html">RubyXL::PhoneticProperties</a>
598
+
599
+ <li><a href="./RubyXL/PhoneticRun.html">RubyXL::PhoneticRun</a>
600
+
601
+ <li><a href="./RubyXL/PivotArea.html">RubyXL::PivotArea</a>
602
+
603
+ <li><a href="./RubyXL/PivotCache.html">RubyXL::PivotCache</a>
604
+
605
+ <li><a href="./RubyXL/PivotCacheDefinitionFile.html">RubyXL::PivotCacheDefinitionFile</a>
606
+
607
+ <li><a href="./RubyXL/PivotCacheRecordsFile.html">RubyXL::PivotCacheRecordsFile</a>
608
+
609
+ <li><a href="./RubyXL/PivotCaches.html">RubyXL::PivotCaches</a>
610
+
611
+ <li><a href="./RubyXL/PivotReference.html">RubyXL::PivotReference</a>
612
+
613
+ <li><a href="./RubyXL/PivotReferences.html">RubyXL::PivotReferences</a>
614
+
615
+ <li><a href="./RubyXL/PivotTableFile.html">RubyXL::PivotTableFile</a>
616
+
617
+ <li><a href="./RubyXL/PivotTableSelection.html">RubyXL::PivotTableSelection</a>
618
+
619
+ <li><a href="./RubyXL/PresetGeometry.html">RubyXL::PresetGeometry</a>
620
+
621
+ <li><a href="./RubyXL/PrintOptions.html">RubyXL::PrintOptions</a>
622
+
623
+ <li><a href="./RubyXL/PrinterSettingsFile.html">RubyXL::PrinterSettingsFile</a>
624
+
625
+ <li><a href="./RubyXL/ProtectedRange.html">RubyXL::ProtectedRange</a>
626
+
627
+ <li><a href="./RubyXL/ProtectedRanges.html">RubyXL::ProtectedRanges</a>
628
+
629
+ <li><a href="./RubyXL/Protection.html">RubyXL::Protection</a>
630
+
631
+ <li><a href="./RubyXL/RID.html">RubyXL::RID</a>
632
+
633
+ <li><a href="./RubyXL/RawOOXML.html">RubyXL::RawOOXML</a>
634
+
635
+ <li><a href="./RubyXL/Reference.html">RubyXL::Reference</a>
636
+
637
+ <li><a href="./RubyXL/Relationship.html">RubyXL::Relationship</a>
638
+
639
+ <li><a href="./RubyXL/RelationshipSupport.html">RubyXL::RelationshipSupport</a>
640
+
641
+ <li><a href="./RubyXL/RelationshipSupport/ClassMehods.html">RubyXL::RelationshipSupport::ClassMehods</a>
642
+
643
+ <li><a href="./RubyXL/RichText.html">RubyXL::RichText</a>
644
+
645
+ <li><a href="./RubyXL/RichTextRun.html">RubyXL::RichTextRun</a>
646
+
647
+ <li><a href="./RubyXL/Row.html">RubyXL::Row</a>
648
+
649
+ <li><a href="./RubyXL/RowExt.html">RubyXL::RowExt</a>
650
+
651
+ <li><a href="./RubyXL/RunProperties.html">RubyXL::RunProperties</a>
652
+
653
+ <li><a href="./RubyXL/Scenario.html">RubyXL::Scenario</a>
654
+
655
+ <li><a href="./RubyXL/Scenarios.html">RubyXL::Scenarios</a>
656
+
657
+ <li><a href="./RubyXL/Selection.html">RubyXL::Selection</a>
658
+
659
+ <li><a href="./RubyXL/ShapeGuide.html">RubyXL::ShapeGuide</a>
660
+
661
+ <li><a href="./RubyXL/ShapeTextRectangle.html">RubyXL::ShapeTextRectangle</a>
662
+
663
+ <li><a href="./RubyXL/SharedStringsTable.html">RubyXL::SharedStringsTable</a>
664
+
665
+ <li><a href="./RubyXL/Sheet.html">RubyXL::Sheet</a>
666
+
667
+ <li><a href="./RubyXL/SheetCalculationProperties.html">RubyXL::SheetCalculationProperties</a>
668
+
669
+ <li><a href="./RubyXL/SheetData.html">RubyXL::SheetData</a>
670
+
671
+ <li><a href="./RubyXL/SheetDataExt.html">RubyXL::SheetDataExt</a>
672
+
673
+ <li><a href="./RubyXL/SheetDataSet.html">RubyXL::SheetDataSet</a>
674
+
675
+ <li><a href="./RubyXL/SheetName.html">RubyXL::SheetName</a>
676
+
677
+ <li><a href="./RubyXL/SheetNames.html">RubyXL::SheetNames</a>
678
+
679
+ <li><a href="./RubyXL/Sheets.html">RubyXL::Sheets</a>
680
+
681
+ <li><a href="./RubyXL/SlicerCacheFile.html">RubyXL::SlicerCacheFile</a>
682
+
683
+ <li><a href="./RubyXL/SlicerFile.html">RubyXL::SlicerFile</a>
684
+
685
+ <li><a href="./RubyXL/SmartTagProperties.html">RubyXL::SmartTagProperties</a>
686
+
687
+ <li><a href="./RubyXL/SmartTagType.html">RubyXL::SmartTagType</a>
688
+
689
+ <li><a href="./RubyXL/SmartTagTypes.html">RubyXL::SmartTagTypes</a>
690
+
691
+ <li><a href="./RubyXL/SmartTags.html">RubyXL::SmartTags</a>
692
+
693
+ <li><a href="./RubyXL/SortCondition.html">RubyXL::SortCondition</a>
694
+
695
+ <li><a href="./RubyXL/SortState.html">RubyXL::SortState</a>
696
+
697
+ <li><a href="./RubyXL/Sqref.html">RubyXL::Sqref</a>
698
+
699
+ <li><a href="./RubyXL/Stop.html">RubyXL::Stop</a>
700
+
701
+ <li><a href="./RubyXL/StringNode.html">RubyXL::StringNode</a>
702
+
703
+ <li><a href="./RubyXL/StringNodeW3C.html">RubyXL::StringNodeW3C</a>
704
+
705
+ <li><a href="./RubyXL/StringValue.html">RubyXL::StringValue</a>
706
+
707
+ <li><a href="./RubyXL/Stylesheet.html">RubyXL::Stylesheet</a>
708
+
709
+ <li><a href="./RubyXL/TableFile.html">RubyXL::TableFile</a>
710
+
711
+ <li><a href="./RubyXL/TableParts.html">RubyXL::TableParts</a>
712
+
713
+ <li><a href="./RubyXL/TableStyle.html">RubyXL::TableStyle</a>
714
+
715
+ <li><a href="./RubyXL/TableStyles.html">RubyXL::TableStyles</a>
716
+
717
+ <li><a href="./RubyXL/Text.html">RubyXL::Text</a>
718
+
719
+ <li><a href="./RubyXL/Theme.html">RubyXL::Theme</a>
720
+
721
+ <li><a href="./RubyXL/ThemeElements.html">RubyXL::ThemeElements</a>
722
+
723
+ <li><a href="./RubyXL/ThumbnailFile.html">RubyXL::ThumbnailFile</a>
724
+
725
+ <li><a href="./RubyXL/Top10.html">RubyXL::Top10</a>
726
+
727
+ <li><a href="./RubyXL/VMLDrawingFile.html">RubyXL::VMLDrawingFile</a>
728
+
729
+ <li><a href="./RubyXL/Variant.html">RubyXL::Variant</a>
730
+
731
+ <li><a href="./RubyXL/Vector.html">RubyXL::Vector</a>
732
+
733
+ <li><a href="./RubyXL/VectorValue.html">RubyXL::VectorValue</a>
734
+
735
+ <li><a href="./RubyXL/VisualProperties.html">RubyXL::VisualProperties</a>
736
+
737
+ <li><a href="./RubyXL/WebPublishObject.html">RubyXL::WebPublishObject</a>
738
+
739
+ <li><a href="./RubyXL/WebPublishObjects.html">RubyXL::WebPublishObjects</a>
740
+
741
+ <li><a href="./RubyXL/WebPublishingItem.html">RubyXL::WebPublishingItem</a>
742
+
743
+ <li><a href="./RubyXL/WebPublishingItems.html">RubyXL::WebPublishingItems</a>
744
+
745
+ <li><a href="./RubyXL/WebPublishingProperties.html">RubyXL::WebPublishingProperties</a>
746
+
747
+ <li><a href="./RubyXL/Workbook.html">RubyXL::Workbook</a>
748
+
749
+ <li><a href="./RubyXL/WorkbookConvenienceMethods.html">RubyXL::WorkbookConvenienceMethods</a>
750
+
751
+ <li><a href="./RubyXL/WorkbookProperties.html">RubyXL::WorkbookProperties</a>
752
+
753
+ <li><a href="./RubyXL/WorkbookProtection.html">RubyXL::WorkbookProtection</a>
754
+
755
+ <li><a href="./RubyXL/WorkbookRoot.html">RubyXL::WorkbookRoot</a>
756
+
757
+ <li><a href="./RubyXL/WorkbookView.html">RubyXL::WorkbookView</a>
758
+
759
+ <li><a href="./RubyXL/WorkbookViews.html">RubyXL::WorkbookViews</a>
760
+
761
+ <li><a href="./RubyXL/Worksheet.html">RubyXL::Worksheet</a>
762
+
763
+ <li><a href="./RubyXL/WorksheetConvenienceMethods.html">RubyXL::WorksheetConvenienceMethods</a>
764
+
765
+ <li><a href="./RubyXL/WorksheetDimensions.html">RubyXL::WorksheetDimensions</a>
766
+
767
+ <li><a href="./RubyXL/WorksheetFormatProperties.html">RubyXL::WorksheetFormatProperties</a>
768
+
769
+ <li><a href="./RubyXL/WorksheetProperties.html">RubyXL::WorksheetProperties</a>
770
+
771
+ <li><a href="./RubyXL/WorksheetProtection.html">RubyXL::WorksheetProtection</a>
772
+
773
+ <li><a href="./RubyXL/WorksheetView.html">RubyXL::WorksheetView</a>
774
+
775
+ <li><a href="./RubyXL/WorksheetViews.html">RubyXL::WorksheetViews</a>
776
+
777
+ <li><a href="./RubyXL/XF.html">RubyXL::XF</a>
778
+
779
+ </ul>
780
+ </div>
781
+
782
+ </div>
783
+ </nav>
784
+
785
+ <main role="main">
786
+ <p>This is the API documentation for rubyXL 3.3.27.
787
+ </main>
788
+
789
+
790
+
791
+ <footer id="validator-badges" role="contentinfo">
792
+ <p><a href="http://validator.w3.org/check/referer">Validate</a>
793
+ <p>Generated by <a href="https://rdoc.github.io/rdoc">RDoc</a> 5.1.0.
794
+ <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
795
+ </footer>
796
+