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
@@ -0,0 +1,51 @@
1
+ require 'rubyXL/objects/ooxml_object'
2
+ require 'rubyXL/objects/storage'
3
+
4
+ module RubyXL
5
+
6
+ # http://www.datypic.com/sc/ooxml/e-ssml_webPublishItem-1.html
7
+ class WebPublishingItem < OOXMLObject
8
+ define_attribute(:id, :int, :required => true)
9
+ define_attribute(:divId, :int, :required => true)
10
+ define_attribute(:sourceType, RubyXL::ST_WebSourceType, :required => true)
11
+ define_attribute(:sourceRef, :ref)
12
+ define_attribute(:sourceObject, :string)
13
+ define_attribute(:destinationFile, :string, :required => true)
14
+ define_attribute(:title, :string)
15
+ define_attribute(:autoRepublish, :bool, :default => false)
16
+ define_element_name 'webPublishItem'
17
+ end
18
+
19
+ # http://www.datypic.com/sc/ooxml/e-ssml_webPublishItems-1.html
20
+ class WebPublishingItems < OOXMLContainerObject
21
+ define_child_node(RubyXL::WebPublishingItem, :collection => :with_count)
22
+ define_element_name 'webPublishItems'
23
+ end
24
+
25
+ # http://www.datypic.com/sc/ooxml/e-ssml_pageMargins-1.html
26
+ class PageMargins < OOXMLObject
27
+ define_attribute(:left, :double, :required => true)
28
+ define_attribute(:right, :double, :required => true)
29
+ define_attribute(:top, :double, :required => true)
30
+ define_attribute(:bottom, :double, :required => true)
31
+ define_attribute(:header, :double, :required => true)
32
+ define_attribute(:footer, :double, :required => true)
33
+ define_element_name 'pageMargins'
34
+ end
35
+
36
+ # http://www.datypic.com/sc/ooxml/e-ssml_headerFooter-1.html
37
+ class HeaderFooterSettings < OOXMLObject
38
+ define_attribute(:differentOddEven, :bool, :default => false)
39
+ define_attribute(:differentFirst, :bool, :default => false)
40
+ define_attribute(:scaleWithDoc, :bool, :default => true)
41
+ define_attribute(:alignWithMargins, :bool, :default => true)
42
+ define_child_node(RubyXL::StringNode, :node_name => :oddHeader)
43
+ define_child_node(RubyXL::StringNode, :node_name => :oddFooter)
44
+ define_child_node(RubyXL::StringNode, :node_name => :evenHeader)
45
+ define_child_node(RubyXL::StringNode, :node_name => :evenFooter)
46
+ define_child_node(RubyXL::StringNode, :node_name => :firstHeader)
47
+ define_child_node(RubyXL::StringNode, :node_name => :firstFooter)
48
+ define_element_name 'headerFooter'
49
+ end
50
+
51
+ end
@@ -0,0 +1,188 @@
1
+ require 'rubyXL/objects/ooxml_object'
2
+ require 'rubyXL/objects/simple_types'
3
+ require 'rubyXL/objects/text'
4
+ require 'rubyXL/objects/formula'
5
+ require 'rubyXL/cell'
6
+ require 'rubyXL/convenience_methods'
7
+
8
+ module RubyXL
9
+
10
+ # http://www.datypic.com/sc/ooxml/e-ssml_v-1.html
11
+ class CellValue < OOXMLObject
12
+ define_attribute(:_, :string, :accessor => :value)
13
+ define_attribute(:'xml:space', %w{ preserve })
14
+ define_element_name 'v'
15
+
16
+ def before_write_xml
17
+ preserve_whitespace
18
+ true
19
+ end
20
+ end
21
+
22
+ # http://www.datypic.com/sc/ooxml/e-ssml_c-2.html
23
+ class Cell < OOXMLObject
24
+ NUMBER_REGEXP = /\A-?\d+((?:\.\d+)?(?:e[+-]?\d+)?)?\Z/i
25
+
26
+ define_attribute(:r, :ref)
27
+ define_attribute(:s, :int, :default => 0, :accessor => :style_index)
28
+ define_attribute(:t, RubyXL::ST_CellType, :accessor => :datatype, :default => 'n' )
29
+ define_attribute(:cm, :int, :default => 0)
30
+ define_attribute(:vm, :int, :default => 0)
31
+ define_attribute(:ph, :bool, :default => false)
32
+ define_child_node(RubyXL::Formula, :accessor => :formula)
33
+ define_child_node(RubyXL::CellValue, :accessor => :value_container)
34
+ define_child_node(RubyXL::RichText) # is
35
+ define_element_name 'c'
36
+
37
+ def index_in_collection
38
+ r.col_range.begin
39
+ end
40
+
41
+ def row
42
+ r && r.first_row
43
+ end
44
+
45
+ def row=(v)
46
+ self.r = RubyXL::Reference.new(v, column || 0)
47
+ end
48
+
49
+ def column
50
+ r && r.first_col
51
+ end
52
+
53
+ def column=(v)
54
+ self.r = RubyXL::Reference.new(row || 0, v)
55
+ end
56
+
57
+ def raw_value
58
+ value_container && value_container.value
59
+ end
60
+
61
+ def raw_value=(v)
62
+ self.value_container ||= RubyXL::CellValue.new
63
+ value_container.value = v
64
+ end
65
+
66
+ def number_format
67
+ workbook.stylesheet.get_number_format_by_id(get_cell_xf.num_fmt_id)
68
+ end
69
+
70
+ def is_date?
71
+ return false unless raw_value =~ NUMBER_REGEXP # Only fully numeric values can be dates
72
+ num_fmt = self.number_format
73
+ num_fmt && num_fmt.is_date_format?
74
+ end
75
+
76
+ # Gets massaged value of the cell, converting datatypes to those known to Ruby (that includes
77
+ # stripping any special formatting from RichText).
78
+ def value(args = {})
79
+ r = self.raw_value
80
+
81
+ case datatype
82
+ when RubyXL::DataType::SHARED_STRING then workbook.shared_strings_container[r.to_i].to_s
83
+ when RubyXL::DataType::INLINE_STRING then is.to_s
84
+ when RubyXL::DataType::RAW_STRING then raw_value
85
+ else
86
+ if is_date? then workbook.num_to_date(r.to_f)
87
+ elsif r.is_a?(String) && (r =~ NUMBER_REGEXP) then # Numeric
88
+ if $1 != '' then r.to_f
89
+ else r.to_i
90
+ end
91
+ else r
92
+ end
93
+ end
94
+ end
95
+
96
+ def inspect
97
+ str = "#<#{self.class}(#{row},#{column}): #{raw_value.inspect}"
98
+ str += " =#{self.formula.expression}" if self.formula
99
+ str += ", datatype=#{self.datatype.inspect}, style_index=#{self.style_index.inspect}>"
100
+ return str
101
+ end
102
+
103
+ include LegacyCell
104
+ include CellConvenienceMethods
105
+ end
106
+
107
+ #TODO#<row r="1" spans="1:1" x14ac:dyDescent="0.25">
108
+
109
+ # http://www.datypic.com/sc/ooxml/e-ssml_row-1.html
110
+ class Row < OOXMLObject
111
+ define_attribute(:r, :int)
112
+ define_attribute(:spans, :string)
113
+ define_attribute(:s, :int, :default => 0, :accessor => :style_index)
114
+ define_attribute(:customFormat, :bool, :default => false)
115
+ define_attribute(:ht, :double)
116
+ define_attribute(:hidden, :bool, :default => false)
117
+ define_attribute(:customHeight, :bool, :default => false)
118
+ define_attribute(:outlineLevel, :int, :default => 0)
119
+ define_attribute(:collapsed, :bool, :default => false)
120
+ define_attribute(:thickTop, :bool, :default => false)
121
+ define_attribute(:thickBot, :bool, :default => false)
122
+ define_attribute(:ph, :bool, :default => false)
123
+ define_child_node(RubyXL::Cell, :collection => true, :accessor => :cells)
124
+ define_element_name 'row'
125
+
126
+ attr_accessor :worksheet
127
+
128
+ def index_in_collection
129
+ r - 1
130
+ end
131
+
132
+ def [](ind)
133
+ cells[ind]
134
+ end
135
+
136
+ def size
137
+ cells.size
138
+ end
139
+
140
+ def insert_cell_shift_right(c, col_index)
141
+ cells.insert(col_index, c)
142
+ update_cell_coords(col_index)
143
+ end
144
+
145
+ def delete_cell_shift_left(col_index)
146
+ cells.delete_at(col_index)
147
+ update_cell_coords(col_index)
148
+ end
149
+
150
+ def update_cell_coords(start_from_index)
151
+ cells.drop(start_from_index).each_with_index { |cell, i|
152
+ next if cell.nil?
153
+ cell.column = start_from_index + i
154
+ }
155
+ end
156
+ private :update_cell_coords
157
+
158
+ def xf
159
+ @worksheet.workbook.cell_xfs[self.style_index || 0]
160
+ end
161
+
162
+ def get_fill_color
163
+ @worksheet.workbook.get_fill_color(xf)
164
+ end
165
+
166
+ def get_font
167
+ @worksheet.workbook.fonts[xf.font_id]
168
+ end
169
+
170
+ DEFAULT_HEIGHT = 13
171
+ end
172
+
173
+ # http://www.datypic.com/sc/ooxml/e-ssml_sheetData-1.html
174
+ class SheetData < OOXMLObject
175
+ define_child_node(RubyXL::Row, :collection => true, :accessor => :rows)
176
+ define_element_name 'sheetData'
177
+
178
+ def [](ind)
179
+ rows[ind]
180
+ end
181
+
182
+ def size
183
+ rows.size
184
+ end
185
+
186
+ end
187
+
188
+ end
@@ -0,0 +1,232 @@
1
+ module RubyXL
2
+ ST_PageOrder = %w{ downThenOver overThenDown }
3
+ ST_Orientation = %w{ default portrait landscape }
4
+ ST_CellComments = %w{ none asDisplayed atEnd }
5
+ ST_PrintError = %w{ displayed blank dash NA }
6
+ ST_CfvoType = %w{ num percent max min formula percentile }
7
+ ST_SheetViewType = %w{ normal pageBreakPreview pageLayout }
8
+ ST_PivotAreaType = %w{ none normal data all origin button topRight }
9
+ ST_Axis = %w{ axisRow axisCol axisPage axisValues }
10
+ ST_BorderStyle = %w{ none thin medium dashed dotted thick double hair
11
+ mediumDashed dashDot mediumDashDot dashDotDot slantDashDot }
12
+ ST_HorizontalAlignment = %w{ general left center right fill justify centerContinuous distributed }
13
+ ST_VerticalAlignment = %w{ top center bottom justify distributed }
14
+ ST_VectorBaseType = %w{ variant i1 i2 i4 i8 ui1 ui2 ui4 ui8 r4 r8
15
+ lpstr lpwstr bstr date filetime bool cy error clsid cf }
16
+ ST_PhoneticType = %w{ halfwidthKatakana fullwidthKatakana Hiragana noConversion }
17
+ ST_PhoneticAlignment = %w{ noControl left center distributed }
18
+ ST_WebSourceType = %w{ sheet printArea autoFilter range chart pivotTable query label }
19
+ ST_CellType = %w{ b n e s str inlineStr }
20
+ ST_GradientType = %w{ linear path }
21
+ ST_PatternType = %w{ none solid mediumGray darkGray lightGray
22
+ darkHorizontal darkVertical darkDown darkUp darkGrid darkTrellis
23
+ lightHorizontal lightVertical lightDown lightUp lightGrid lightTrellis
24
+ gray125 gray0625 }
25
+ ST_Objects = %w{ all placeholders none }
26
+ ST_UpdateLinks = %w{ userSet never always }
27
+ ST_Visibility = %w{ visible hidden veryHidden }
28
+
29
+ ST_DateTimeGrouping = %w{ year month day hour minute second }
30
+ ST_CalendarType = %w{ none gregorian gregorianUs japan taiwan korea hijri thai hebrew
31
+ gregorianMeFrench gregorianArabic gregorianXlitEnglish gregorianXlitFrench }
32
+ ST_FilterOperator = %w{ equal lessThan lessThanOrEqual notEqual greaterThanOrEqual greaterThan }
33
+ ST_DynamicFilterType = %w{ null aboveAverage belowAverage tomorrow today yesterday
34
+ nextWeek thisWeek lastWeek nextMonth thisMonth lastMonth
35
+ nextQuarter thisQuarter lastQuarter nextYear thisYear lastYear
36
+ yearToDate Q1 Q2 Q3 Q4 M1 M2 M3 M4 M5 M6 M7 M8 M9 M10 M11 M12 }
37
+ ST_IconSetType = %w{ 3Arrows 3ArrowsGray 3Flags 3TrafficLights1 3TrafficLights2
38
+ 3Signs 3Symbols 3Symbols2 4Arrows 4ArrowsGray 4RedToBlack
39
+ 4Rating 4TrafficLights 5Arrows 5ArrowsGray 5Rating 5Quarters }
40
+ ST_SortMethod = %w{ stroke pinYin none }
41
+ ST_SortBy = %w{ value cellColor fontColor icon }
42
+
43
+ ST_CellFormulaType = %w{ normal array dataTable shared }
44
+ ST_TargetScreenSize = %w{ 544x376 640x480 720x512 800x600 1024x768 1152x882
45
+ 1152x900 1280x1024 1600x1200 1800x1440 1920x1200 }
46
+ ST_SmartTagShow = %w{ all none noIndicator }
47
+
48
+ ST_CfType = %w{ expression cellIs colorScale dataBar iconSet top10 uniqueValues
49
+ duplicateValues containsText notContainsText beginsWith
50
+ endsWith containsBlanks notContainsBlanks containsErrors
51
+ notContainsErrors timePeriod aboveAverage }
52
+ ST_TimePeriod = %w{ today yesterday tomorrow last7Days thisMonth
53
+ lastMonth nextMonth thisWeek lastWeek nextWeek }
54
+ ST_CalcMode = %w{ manual auto autoNoTable }
55
+ ST_RefMode = %w{ A1 R1C1 }
56
+
57
+ ST_DvAspect = %w{ DVASPECT_CONTENT DVASPECT_ICON }
58
+ ST_OleUpdate = %w{ OLEUPDATE_ALWAYS OLEUPDATE_ONCALL }
59
+
60
+ ST_Pane = %w{ bottomRight topRight bottomLeft topLeft }
61
+ ST_PaneState = %w{ split frozen frozenSplit }
62
+
63
+ ST_Comments = %w{ commNone commIndicator commIndAndComment }
64
+
65
+ ST_DataValidationType = %w{ none whole decimal list date time textLength custom }
66
+ ST_DataValidationErrorStyle = %w{ stop warning information }
67
+ ST_DataValidationImeMode = %w{ noControl off on disabled hiragana fullKatakana halfKatakana
68
+ fullAlpha halfAlpha fullHangul halfHangul }
69
+ ST_DataValidationOperator = %w{ between notBetween equal notEqual lessThan lessThanOrEqual
70
+ greaterThan greaterThanOrEqual }
71
+
72
+ ST_DataConsolidateFunction = %w{ average count countNums max min
73
+ product stdDev stdDevp sum var varp }
74
+
75
+ ST_ConditionalFormattingOperator = %w{ lessThan lessThanOrEqual equal notEqual greaterThanOrEqual greaterThan
76
+ between notBetween containsText notContains beginsWith endsWith }
77
+ ST_BlackWhiteMode = %w{ clr auto gray ltGray invGray grayWhite blackGray blackWhite black white hidden }
78
+ ST_ShapeType = %w{ line lineInv triangle rtTriangle rect diamond parallelogram trapezoid
79
+ nonIsoscelesTrapezoid pentagon hexagon heptagon octagon decagon dodecagon
80
+ star4 star5 star6 star7 star8 star10 star12 star16 star24 star32
81
+ roundRect round1Rect round2SameRect round2DiagRect snipRoundRect
82
+ snip1Rect snip2SameRect snip2DiagRect plaque ellipse teardrop homePlate chevron
83
+ pieWedge pie blockArc donut noSmoking rightArrow leftArrow upArrow downArrow
84
+ stripedRightArrow notchedRightArrow bentUpArrow
85
+ leftRightArrow upDownArrow leftUpArrow leftRightUpArrow quadArrow
86
+ leftArrowCallout rightArrowCallout upArrowCallout downArrowCallout
87
+ leftRightArrowCallout upDownArrowCallout quadArrowCallout bentArrow uturnArrow circularArrow
88
+ leftCircularArrow leftRightCircularArrow curvedRightArrow
89
+ curvedLeftArrow curvedUpArrow curvedDownArrow swooshArrow
90
+ cube can lightningBolt heart sun moon smileyFace irregularSeal1 irregularSeal2 foldedCorner
91
+ bevel frame halfFrame corner diagStripe chord arc leftBracket rightBracket leftBrace rightBrace
92
+ bracketPair bracePair straightConnector1 bentConnector2
93
+ bentConnector3 bentConnector4 bentConnector5 curvedConnector2 curvedConnector3
94
+ curvedConnector4 curvedConnector5 callout1 callout2 callout3
95
+ accentCallout1 accentCallout2 accentCallout3 borderCallout1 borderCallout2 borderCallout3
96
+ accentBorderCallout1 accentBorderCallout2 accentBorderCallout3
97
+ wedgeRectCallout wedgeRoundRectCallout wedgeEllipseCallout cloudCallout
98
+ cloud ribbon ribbon2 ellipseRibbon ellipseRibbon2 leftRightRibbon
99
+ verticalScroll horizontalScroll wave doubleWave plus
100
+ flowChartProcess flowChartDecision flowChartInputOutput flowChartPredefinedProcess
101
+ flowChartInternalStorage flowChartDocument flowChartMultidocument flowChartTerminator
102
+ flowChartPreparation flowChartManualInput flowChartManualOperation flowChartConnector
103
+ flowChartPunchedCard flowChartPunchedTape flowChartSummingJunction flowChartOr flowChartCollate
104
+ flowChartSort flowChartExtract flowChartMerge flowChartOfflineStorage flowChartOnlineStorage
105
+ flowChartMagneticTape flowChartMagneticDisk flowChartMagneticDrum flowChartDisplay
106
+ flowChartDelay flowChartAlternateProcess flowChartOffpageConnector actionButtonBlank
107
+ actionButtonHome actionButtonHelp actionButtonInformation actionButtonForwardNext
108
+ actionButtonBackPrevious actionButtonEnd actionButtonBeginning actionButtonReturn
109
+ actionButtonDocument actionButtonSound actionButtonMovie gear6 gear9 funnel
110
+ mathPlus mathMinus mathMultiply mathDivide mathEqual mathNotEqual
111
+ cornerTabs squareTabs plaqueTabs chartX chartStar chartPlus }
112
+
113
+ ST_SystemColorVal = %w{ scrollBar background activeCaption inactiveCaption menu window windowFrame menuText
114
+ windowText captionText activeBorder inactiveBorder appWorkspace highlight highlightText
115
+ btnFace btnShadow grayText btnText inactiveCaptionText btnHighlight 3dDkShadow 3dLight
116
+ infoText infoBk hotLight gradientActiveCaption gradientInactiveCaption menuHighlight menuBar }
117
+
118
+ ST_SchemeColorVal = %w{ bg1 tx1 bg2 tx2 accent1 accent2 accent3 accent4 accent5 accent6
119
+ hlink folHlink phClr dk1 lt1 dk2 lt2 }
120
+
121
+ ST_PresetColorVal = %w{ aliceBlue antiqueWhite aqua aquamarine azure beige bisque black blanchedAlmond blue blueViolet
122
+ brown burlyWood cadetBlue chartreuse chocolate coral cornflowerBlue cornsilk crimson cyan
123
+ dkBlue dkCyan dkGoldenrod dkGray dkGreen dkKhaki dkMagenta dkOliveGreen dkOrange
124
+ dkOrchid dkRed dkSalmon dkSeaGreen dkSlateBlue dkSlateGray dkTurquoise dkViolet
125
+ deepPink deepSkyBlue dimGray dodgerBlue firebrick floralWhite forestGreen fuchsia
126
+ gainsboro ghostWhite gold goldenrod gray green greenYellow honeydew hotPink indianRed
127
+ indigo ivory khaki lavender lavenderBlush lawnGreen lemonChiffon ltBlue ltCoral
128
+ ltCyan ltGoldenrodYellow ltGray ltGreen ltPink ltSalmon ltSeaGreen ltSkyBlue
129
+ ltSlateGray ltSteelBlue ltYellow lime limeGreen linen magenta maroon
130
+ medAquamarine medBlue medOrchid medPurple medSeaGreen medSlateBlue medSpringGreen
131
+ medTurquoise medVioletRed midnightBlue mintCream mistyRose moccasin navajoWhite
132
+ navy oldLace olive oliveDrab orange orangeRed orchid paleGoldenrod paleGreen
133
+ paleTurquoise paleVioletRed papayaWhip peachPuff peru pink plum powderBlue purple
134
+ red rosyBrown royalBlue saddleBrown salmon sandyBrown seaGreen seaShell sienna
135
+ silver skyBlue slateBlue slateGray snow springGreen steelBlue tan teal thistle
136
+ tomato turquoise violet wheat white whiteSmoke yellow yellowGreen }
137
+
138
+ ST_PathFillMode = %w{ none norm lighten lightenLess darken darkenLess }
139
+ ST_TextVertOverflowType = %w{ overflow ellipsis clip }
140
+ ST_TextHorzOverflowType = %w{ overflow clip }
141
+ ST_TextVerticalType = %w{ horz vert vert270 wordArtVert eaVert mongolianVert wordArtVertRtl }
142
+ ST_TextWrappingType = %w{ none square }
143
+ ST_TextAnchoringType = %w{ t ctr b just dist }
144
+ ST_TextShapeType = %w{ textNoShape textPlain textStop textTriangle textTriangleInverted textChevron
145
+ textChevronInverted textRingInside textRingOutside textArchUp textArchDown
146
+ textCircle textButton textArchUpPour textArchDownPour textCirclePour textButtonPour
147
+ textCurveUp textCurveDown textCanUp textCanDown textWave1 textWave2 textDoubleWave1
148
+ textWave4 textInflate textDeflate textInflateBottom textDeflateBottom textInflateTop
149
+ textDeflateTop textDeflateInflate textDeflateInflateDeflate textFadeRight
150
+ textFadeLeft textFadeUp textFadeDown textSlantUp textSlantDown
151
+ textCascadeUp textCascadeDown }
152
+
153
+ ST_PresetMaterialType = %w{ legacyMatte legacyPlastic legacyMetal legacyWireframe matte plastic metal
154
+ warmMatte translucentPowder powder dkEdge softEdge clear flat softmetal }
155
+
156
+ ST_BevelPresetType = %w{ relaxedInset circle slope cross angle softRound convex
157
+ coolSlant divot riblet hardEdge artDeco }
158
+
159
+
160
+ ST_LineEndType = %w{ none triangle stealth diamond oval arrow }
161
+ ST_LineEndWidth = %w{ sm med lg }
162
+ ST_LineEndLength = %w{ sm med lg }
163
+
164
+ ST_PresetLineDashVal = %w{ solid dot dash lgDash dashDot lgDashDot lgDashDotDot
165
+ sysDash sysDot sysDashDot sysDashDotDot }
166
+
167
+ ST_TileFlipMode = %w{ none x y xy }
168
+ ST_PathShadeType = %w{ shape circle rect }
169
+
170
+ ST_PresetPatternVal = %w{ pct5 pct10 pct20 pct25 pct30 pct40 pct50 pct60 pct70 pct75 pct80 pct90
171
+ horz vert ltHorz ltVert dkHorz dkVert narHorz narVert dashHorz dashVert
172
+ cross dnDiag upDiag ltDnDiag ltUpDiag dkDnDiag dkUpDiag
173
+ wdDnDiag wdUpDiag dashDnDiag dashUpDiag diagCross smCheck lgCheck
174
+ smGrid lgGrid dotGrid smConfetti lgConfetti horzBrick diagBrick
175
+ solidDmnd openDmnd dotDmnd plaid sphere weave divot shingle wave trellis zigZag }
176
+ ST_RectAlignment = %w{ tl t tr l ctr r bl b br }
177
+ ST_BlipCompression = %w{ email screen print hqprint none }
178
+ ST_ColorSchemeIndex = %w{ dk1 lt1 dk2 lt2 accent1 accent2 accent3 accent4 accent5 accent6 hlink folHlink }
179
+ ST_FontCollectionIndex = %w{ major minor none }
180
+ ST_BlendMode = %w{ over mult screen darken lighten }
181
+ ST_PresetCameraType = %w{ legacyObliqueTopLeft legacyObliqueTop legacyObliqueTopRight legacyObliqueLeft
182
+ legacyObliqueFront legacyObliqueRight legacyObliqueBottomLeft legacyObliqueBottom
183
+ legacyObliqueBottomRight legacyPerspectiveTopLeft legacyPerspectiveTop
184
+ legacyPerspectiveTopRight legacyPerspectiveLeft legacyPerspectiveFront
185
+ legacyPerspectiveRight legacyPerspectiveBottomLeft legacyPerspectiveBottom
186
+ legacyPerspectiveBottomRight orthographicFront isometricTopUp isometricTopDown
187
+ isometricBottomUp isometricBottomDown isometricLeftUp isometricLeftDown
188
+ isometricRightUp isometricRightDown isometricOffAxis1Left isometricOffAxis1Right
189
+ isometricOffAxis1Top isometricOffAxis2Left isometricOffAxis2Right isometricOffAxis2Top
190
+ isometricOffAxis3Left isometricOffAxis3Right isometricOffAxis3Bottom
191
+ isometricOffAxis4Left isometricOffAxis4Right isometricOffAxis4Bottom
192
+ obliqueTopLeft obliqueTop obliqueTopRight obliqueLeft obliqueRight obliqueBottomLeft
193
+ obliqueBottom obliqueBottomRight perspectiveFront perspectiveLeft perspectiveRight
194
+ perspectiveAbove perspectiveBelow perspectiveAboveLeftFacing perspectiveAboveRightFacing
195
+ perspectiveContrastingLeftFacing perspectiveContrastingRightFacing
196
+ perspectiveHeroicLeftFacing perspectiveHeroicRightFacing
197
+ perspectiveHeroicExtremeLeftFacing perspectiveHeroicExtremeRightFacing
198
+ perspectiveRelaxed perspectiveRelaxedModerately }
199
+ ST_LightRigType = %w{ legacyFlat1 legacyFlat2 legacyFlat3 legacyFlat4 legacyNormal1 legacyNormal2
200
+ legacyNormal3 legacyNormal4 legacyHarsh1 legacyHarsh2 legacyHarsh3 legacyHarsh4
201
+ threePt balanced soft harsh flood contrasting morning sunrise sunset chilly
202
+ freezing flat twoPt glow brightRoom }
203
+ ST_LightRigDirection = %w{ tl t tr l ctr r bl b br }
204
+ ST_EffectContainerType = %w{ sib tree }
205
+ ST_PresetShadowVal = %w{ shdw1 shdw2 shdw3 shdw4 shdw5 shdw6 shdw7 shdw8 shdw9 shdw10
206
+ shdw11 shdw12 shdw13 shdw14 shdw15 shdw16 shdw17 shdw18 shdw19 shdw20 }
207
+ ST_TextTabAlignType = %w{ l ctr r dec }
208
+ ST_TextAutonumberScheme = %w{ alphaLcParenBoth alphaUcParenBoth alphaLcParenR alphaUcParenR
209
+ alphaLcPeriod alphaUcPeriod arabicParenBoth arabicParenR arabicPeriod arabicPlain
210
+ romanLcParenBoth romanUcParenBoth romanLcParenR romanUcParenR
211
+ romanLcPeriod romanUcPeriod circleNumDbPlain circleNumWdBlackPlain
212
+ circleNumWdWhitePlain arabicDbPeriod arabicDbPlain ea1ChsPeriod ea1ChsPlain
213
+ ea1ChtPeriod ea1ChtPlain ea1JpnChsDbPeriod ea1JpnKorPlain ea1JpnKorPeriod
214
+ arabic1Minus arabic2Minus hebrew2Minus thaiAlphaPeriod thaiAlphaParenR
215
+ thaiAlphaParenBoth thaiNumPeriod thaiNumParenR thaiNumParenBoth hindiAlphaPeriod
216
+ hindiNumPeriod hindiNumParenR hindiAlpha1Period }
217
+
218
+ ST_TextAlignType = %w{ l ctr r just justLow dist thaiDist }
219
+ ST_TextFontAlignType = %w{ auto t ctr base b }
220
+ ST_LineCap = %w{ rnd sq flat }
221
+ ST_CompoundLine = %w{ sng dbl thickThin thinThick tri }
222
+ ST_PenAlignment = %w{ ctr in }
223
+
224
+ ST_TextUnderlineType = %w{ none words sng dbl heavy dotted dottedHeavy dash dashHeavy dashLong dashLongHeavy
225
+ dotDash dotDashHeavy dotDotDash dotDotDashHeavy wavy wavyHeavy wavyDbl }
226
+ ST_TextStrikeType = %w{ noStrike sngStrike dblStrike }
227
+ ST_TextCapsType = %w{ none small all }
228
+
229
+ # TODO: http://www.datypic.com/sc/ooxml/t-ssml_ST_UnsignedShortHex.html
230
+ ST_UnsignedShortHex = :string
231
+
232
+ end