rubyXL 3.3.22 → 3.4.25
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.
- checksums.yaml +5 -5
- data/.circleci/config.yml +60 -0
- data/.codeclimate.yml +3 -0
- data/Gemfile +9 -8
- data/Gemfile.lock +124 -0
- data/LICENSE.txt +1 -1
- data/README.rdoc +54 -18
- data/Rakefile +29 -29
- data/VERSION +1 -1
- data/lib/rubyXL/cell.rb +3 -30
- data/lib/rubyXL/convenience_methods/cell.rb +276 -0
- data/lib/rubyXL/convenience_methods/color.rb +156 -0
- data/lib/rubyXL/convenience_methods/font.rb +63 -0
- data/lib/rubyXL/convenience_methods/workbook.rb +141 -0
- data/lib/rubyXL/convenience_methods/worksheet.rb +714 -0
- data/lib/rubyXL/convenience_methods.rb +5 -1045
- data/lib/rubyXL/objects/border.rb +2 -5
- data/lib/rubyXL/objects/calculation_chain.rb +4 -4
- data/lib/rubyXL/objects/cell_style.rb +9 -11
- data/lib/rubyXL/objects/chartsheet.rb +15 -19
- data/lib/rubyXL/objects/color.rb +7 -7
- data/lib/rubyXL/objects/column_range.rb +10 -13
- data/lib/rubyXL/objects/comments.rb +5 -8
- data/lib/rubyXL/objects/connection.rb +175 -0
- data/lib/rubyXL/objects/container_nodes.rb +3 -7
- data/lib/rubyXL/objects/content_types.rb +5 -8
- data/lib/rubyXL/objects/data_validation.rb +4 -4
- data/lib/rubyXL/objects/document_properties.rb +12 -16
- data/lib/rubyXL/objects/extensions.rb +19 -4
- data/lib/rubyXL/objects/external_links.rb +30 -8
- data/lib/rubyXL/objects/fill.rb +6 -9
- data/lib/rubyXL/objects/filters.rb +17 -19
- data/lib/rubyXL/objects/font.rb +4 -64
- data/lib/rubyXL/objects/formula.rb +4 -6
- data/lib/rubyXL/objects/ooxml_object.rb +25 -18
- data/lib/rubyXL/objects/query_table.rb +104 -0
- data/lib/rubyXL/objects/reference.rb +6 -8
- data/lib/rubyXL/objects/relationships.rb +13 -13
- data/lib/rubyXL/objects/root.rb +0 -2
- data/lib/rubyXL/objects/shared_strings.rb +4 -7
- data/lib/rubyXL/objects/sheet_common.rb +5 -7
- data/lib/rubyXL/objects/sheet_data.rb +50 -16
- data/lib/rubyXL/objects/simple_types.rb +21 -1
- data/lib/rubyXL/objects/storage.rb +67 -43
- data/lib/rubyXL/objects/stylesheet.rb +22 -29
- data/lib/rubyXL/objects/text.rb +12 -14
- data/lib/rubyXL/objects/theme.rb +142 -126
- data/lib/rubyXL/objects/workbook.rb +172 -64
- data/lib/rubyXL/objects/worksheet.rb +143 -128
- data/lib/rubyXL/parser.rb +1 -3
- data/lib/rubyXL/worksheet.rb +83 -78
- data/lib/rubyXL.rb +1 -1
- data/rdoc/README_rdoc.html +122 -114
- data/rdoc/RubyXL/AExtension.html +21 -60
- data/rdoc/RubyXL/AExtensionStorageArea.html +12 -17
- data/rdoc/RubyXL/ActiveX.html +154 -0
- data/rdoc/RubyXL/ActiveXBinary.html +106 -0
- data/rdoc/RubyXL/AdjustHandleList.html +13 -19
- data/rdoc/RubyXL/Alignment.html +13 -19
- data/rdoc/RubyXL/AlternateContent.html +12 -17
- data/rdoc/RubyXL/Authors.html +13 -19
- data/rdoc/RubyXL/AutoFilter.html +13 -19
- data/rdoc/RubyXL/AutoFilterColumn.html +13 -19
- data/rdoc/RubyXL/BinaryImageFile.html +12 -25
- data/rdoc/RubyXL/BodyProperties.html +13 -19
- data/rdoc/RubyXL/BooleanNode.html +12 -17
- data/rdoc/RubyXL/BooleanValue.html +12 -17
- data/rdoc/RubyXL/Border.html +25 -84
- data/rdoc/RubyXL/BorderEdge.html +20 -52
- data/rdoc/RubyXL/Borders.html +19 -39
- data/rdoc/RubyXL/Break.html +13 -19
- data/rdoc/RubyXL/BreakList.html +13 -19
- data/rdoc/RubyXL/CT_AdjPoint2D.html +13 -19
- data/rdoc/RubyXL/CT_AlphaBiLevelEffect.html +13 -19
- data/rdoc/RubyXL/CT_AlphaModulateEffect.html +13 -19
- data/rdoc/RubyXL/CT_AlphaModulateFixedEffect.html +13 -19
- data/rdoc/RubyXL/CT_AlphaOutsetEffect.html +13 -19
- data/rdoc/RubyXL/CT_AlphaReplaceEffect.html +13 -19
- data/rdoc/RubyXL/CT_Backdrop.html +13 -19
- data/rdoc/RubyXL/CT_Bevel.html +13 -19
- data/rdoc/RubyXL/CT_BiLevelEffect.html +13 -19
- data/rdoc/RubyXL/CT_BlendEffect.html +13 -19
- data/rdoc/RubyXL/CT_Blip.html +13 -19
- data/rdoc/RubyXL/CT_BlipFillProperties.html +13 -19
- data/rdoc/RubyXL/CT_BlurEffect.html +13 -19
- data/rdoc/RubyXL/CT_Camera.html +13 -19
- data/rdoc/RubyXL/CT_Color.html +13 -19
- data/rdoc/RubyXL/CT_ColorChangeEffect.html +13 -19
- data/rdoc/RubyXL/CT_ColorMapping.html +13 -19
- data/rdoc/RubyXL/CT_ColorScheme.html +13 -19
- data/rdoc/RubyXL/CT_ColorSchemeAndMapping.html +13 -19
- data/rdoc/RubyXL/CT_ConnectionSite.html +13 -19
- data/rdoc/RubyXL/CT_ConnectionSiteList.html +13 -19
- data/rdoc/RubyXL/CT_DashStop.html +13 -19
- data/rdoc/RubyXL/CT_DashStopList.html +13 -19
- data/rdoc/RubyXL/CT_DefaultShapeDefinition.html +13 -19
- data/rdoc/RubyXL/CT_DuotoneEffect.html +13 -19
- data/rdoc/RubyXL/CT_EffectContainer.html +13 -19
- data/rdoc/RubyXL/CT_EffectList.html +13 -19
- data/rdoc/RubyXL/CT_EffectReference.html +13 -19
- data/rdoc/RubyXL/CT_EffectStyleItem.html +13 -19
- data/rdoc/RubyXL/CT_EffectStyleList.html +13 -19
- data/rdoc/RubyXL/CT_EmbeddedWAVAudioFile.html +13 -19
- data/rdoc/RubyXL/CT_FillEffect.html +13 -19
- data/rdoc/RubyXL/CT_FillOverlayEffect.html +13 -19
- data/rdoc/RubyXL/CT_FillStyleList.html +13 -19
- data/rdoc/RubyXL/CT_FlatText.html +13 -19
- data/rdoc/RubyXL/CT_FontCollection.html +13 -19
- data/rdoc/RubyXL/CT_FontReference.html +13 -19
- data/rdoc/RubyXL/CT_GeomGuideList.html +13 -19
- data/rdoc/RubyXL/CT_GlowEffect.html +13 -19
- data/rdoc/RubyXL/CT_GradientFillProperties.html +13 -19
- data/rdoc/RubyXL/CT_GradientStop.html +13 -19
- data/rdoc/RubyXL/CT_GradientStopList.html +13 -19
- data/rdoc/RubyXL/CT_HSLEffect.html +13 -19
- data/rdoc/RubyXL/CT_HslColor.html +13 -19
- data/rdoc/RubyXL/CT_Hyperlink.html +13 -19
- data/rdoc/RubyXL/CT_InnerShadowEffect.html +13 -19
- data/rdoc/RubyXL/CT_LightRig.html +13 -19
- data/rdoc/RubyXL/CT_LineEndProperties.html +13 -19
- data/rdoc/RubyXL/CT_LineJoinMiterProperties.html +13 -19
- data/rdoc/RubyXL/CT_LineProperties.html +13 -19
- data/rdoc/RubyXL/CT_LineStyleList.html +13 -19
- data/rdoc/RubyXL/CT_LinearShadeProperties.html +13 -19
- data/rdoc/RubyXL/CT_LuminanceEffect.html +13 -19
- data/rdoc/RubyXL/CT_ObjectStyleDefaults.html +13 -19
- data/rdoc/RubyXL/CT_OuterShadowEffect.html +13 -19
- data/rdoc/RubyXL/CT_Path2D.html +13 -19
- data/rdoc/RubyXL/CT_Path2DArcTo.html +13 -19
- data/rdoc/RubyXL/CT_Path2DCubicBezierTo.html +13 -19
- data/rdoc/RubyXL/CT_Path2DList.html +13 -19
- data/rdoc/RubyXL/CT_Path2DQuadBezierTo.html +13 -19
- data/rdoc/RubyXL/CT_Path2DTo.html +13 -19
- data/rdoc/RubyXL/CT_PathShadeProperties.html +13 -19
- data/rdoc/RubyXL/CT_PatternFillProperties.html +13 -19
- data/rdoc/RubyXL/CT_Point3D.html +13 -19
- data/rdoc/RubyXL/CT_PolarAdjustHandle.html +13 -19
- data/rdoc/RubyXL/CT_PresetColor.html +13 -19
- data/rdoc/RubyXL/CT_PresetLineDashProperties.html +13 -19
- data/rdoc/RubyXL/CT_PresetShadowEffect.html +13 -19
- data/rdoc/RubyXL/CT_PresetTextShape.html +13 -19
- data/rdoc/RubyXL/CT_ReflectionEffect.html +13 -19
- data/rdoc/RubyXL/CT_RelativeOffsetEffect.html +13 -19
- data/rdoc/RubyXL/CT_RelativeRect.html +13 -19
- data/rdoc/RubyXL/CT_SRgbColor.html +13 -19
- data/rdoc/RubyXL/CT_ScRgbColor.html +13 -19
- data/rdoc/RubyXL/CT_Scene3D.html +13 -19
- data/rdoc/RubyXL/CT_SchemeColor.html +13 -19
- data/rdoc/RubyXL/CT_Shape3D.html +13 -19
- data/rdoc/RubyXL/CT_ShapeStyle.html +13 -19
- data/rdoc/RubyXL/CT_SoftEdgesEffect.html +13 -19
- data/rdoc/RubyXL/CT_SphereCoords.html +13 -19
- data/rdoc/RubyXL/CT_StretchInfoProperties.html +13 -19
- data/rdoc/RubyXL/CT_StyleMatrix.html +13 -19
- data/rdoc/RubyXL/CT_StyleMatrixReference.html +13 -19
- data/rdoc/RubyXL/CT_SupplementalFont.html +13 -19
- data/rdoc/RubyXL/CT_SystemColor.html +13 -19
- data/rdoc/RubyXL/CT_TextAutonumberBullet.html +13 -19
- data/rdoc/RubyXL/CT_TextBlipBullet.html +13 -19
- data/rdoc/RubyXL/CT_TextCharBullet.html +13 -19
- data/rdoc/RubyXL/CT_TextCharacterProperties.html +13 -19
- data/rdoc/RubyXL/CT_TextFont.html +13 -19
- data/rdoc/RubyXL/CT_TextListStyle.html +13 -19
- data/rdoc/RubyXL/CT_TextNormalAutofit.html +13 -19
- data/rdoc/RubyXL/CT_TextParagraphProperties.html +13 -19
- data/rdoc/RubyXL/CT_TextSpacing.html +13 -19
- data/rdoc/RubyXL/CT_TextTabStop.html +13 -19
- data/rdoc/RubyXL/CT_TextTabStopList.html +13 -19
- data/rdoc/RubyXL/CT_TileInfoProperties.html +13 -19
- data/rdoc/RubyXL/CT_TintEffect.html +13 -19
- data/rdoc/RubyXL/CT_Transform2D.html +13 -19
- data/rdoc/RubyXL/CT_TransformEffect.html +13 -19
- data/rdoc/RubyXL/CT_Vector3D.html +13 -19
- data/rdoc/RubyXL/CT_XYAdjustHandle.html +13 -19
- data/rdoc/RubyXL/CalculationChain.html +17 -45
- data/rdoc/RubyXL/CalculationChainCell.html +13 -19
- data/rdoc/RubyXL/CalculationProperties.html +13 -19
- data/rdoc/RubyXL/Cell.html +145 -205
- data/rdoc/RubyXL/CellConvenienceMethods.html +255 -460
- data/rdoc/RubyXL/CellExt.html +13 -19
- data/rdoc/RubyXL/CellSmartTag.html +13 -19
- data/rdoc/RubyXL/CellSmartTagProperty.html +13 -19
- data/rdoc/RubyXL/CellSmartTags.html +13 -19
- data/rdoc/RubyXL/CellStyle.html +13 -19
- data/rdoc/RubyXL/CellStyleXFs.html +19 -39
- data/rdoc/RubyXL/CellStyles.html +19 -39
- data/rdoc/RubyXL/CellValue.html +18 -38
- data/rdoc/RubyXL/CellWatch.html +13 -19
- data/rdoc/RubyXL/CellWatches.html +13 -19
- data/rdoc/RubyXL/CellXFs.html +20 -42
- data/rdoc/RubyXL/ChartColorsFile.html +12 -25
- data/rdoc/RubyXL/ChartFile.html +19 -49
- data/rdoc/RubyXL/ChartStyleFile.html +12 -25
- data/rdoc/RubyXL/ChartUserShapesFile.html +12 -25
- data/rdoc/RubyXL/Chartsheet.html +20 -68
- data/rdoc/RubyXL/ChartsheetPageSetup.html +13 -19
- data/rdoc/RubyXL/ChartsheetProperties.html +13 -19
- data/rdoc/RubyXL/ChartsheetProtection.html +13 -19
- data/rdoc/RubyXL/ChartsheetView.html +13 -19
- data/rdoc/RubyXL/ChartsheetViews.html +13 -19
- data/rdoc/RubyXL/Color.html +29 -40
- data/rdoc/RubyXL/ColorConvenienceClasses/HlsColor.html +242 -0
- data/rdoc/RubyXL/ColorConvenienceClasses/RgbColor.html +279 -0
- data/rdoc/RubyXL/ColorConvenienceClasses.html +91 -0
- data/rdoc/RubyXL/ColorConvenienceMethods.html +137 -0
- data/rdoc/RubyXL/ColorFilter.html +13 -19
- data/rdoc/RubyXL/ColorScale.html +13 -19
- data/rdoc/RubyXL/ColorSet.html +13 -19
- data/rdoc/RubyXL/Colors.html +13 -19
- data/rdoc/RubyXL/ColumnRange.html +23 -74
- data/rdoc/RubyXL/ColumnRanges.html +24 -83
- data/rdoc/RubyXL/Comment.html +13 -19
- data/rdoc/RubyXL/CommentList.html +13 -19
- data/rdoc/RubyXL/CommentsFile.html +18 -51
- data/rdoc/RubyXL/ConditionalFormatValue.html +13 -19
- data/rdoc/RubyXL/ConditionalFormatting.html +13 -19
- data/rdoc/RubyXL/ConditionalFormattingRule.html +13 -19
- data/rdoc/RubyXL/Connection.html +99 -0
- data/rdoc/RubyXL/ConnectionTable.html +99 -0
- data/rdoc/RubyXL/ConnectionTables.html +99 -0
- data/rdoc/RubyXL/ConnectionTextField.html +99 -0
- data/rdoc/RubyXL/ConnectionTextFields.html +99 -0
- data/rdoc/RubyXL/Connections.html +147 -0
- data/rdoc/RubyXL/ContentTypeDefault.html +12 -17
- data/rdoc/RubyXL/ContentTypeOverride.html +12 -17
- data/rdoc/RubyXL/ContentTypes.html +25 -65
- data/rdoc/RubyXL/ControlPropertiesFile.html +14 -22
- data/rdoc/RubyXL/CorePropertiesFile.html +35 -171
- data/rdoc/RubyXL/CustomColor.html +13 -19
- data/rdoc/RubyXL/CustomColorList.html +13 -19
- data/rdoc/RubyXL/CustomFilter.html +13 -19
- data/rdoc/RubyXL/CustomFilters.html +13 -19
- data/rdoc/RubyXL/CustomGeometry.html +13 -19
- data/rdoc/RubyXL/CustomProperties.html +13 -19
- data/rdoc/RubyXL/CustomPropertiesFile.html +12 -25
- data/rdoc/RubyXL/CustomProperty.html +13 -19
- data/rdoc/RubyXL/CustomPropertyFile.html +108 -0
- data/rdoc/RubyXL/CustomSheetView.html +13 -19
- data/rdoc/RubyXL/CustomSheetViews.html +13 -19
- data/rdoc/RubyXL/CustomWorkbookView.html +13 -19
- data/rdoc/RubyXL/CustomWorkbookViews.html +13 -19
- data/rdoc/RubyXL/CustomXMLFile.html +12 -22
- data/rdoc/RubyXL/DXF.html +13 -19
- data/rdoc/RubyXL/DXFs.html +13 -19
- data/rdoc/RubyXL/DataBar.html +13 -19
- data/rdoc/RubyXL/DataConsolidate.html +13 -19
- data/rdoc/RubyXL/DataConsolidationReference.html +13 -19
- data/rdoc/RubyXL/DataConsolidationReferences.html +13 -19
- data/rdoc/RubyXL/DataType.html +11 -39
- data/rdoc/RubyXL/DataValidation.html +13 -19
- data/rdoc/RubyXL/DataValidations.html +13 -19
- data/rdoc/RubyXL/DateGroupItem.html +13 -19
- data/rdoc/RubyXL/DefinedName.html +13 -19
- data/rdoc/RubyXL/DefinedNameExt.html +13 -19
- data/rdoc/RubyXL/DefinedNames.html +13 -19
- data/rdoc/RubyXL/DefinedNamesExt.html +13 -19
- data/rdoc/RubyXL/DocumentPropertiesFile.html +22 -68
- data/rdoc/RubyXL/DrawingFile.html +19 -49
- data/rdoc/RubyXL/DynamicFilter.html +13 -19
- data/rdoc/RubyXL/EmbeddedControl.html +13 -19
- data/rdoc/RubyXL/EmbeddedControls.html +13 -19
- data/rdoc/RubyXL/Extension.html +13 -19
- data/rdoc/RubyXL/ExtensionStorageArea.html +13 -19
- data/rdoc/RubyXL/Extents.html +13 -19
- data/rdoc/RubyXL/ExternalBook.html +13 -19
- data/rdoc/RubyXL/ExternalLinksFile.html +19 -49
- data/rdoc/RubyXL/ExternalReference.html +13 -19
- data/rdoc/RubyXL/ExternalReferences.html +13 -19
- data/rdoc/RubyXL/ExtraColorSchemeList.html +13 -19
- data/rdoc/RubyXL/FieldItem.html +13 -19
- data/rdoc/RubyXL/FileRecoveryProperties.html +13 -19
- data/rdoc/RubyXL/FileSharing.html +13 -19
- data/rdoc/RubyXL/FileVersion.html +13 -19
- data/rdoc/RubyXL/Fill.html +19 -39
- data/rdoc/RubyXL/Fills.html +19 -39
- data/rdoc/RubyXL/FilterContainer.html +13 -19
- data/rdoc/RubyXL/FloatNode.html +12 -17
- data/rdoc/RubyXL/FloatValue.html +12 -17
- data/rdoc/RubyXL/Font.html +20 -544
- data/rdoc/RubyXL/FontConvenienceMethods.html +414 -0
- data/rdoc/RubyXL/FontScheme.html +13 -19
- data/rdoc/RubyXL/Fonts.html +19 -39
- data/rdoc/RubyXL/Formula.html +13 -19
- data/rdoc/RubyXL/FunctionGroup.html +13 -19
- data/rdoc/RubyXL/FunctionGroups.html +13 -19
- data/rdoc/RubyXL/GenericStorageObject.html +22 -84
- data/rdoc/RubyXL/GradientFill.html +13 -19
- data/rdoc/RubyXL/HeaderFooterSettings.html +13 -19
- data/rdoc/RubyXL/Hyperlink.html +13 -19
- data/rdoc/RubyXL/HyperlinkRelFile.html +12 -22
- data/rdoc/RubyXL/Hyperlinks.html +13 -19
- data/rdoc/RubyXL/IconFilter.html +13 -19
- data/rdoc/RubyXL/IconSet.html +13 -19
- data/rdoc/RubyXL/IgnoredError.html +13 -19
- data/rdoc/RubyXL/IgnoredErrors.html +13 -19
- data/rdoc/RubyXL/IndexedColors.html +13 -19
- data/rdoc/RubyXL/InputCells.html +13 -19
- data/rdoc/RubyXL/IntegerNode.html +12 -17
- data/rdoc/RubyXL/IntegerValue.html +12 -17
- data/rdoc/RubyXL/LegacyCell.html +14 -66
- data/rdoc/RubyXL/LegacyWorksheet.html +40 -100
- data/rdoc/RubyXL/MRUColors.html +13 -19
- data/rdoc/RubyXL/MacrosFile.html +12 -25
- data/rdoc/RubyXL/MergedCell.html +13 -19
- data/rdoc/RubyXL/MergedCells.html +13 -19
- data/rdoc/RubyXL/NumFmt.html +13 -19
- data/rdoc/RubyXL/NumberFormat.html +19 -39
- data/rdoc/RubyXL/NumberFormats.html +19 -45
- data/rdoc/RubyXL/OLEObject.html +13 -19
- data/rdoc/RubyXL/OLEObjectFile.html +12 -25
- data/rdoc/RubyXL/OLEObjects.html +13 -19
- data/rdoc/RubyXL/OLESize.html +13 -19
- data/rdoc/RubyXL/OOXMLContainerObject.html +36 -132
- data/rdoc/RubyXL/OOXMLIgnored.html +163 -0
- data/rdoc/RubyXL/OOXMLObject.html +15 -25
- data/rdoc/RubyXL/OOXMLObjectClassMethods.html +92 -183
- data/rdoc/RubyXL/OOXMLObjectInstanceMethods.html +49 -185
- data/rdoc/RubyXL/OOXMLRelationshipsFile.html +48 -200
- data/rdoc/RubyXL/OOXMLTopLevelObject.html +37 -133
- data/rdoc/RubyXL/OdbcOleDbProperties.html +99 -0
- data/rdoc/RubyXL/Offset.html +13 -19
- data/rdoc/RubyXL/OlapProperties.html +99 -0
- data/rdoc/RubyXL/OleItem.html +99 -0
- data/rdoc/RubyXL/OleItems.html +99 -0
- data/rdoc/RubyXL/OleLink.html +99 -0
- data/rdoc/RubyXL/OutlineProperties.html +13 -19
- data/rdoc/RubyXL/PageMargins.html +13 -19
- data/rdoc/RubyXL/PageSetup.html +13 -19
- data/rdoc/RubyXL/PageSetupProperties.html +13 -19
- data/rdoc/RubyXL/Pane.html +13 -19
- data/rdoc/RubyXL/Parser.html +23 -56
- data/rdoc/RubyXL/PatternFill.html +13 -19
- data/rdoc/RubyXL/PhoneticProperties.html +13 -19
- data/rdoc/RubyXL/PhoneticRun.html +13 -19
- data/rdoc/RubyXL/PivotArea.html +13 -19
- data/rdoc/RubyXL/PivotCache.html +13 -19
- data/rdoc/RubyXL/PivotCacheDefinitionFile.html +14 -30
- data/rdoc/RubyXL/PivotCacheRecordsFile.html +12 -25
- data/rdoc/RubyXL/PivotCaches.html +13 -19
- data/rdoc/RubyXL/PivotReference.html +13 -19
- data/rdoc/RubyXL/PivotReferences.html +13 -19
- data/rdoc/RubyXL/PivotTableFile.html +14 -30
- data/rdoc/RubyXL/PivotTableSelection.html +13 -19
- data/rdoc/RubyXL/PresetGeometry.html +13 -19
- data/rdoc/RubyXL/PrintOptions.html +13 -19
- data/rdoc/RubyXL/PrinterSettingsFile.html +12 -25
- data/rdoc/RubyXL/ProtectedRange.html +13 -19
- data/rdoc/RubyXL/ProtectedRanges.html +13 -19
- data/rdoc/RubyXL/Protection.html +13 -19
- data/rdoc/RubyXL/QueryParameter.html +99 -0
- data/rdoc/RubyXL/QueryParameters.html +99 -0
- data/rdoc/RubyXL/QueryTable.html +155 -0
- data/rdoc/RubyXL/QueryTableDeletedField.html +99 -0
- data/rdoc/RubyXL/QueryTableDeletedFields.html +99 -0
- data/rdoc/RubyXL/QueryTableField.html +99 -0
- data/rdoc/RubyXL/QueryTableFields.html +99 -0
- data/rdoc/RubyXL/QueryTableRefresh.html +99 -0
- data/rdoc/RubyXL/RID.html +12 -17
- data/rdoc/RubyXL/RawOOXML.html +21 -60
- data/rdoc/RubyXL/Reference.html +63 -228
- data/rdoc/RubyXL/Relationship.html +12 -17
- data/rdoc/RubyXL/RelationshipSupport/ClassMehods.html +14 -32
- data/rdoc/RubyXL/RelationshipSupport.html +26 -120
- data/rdoc/RubyXL/RevisionPointer.html +99 -0
- data/rdoc/RubyXL/RichText.html +20 -39
- data/rdoc/RubyXL/RichTextRun.html +18 -38
- data/rdoc/RubyXL/Row.html +53 -152
- data/rdoc/RubyXL/RowExt.html +13 -19
- data/rdoc/RubyXL/RunProperties.html +13 -19
- data/rdoc/RubyXL/Scenario.html +13 -19
- data/rdoc/RubyXL/Scenarios.html +13 -19
- data/rdoc/RubyXL/Selection.html +19 -39
- data/rdoc/RubyXL/ShapeGuide.html +13 -19
- data/rdoc/RubyXL/ShapeTextRectangle.html +13 -19
- data/rdoc/RubyXL/SharedStringsTable.html +38 -147
- data/rdoc/RubyXL/Sheet.html +13 -19
- data/rdoc/RubyXL/SheetCalculationProperties.html +13 -19
- data/rdoc/RubyXL/SheetData.html +20 -53
- data/rdoc/RubyXL/SheetDataExt.html +13 -19
- data/rdoc/RubyXL/SheetDataSet.html +13 -19
- data/rdoc/RubyXL/SheetMetadata.html +108 -0
- data/rdoc/RubyXL/SheetName.html +13 -19
- data/rdoc/RubyXL/SheetNames.html +13 -19
- data/rdoc/RubyXL/Sheets.html +13 -19
- data/rdoc/RubyXL/SlicerCacheFile.html +12 -25
- data/rdoc/RubyXL/SlicerFile.html +12 -25
- data/rdoc/RubyXL/SmartTagProperties.html +13 -19
- data/rdoc/RubyXL/SmartTagType.html +13 -19
- data/rdoc/RubyXL/SmartTagTypes.html +13 -19
- data/rdoc/RubyXL/SmartTags.html +13 -19
- data/rdoc/RubyXL/SortCondition.html +13 -19
- data/rdoc/RubyXL/SortState.html +13 -19
- data/rdoc/RubyXL/Sqref.html +20 -53
- data/rdoc/RubyXL/Stop.html +13 -19
- data/rdoc/RubyXL/StringNode.html +12 -17
- data/rdoc/RubyXL/StringNodeW3C.html +21 -54
- data/rdoc/RubyXL/StringValue.html +12 -17
- data/rdoc/RubyXL/Stylesheet.html +35 -117
- data/rdoc/RubyXL/TableFile.html +12 -25
- data/rdoc/RubyXL/TableParts.html +12 -17
- data/rdoc/RubyXL/TableStyle.html +13 -19
- data/rdoc/RubyXL/TableStyles.html +13 -19
- data/rdoc/RubyXL/Text.html +23 -67
- data/rdoc/RubyXL/TextImportSettings.html +99 -0
- data/rdoc/RubyXL/Theme.html +57 -62
- data/rdoc/RubyXL/ThemeElements.html +13 -19
- data/rdoc/RubyXL/ThumbnailFile.html +12 -25
- data/rdoc/RubyXL/Top10.html +13 -19
- data/rdoc/RubyXL/VMLDrawingFile.html +15 -32
- data/rdoc/RubyXL/Variant.html +13 -19
- data/rdoc/RubyXL/Vector.html +18 -38
- data/rdoc/RubyXL/VectorValue.html +12 -17
- data/rdoc/RubyXL/VisualProperties.html +13 -19
- data/rdoc/RubyXL/WebPublishObject.html +13 -19
- data/rdoc/RubyXL/WebPublishObjects.html +13 -19
- data/rdoc/RubyXL/WebPublishingItem.html +13 -19
- data/rdoc/RubyXL/WebPublishingItems.html +13 -19
- data/rdoc/RubyXL/WebPublishingProperties.html +13 -19
- data/rdoc/RubyXL/WebQueryProperties.html +99 -0
- data/rdoc/RubyXL/Workbook.html +487 -227
- data/rdoc/RubyXL/WorkbookConvenienceMethods.html +163 -871
- data/rdoc/RubyXL/WorkbookProperties.html +13 -19
- data/rdoc/RubyXL/WorkbookProtection.html +13 -19
- data/rdoc/RubyXL/WorkbookRoot.html +28 -114
- data/rdoc/RubyXL/WorkbookView.html +13 -19
- data/rdoc/RubyXL/WorkbookViews.html +13 -19
- data/rdoc/RubyXL/Worksheet.html +93 -121
- data/rdoc/RubyXL/WorksheetConvenienceMethods.html +299 -1109
- data/rdoc/RubyXL/WorksheetDimensions.html +13 -19
- data/rdoc/RubyXL/WorksheetFormatProperties.html +12 -17
- data/rdoc/RubyXL/WorksheetProperties.html +13 -19
- data/rdoc/RubyXL/WorksheetProtection.html +13 -19
- data/rdoc/RubyXL/WorksheetView.html +13 -19
- data/rdoc/RubyXL/WorksheetViews.html +13 -19
- data/rdoc/RubyXL/XF.html +13 -19
- data/rdoc/RubyXL.html +41 -296
- data/rdoc/created.rid +45 -38
- data/rdoc/css/fonts.css +6 -6
- data/rdoc/css/rdoc.css +55 -6
- data/rdoc/fonts/SourceCodePro-Bold.ttf +0 -0
- data/rdoc/fonts/SourceCodePro-Regular.ttf +0 -0
- data/rdoc/index.html +44 -363
- data/rdoc/js/darkfish.js +23 -100
- data/rdoc/js/navigation.js +4 -41
- data/rdoc/js/navigation.js.gz +0 -0
- data/rdoc/js/search.js +32 -31
- data/rdoc/js/search_index.js +1 -1
- data/rdoc/js/search_index.js.gz +0 -0
- data/rdoc/js/searcher.js +7 -6
- data/rdoc/js/searcher.js.gz +0 -0
- data/rdoc/table_of_contents.html +347 -75
- data/rubyXL.gemspec +78 -43
- data/spec/lib/cell_spec.rb +115 -4
- data/spec/lib/color_spec.rb +2 -1
- data/spec/lib/parser_spec.rb +24 -27
- data/spec/lib/reference_spec.rb +9 -3
- data/spec/lib/rgb_color_spec.rb +27 -0
- data/spec/lib/stylesheet_spec.rb +8 -11
- data/spec/lib/text_spec.rb +8 -4
- data/spec/lib/workbook_spec.rb +26 -5
- data/spec/lib/worksheet_spec.rb +873 -479
- data/spec/spec_helper.rb +2 -0
- data/test/test_parse_write.rb +15 -15
- metadata +65 -10
- data/rdoc/js/jquery.js +0 -4
data/rdoc/table_of_contents.html
CHANGED
|
@@ -4,23 +4,26 @@
|
|
|
4
4
|
<head>
|
|
5
5
|
<meta charset="UTF-8">
|
|
6
6
|
|
|
7
|
-
<title>Table of Contents - rubyXL 3.
|
|
7
|
+
<title>Table of Contents - rubyXL 3.4.25</title>
|
|
8
8
|
|
|
9
9
|
<script type="text/javascript">
|
|
10
10
|
var rdoc_rel_prefix = "./";
|
|
11
|
+
var index_rel_prefix = "./";
|
|
11
12
|
</script>
|
|
12
13
|
|
|
13
|
-
<script src="./js/
|
|
14
|
-
<script src="./js/
|
|
14
|
+
<script src="./js/navigation.js" defer></script>
|
|
15
|
+
<script src="./js/search.js" defer></script>
|
|
16
|
+
<script src="./js/search_index.js" defer></script>
|
|
17
|
+
<script src="./js/searcher.js" defer></script>
|
|
18
|
+
<script src="./js/darkfish.js" defer></script>
|
|
15
19
|
|
|
16
20
|
<link href="./css/fonts.css" rel="stylesheet">
|
|
17
21
|
<link href="./css/rdoc.css" rel="stylesheet">
|
|
18
22
|
|
|
19
23
|
|
|
20
|
-
|
|
21
24
|
<body id="top" class="table-of-contents">
|
|
22
25
|
<main role="main">
|
|
23
|
-
<h1 class="class">Table of Contents - rubyXL 3.
|
|
26
|
+
<h1 class="class">Table of Contents - rubyXL 3.4.25</h1>
|
|
24
27
|
|
|
25
28
|
<h2 id="pages">Pages</h2>
|
|
26
29
|
<ul>
|
|
@@ -31,6 +34,7 @@
|
|
|
31
34
|
<li><a href="README_rdoc.html#label-rubyXL">rubyXL</a>
|
|
32
35
|
<li><a href="README_rdoc.html#label-To+Install-3A">To Install:</a>
|
|
33
36
|
<li><a href="README_rdoc.html#label-To+Use-3A">To Use:</a>
|
|
37
|
+
<li><a href="README_rdoc.html#label-Convenience+methods">Convenience methods</a>
|
|
34
38
|
<li><a href="README_rdoc.html#label-Parsing+an+existing+workbook">Parsing an existing workbook</a>
|
|
35
39
|
<li><a href="README_rdoc.html#label-Creating+a+new+Workbook">Creating a new Workbook</a>
|
|
36
40
|
<li><a href="README_rdoc.html#label-Accessing">Accessing</a>
|
|
@@ -40,7 +44,6 @@
|
|
|
40
44
|
<li><a href="README_rdoc.html#label-Wrappers+for+accessing+Cell+properties">Wrappers for accessing Cell properties</a>
|
|
41
45
|
<li><a href="README_rdoc.html#label-Wrappers+for+accessing+Row+properties+">Wrappers for accessing Row properties </a>
|
|
42
46
|
<li><a href="README_rdoc.html#label-Accessing+column+properties">Accessing column properties</a>
|
|
43
|
-
<li><a href="README_rdoc.html#label-Table+reading">Table reading</a>
|
|
44
47
|
<li><a href="README_rdoc.html#label-Modifying">Modifying</a>
|
|
45
48
|
<li><a href="README_rdoc.html#label-Adding+Worksheets">Adding Worksheets</a>
|
|
46
49
|
<li><a href="README_rdoc.html#label-Renaming+Worksheets">Renaming Worksheets</a>
|
|
@@ -52,6 +55,7 @@
|
|
|
52
55
|
<li><a href="README_rdoc.html#label-Changing+Alignment">Changing Alignment</a>
|
|
53
56
|
<li><a href="README_rdoc.html#label-Horizontal">Horizontal</a>
|
|
54
57
|
<li><a href="README_rdoc.html#label-Vertical">Vertical</a>
|
|
58
|
+
<li><a href="README_rdoc.html#label-Rotation">Rotation</a>
|
|
55
59
|
<li><a href="README_rdoc.html#label-Changing+Row+Height">Changing Row Height</a>
|
|
56
60
|
<li><a href="README_rdoc.html#label-Changing+Column+Width">Changing Column Width</a>
|
|
57
61
|
<li><a href="README_rdoc.html#label-Merging+Cells">Merging Cells</a>
|
|
@@ -62,14 +66,16 @@
|
|
|
62
66
|
<li><a href="README_rdoc.html#label-Insert+Cell">Insert Cell</a>
|
|
63
67
|
<li><a href="README_rdoc.html#label-Delete+Cell">Delete Cell</a>
|
|
64
68
|
<li><a href="README_rdoc.html#label-Modifying+Cell+Format">Modifying Cell Format</a>
|
|
69
|
+
<li><a href="README_rdoc.html#label-Add+hyperlink+to+a+Cell">Add hyperlink to a Cell</a>
|
|
65
70
|
<li><a href="README_rdoc.html#label-I-2FO">I/O</a>
|
|
66
71
|
<li><a href="README_rdoc.html#label-Miscellaneous">Miscellaneous</a>
|
|
72
|
+
<li><a href="README_rdoc.html#label-Suppress+warnings+about+malformed+input+files">Suppress warnings about malformed input files</a>
|
|
73
|
+
<li><a href="README_rdoc.html#label-Data+validation+-28colloquially+referred+to+as+-22dropdown+list-22-29">Data validation (colloquially referred to as “dropdown list”)</a>
|
|
67
74
|
<li><a href="README_rdoc.html#label-For+more+information">For more information</a>
|
|
68
75
|
<li><a href="README_rdoc.html#label-Contributing+to+rubyXL">Contributing to rubyXL</a>
|
|
69
76
|
<li><a href="README_rdoc.html#label-Copyright">Copyright</a>
|
|
70
77
|
</ul>
|
|
71
78
|
</li>
|
|
72
|
-
|
|
73
79
|
</ul>
|
|
74
80
|
|
|
75
81
|
<h2 id="classes">Classes and Modules</h2>
|
|
@@ -83,6 +89,12 @@
|
|
|
83
89
|
<li class="class">
|
|
84
90
|
<a href="RubyXL/AExtensionStorageArea.html">RubyXL::AExtensionStorageArea</a>
|
|
85
91
|
</li>
|
|
92
|
+
<li class="class">
|
|
93
|
+
<a href="RubyXL/ActiveX.html">RubyXL::ActiveX</a>
|
|
94
|
+
</li>
|
|
95
|
+
<li class="class">
|
|
96
|
+
<a href="RubyXL/ActiveXBinary.html">RubyXL::ActiveXBinary</a>
|
|
97
|
+
</li>
|
|
86
98
|
<li class="class">
|
|
87
99
|
<a href="RubyXL/AdjustHandleList.html">RubyXL::AdjustHandleList</a>
|
|
88
100
|
</li>
|
|
@@ -515,6 +527,18 @@
|
|
|
515
527
|
<li class="class">
|
|
516
528
|
<a href="RubyXL/Color.html">RubyXL::Color</a>
|
|
517
529
|
</li>
|
|
530
|
+
<li class="module">
|
|
531
|
+
<a href="RubyXL/ColorConvenienceClasses.html">RubyXL::ColorConvenienceClasses</a>
|
|
532
|
+
</li>
|
|
533
|
+
<li class="class">
|
|
534
|
+
<a href="RubyXL/ColorConvenienceClasses/HlsColor.html">RubyXL::ColorConvenienceClasses::HlsColor</a>
|
|
535
|
+
</li>
|
|
536
|
+
<li class="class">
|
|
537
|
+
<a href="RubyXL/ColorConvenienceClasses/RgbColor.html">RubyXL::ColorConvenienceClasses::RgbColor</a>
|
|
538
|
+
</li>
|
|
539
|
+
<li class="module">
|
|
540
|
+
<a href="RubyXL/ColorConvenienceMethods.html">RubyXL::ColorConvenienceMethods</a>
|
|
541
|
+
</li>
|
|
518
542
|
<li class="class">
|
|
519
543
|
<a href="RubyXL/ColorFilter.html">RubyXL::ColorFilter</a>
|
|
520
544
|
</li>
|
|
@@ -551,6 +575,24 @@
|
|
|
551
575
|
<li class="class">
|
|
552
576
|
<a href="RubyXL/ConditionalFormattingRule.html">RubyXL::ConditionalFormattingRule</a>
|
|
553
577
|
</li>
|
|
578
|
+
<li class="class">
|
|
579
|
+
<a href="RubyXL/Connection.html">RubyXL::Connection</a>
|
|
580
|
+
</li>
|
|
581
|
+
<li class="class">
|
|
582
|
+
<a href="RubyXL/ConnectionTable.html">RubyXL::ConnectionTable</a>
|
|
583
|
+
</li>
|
|
584
|
+
<li class="class">
|
|
585
|
+
<a href="RubyXL/ConnectionTables.html">RubyXL::ConnectionTables</a>
|
|
586
|
+
</li>
|
|
587
|
+
<li class="class">
|
|
588
|
+
<a href="RubyXL/ConnectionTextField.html">RubyXL::ConnectionTextField</a>
|
|
589
|
+
</li>
|
|
590
|
+
<li class="class">
|
|
591
|
+
<a href="RubyXL/ConnectionTextFields.html">RubyXL::ConnectionTextFields</a>
|
|
592
|
+
</li>
|
|
593
|
+
<li class="class">
|
|
594
|
+
<a href="RubyXL/Connections.html">RubyXL::Connections</a>
|
|
595
|
+
</li>
|
|
554
596
|
<li class="class">
|
|
555
597
|
<a href="RubyXL/ContentTypeDefault.html">RubyXL::ContentTypeDefault</a>
|
|
556
598
|
</li>
|
|
@@ -590,6 +632,9 @@
|
|
|
590
632
|
<li class="class">
|
|
591
633
|
<a href="RubyXL/CustomProperty.html">RubyXL::CustomProperty</a>
|
|
592
634
|
</li>
|
|
635
|
+
<li class="class">
|
|
636
|
+
<a href="RubyXL/CustomPropertyFile.html">RubyXL::CustomPropertyFile</a>
|
|
637
|
+
</li>
|
|
593
638
|
<li class="class">
|
|
594
639
|
<a href="RubyXL/CustomSheetView.html">RubyXL::CustomSheetView</a>
|
|
595
640
|
</li>
|
|
@@ -716,6 +761,9 @@
|
|
|
716
761
|
<li class="class">
|
|
717
762
|
<a href="RubyXL/Font.html">RubyXL::Font</a>
|
|
718
763
|
</li>
|
|
764
|
+
<li class="module">
|
|
765
|
+
<a href="RubyXL/FontConvenienceMethods.html">RubyXL::FontConvenienceMethods</a>
|
|
766
|
+
</li>
|
|
719
767
|
<li class="class">
|
|
720
768
|
<a href="RubyXL/FontScheme.html">RubyXL::FontScheme</a>
|
|
721
769
|
</li>
|
|
@@ -815,6 +863,9 @@
|
|
|
815
863
|
<li class="class">
|
|
816
864
|
<a href="RubyXL/OOXMLContainerObject.html">RubyXL::OOXMLContainerObject</a>
|
|
817
865
|
</li>
|
|
866
|
+
<li class="class">
|
|
867
|
+
<a href="RubyXL/OOXMLIgnored.html">RubyXL::OOXMLIgnored</a>
|
|
868
|
+
</li>
|
|
818
869
|
<li class="class">
|
|
819
870
|
<a href="RubyXL/OOXMLObject.html">RubyXL::OOXMLObject</a>
|
|
820
871
|
</li>
|
|
@@ -830,9 +881,24 @@
|
|
|
830
881
|
<li class="class">
|
|
831
882
|
<a href="RubyXL/OOXMLTopLevelObject.html">RubyXL::OOXMLTopLevelObject</a>
|
|
832
883
|
</li>
|
|
884
|
+
<li class="class">
|
|
885
|
+
<a href="RubyXL/OdbcOleDbProperties.html">RubyXL::OdbcOleDbProperties</a>
|
|
886
|
+
</li>
|
|
833
887
|
<li class="class">
|
|
834
888
|
<a href="RubyXL/Offset.html">RubyXL::Offset</a>
|
|
835
889
|
</li>
|
|
890
|
+
<li class="class">
|
|
891
|
+
<a href="RubyXL/OlapProperties.html">RubyXL::OlapProperties</a>
|
|
892
|
+
</li>
|
|
893
|
+
<li class="class">
|
|
894
|
+
<a href="RubyXL/OleItem.html">RubyXL::OleItem</a>
|
|
895
|
+
</li>
|
|
896
|
+
<li class="class">
|
|
897
|
+
<a href="RubyXL/OleItems.html">RubyXL::OleItems</a>
|
|
898
|
+
</li>
|
|
899
|
+
<li class="class">
|
|
900
|
+
<a href="RubyXL/OleLink.html">RubyXL::OleLink</a>
|
|
901
|
+
</li>
|
|
836
902
|
<li class="class">
|
|
837
903
|
<a href="RubyXL/OutlineProperties.html">RubyXL::OutlineProperties</a>
|
|
838
904
|
</li>
|
|
@@ -905,6 +971,30 @@
|
|
|
905
971
|
<li class="class">
|
|
906
972
|
<a href="RubyXL/Protection.html">RubyXL::Protection</a>
|
|
907
973
|
</li>
|
|
974
|
+
<li class="class">
|
|
975
|
+
<a href="RubyXL/QueryParameter.html">RubyXL::QueryParameter</a>
|
|
976
|
+
</li>
|
|
977
|
+
<li class="class">
|
|
978
|
+
<a href="RubyXL/QueryParameters.html">RubyXL::QueryParameters</a>
|
|
979
|
+
</li>
|
|
980
|
+
<li class="class">
|
|
981
|
+
<a href="RubyXL/QueryTable.html">RubyXL::QueryTable</a>
|
|
982
|
+
</li>
|
|
983
|
+
<li class="class">
|
|
984
|
+
<a href="RubyXL/QueryTableDeletedField.html">RubyXL::QueryTableDeletedField</a>
|
|
985
|
+
</li>
|
|
986
|
+
<li class="class">
|
|
987
|
+
<a href="RubyXL/QueryTableDeletedFields.html">RubyXL::QueryTableDeletedFields</a>
|
|
988
|
+
</li>
|
|
989
|
+
<li class="class">
|
|
990
|
+
<a href="RubyXL/QueryTableField.html">RubyXL::QueryTableField</a>
|
|
991
|
+
</li>
|
|
992
|
+
<li class="class">
|
|
993
|
+
<a href="RubyXL/QueryTableFields.html">RubyXL::QueryTableFields</a>
|
|
994
|
+
</li>
|
|
995
|
+
<li class="class">
|
|
996
|
+
<a href="RubyXL/QueryTableRefresh.html">RubyXL::QueryTableRefresh</a>
|
|
997
|
+
</li>
|
|
908
998
|
<li class="class">
|
|
909
999
|
<a href="RubyXL/RID.html">RubyXL::RID</a>
|
|
910
1000
|
</li>
|
|
@@ -923,6 +1013,9 @@
|
|
|
923
1013
|
<li class="module">
|
|
924
1014
|
<a href="RubyXL/RelationshipSupport/ClassMehods.html">RubyXL::RelationshipSupport::ClassMehods</a>
|
|
925
1015
|
</li>
|
|
1016
|
+
<li class="class">
|
|
1017
|
+
<a href="RubyXL/RevisionPointer.html">RubyXL::RevisionPointer</a>
|
|
1018
|
+
</li>
|
|
926
1019
|
<li class="class">
|
|
927
1020
|
<a href="RubyXL/RichText.html">RubyXL::RichText</a>
|
|
928
1021
|
</li>
|
|
@@ -971,6 +1064,9 @@
|
|
|
971
1064
|
<li class="class">
|
|
972
1065
|
<a href="RubyXL/SheetDataSet.html">RubyXL::SheetDataSet</a>
|
|
973
1066
|
</li>
|
|
1067
|
+
<li class="class">
|
|
1068
|
+
<a href="RubyXL/SheetMetadata.html">RubyXL::SheetMetadata</a>
|
|
1069
|
+
</li>
|
|
974
1070
|
<li class="class">
|
|
975
1071
|
<a href="RubyXL/SheetName.html">RubyXL::SheetName</a>
|
|
976
1072
|
</li>
|
|
@@ -1037,6 +1133,9 @@
|
|
|
1037
1133
|
<li class="class">
|
|
1038
1134
|
<a href="RubyXL/Text.html">RubyXL::Text</a>
|
|
1039
1135
|
</li>
|
|
1136
|
+
<li class="class">
|
|
1137
|
+
<a href="RubyXL/TextImportSettings.html">RubyXL::TextImportSettings</a>
|
|
1138
|
+
</li>
|
|
1040
1139
|
<li class="class">
|
|
1041
1140
|
<a href="RubyXL/Theme.html">RubyXL::Theme</a>
|
|
1042
1141
|
</li>
|
|
@@ -1079,6 +1178,9 @@
|
|
|
1079
1178
|
<li class="class">
|
|
1080
1179
|
<a href="RubyXL/WebPublishingProperties.html">RubyXL::WebPublishingProperties</a>
|
|
1081
1180
|
</li>
|
|
1181
|
+
<li class="class">
|
|
1182
|
+
<a href="RubyXL/WebQueryProperties.html">RubyXL::WebQueryProperties</a>
|
|
1183
|
+
</li>
|
|
1082
1184
|
<li class="class">
|
|
1083
1185
|
<a href="RubyXL/Workbook.html">RubyXL::Workbook</a>
|
|
1084
1186
|
</li>
|
|
@@ -1272,11 +1374,21 @@
|
|
|
1272
1374
|
—
|
|
1273
1375
|
<span class="container">RubyXL::LegacyWorksheet</span>
|
|
1274
1376
|
|
|
1377
|
+
<li class="method">
|
|
1378
|
+
<a href="RubyXL/ColorConvenienceClasses/RgbColor.html#method-c-parse">::parse</a>
|
|
1379
|
+
—
|
|
1380
|
+
<span class="container">RubyXL::ColorConvenienceClasses::RgbColor</span>
|
|
1381
|
+
|
|
1275
1382
|
<li class="method">
|
|
1276
1383
|
<a href="RubyXL/RawOOXML.html#method-c-parse">::parse</a>
|
|
1277
1384
|
—
|
|
1278
1385
|
<span class="container">RubyXL::RawOOXML</span>
|
|
1279
1386
|
|
|
1387
|
+
<li class="method">
|
|
1388
|
+
<a href="RubyXL/OOXMLIgnored.html#method-c-parse">::parse</a>
|
|
1389
|
+
—
|
|
1390
|
+
<span class="container">RubyXL::OOXMLIgnored</span>
|
|
1391
|
+
|
|
1280
1392
|
<li class="method">
|
|
1281
1393
|
<a href="RubyXL/AExtension.html#method-c-parse">::parse</a>
|
|
1282
1394
|
—
|
|
@@ -1358,9 +1470,9 @@
|
|
|
1358
1470
|
<span class="container">RubyXL::SheetData</span>
|
|
1359
1471
|
|
|
1360
1472
|
<li class="method">
|
|
1361
|
-
<a href="RubyXL/
|
|
1473
|
+
<a href="RubyXL/Workbook.html#method-i-5B-5D">#[]</a>
|
|
1362
1474
|
—
|
|
1363
|
-
<span class="container">RubyXL::
|
|
1475
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1364
1476
|
|
|
1365
1477
|
<li class="method">
|
|
1366
1478
|
<a href="RubyXL/LegacyWorksheet.html#method-i-5B-5D">#[]</a>
|
|
@@ -1377,6 +1489,11 @@
|
|
|
1377
1489
|
—
|
|
1378
1490
|
<span class="container">RubyXL::LegacyWorksheet</span>
|
|
1379
1491
|
|
|
1492
|
+
<li class="method">
|
|
1493
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-add_hyperlink">#add_hyperlink</a>
|
|
1494
|
+
—
|
|
1495
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
1496
|
+
|
|
1380
1497
|
<li class="method">
|
|
1381
1498
|
<a href="RubyXL/OOXMLRelationshipsFile.html#method-i-add_relationship">#add_relationship</a>
|
|
1382
1499
|
—
|
|
@@ -1398,29 +1515,39 @@
|
|
|
1398
1515
|
<span class="container">RubyXL::GenericStorageObject</span>
|
|
1399
1516
|
|
|
1400
1517
|
<li class="method">
|
|
1401
|
-
<a href="RubyXL/
|
|
1518
|
+
<a href="RubyXL/WorksheetConvenienceMethods.html#method-i-add_validation_list">#add_validation_list</a>
|
|
1402
1519
|
—
|
|
1403
|
-
<span class="container">RubyXL::
|
|
1520
|
+
<span class="container">RubyXL::WorksheetConvenienceMethods</span>
|
|
1404
1521
|
|
|
1405
1522
|
<li class="method">
|
|
1406
|
-
<a href="RubyXL/
|
|
1523
|
+
<a href="RubyXL/Workbook.html#method-i-add_worksheet">#add_worksheet</a>
|
|
1407
1524
|
—
|
|
1408
|
-
<span class="container">RubyXL::
|
|
1525
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1409
1526
|
|
|
1410
1527
|
<li class="method">
|
|
1411
|
-
<a href="RubyXL/
|
|
1528
|
+
<a href="RubyXL/Workbook.html#method-i-application">#application</a>
|
|
1412
1529
|
—
|
|
1413
|
-
<span class="container">RubyXL::
|
|
1530
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1414
1531
|
|
|
1415
1532
|
<li class="method">
|
|
1416
|
-
<a href="RubyXL/
|
|
1533
|
+
<a href="RubyXL/Workbook.html#method-i-application-3D">#application=</a>
|
|
1417
1534
|
—
|
|
1418
|
-
<span class="container">RubyXL::
|
|
1535
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1419
1536
|
|
|
1420
1537
|
<li class="method">
|
|
1421
|
-
<a href="RubyXL/
|
|
1538
|
+
<a href="RubyXL/ColorConvenienceClasses/HlsColor.html#method-i-apply_tint">#apply_tint</a>
|
|
1422
1539
|
—
|
|
1423
|
-
<span class="container">RubyXL::
|
|
1540
|
+
<span class="container">RubyXL::ColorConvenienceClasses::HlsColor</span>
|
|
1541
|
+
|
|
1542
|
+
<li class="method">
|
|
1543
|
+
<a href="RubyXL/Workbook.html#method-i-appversion">#appversion</a>
|
|
1544
|
+
—
|
|
1545
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1546
|
+
|
|
1547
|
+
<li class="method">
|
|
1548
|
+
<a href="RubyXL/Workbook.html#method-i-appversion-3D">#appversion=</a>
|
|
1549
|
+
—
|
|
1550
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1424
1551
|
|
|
1425
1552
|
<li class="method">
|
|
1426
1553
|
<a href="RubyXL/DrawingFile.html#method-i-attach_relationship">#attach_relationship</a>
|
|
@@ -1432,6 +1559,11 @@
|
|
|
1432
1559
|
—
|
|
1433
1560
|
<span class="container">RubyXL::ChartFile</span>
|
|
1434
1561
|
|
|
1562
|
+
<li class="method">
|
|
1563
|
+
<a href="RubyXL/ActiveX.html#method-i-attach_relationship">#attach_relationship</a>
|
|
1564
|
+
—
|
|
1565
|
+
<span class="container">RubyXL::ActiveX</span>
|
|
1566
|
+
|
|
1435
1567
|
<li class="method">
|
|
1436
1568
|
<a href="RubyXL/RelationshipSupport.html#method-i-attach_relationship">#attach_relationship</a>
|
|
1437
1569
|
—
|
|
@@ -1477,6 +1609,11 @@
|
|
|
1477
1609
|
—
|
|
1478
1610
|
<span class="container">RubyXL::CellValue</span>
|
|
1479
1611
|
|
|
1612
|
+
<li class="method">
|
|
1613
|
+
<a href="RubyXL/Row.html#method-i-before_write_xml">#before_write_xml</a>
|
|
1614
|
+
—
|
|
1615
|
+
<span class="container">RubyXL::Row</span>
|
|
1616
|
+
|
|
1480
1617
|
<li class="method">
|
|
1481
1618
|
<a href="RubyXL/Text.html#method-i-before_write_xml">#before_write_xml</a>
|
|
1482
1619
|
—
|
|
@@ -1507,6 +1644,11 @@
|
|
|
1507
1644
|
—
|
|
1508
1645
|
<span class="container">RubyXL::WorkbookConvenienceMethods</span>
|
|
1509
1646
|
|
|
1647
|
+
<li class="method">
|
|
1648
|
+
<a href="RubyXL/Worksheet.html#method-i-cell_at">#cell_at</a>
|
|
1649
|
+
—
|
|
1650
|
+
<span class="container">RubyXL::Worksheet</span>
|
|
1651
|
+
|
|
1510
1652
|
<li class="method">
|
|
1511
1653
|
<a href="RubyXL/WorkbookConvenienceMethods.html#method-i-cell_xfs">#cell_xfs</a>
|
|
1512
1654
|
—
|
|
@@ -1727,6 +1869,21 @@
|
|
|
1727
1869
|
—
|
|
1728
1870
|
<span class="container">RubyXL::WorksheetConvenienceMethods</span>
|
|
1729
1871
|
|
|
1872
|
+
<li class="method">
|
|
1873
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-change_shrink_to_fit">#change_shrink_to_fit</a>
|
|
1874
|
+
—
|
|
1875
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
1876
|
+
|
|
1877
|
+
<li class="method">
|
|
1878
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-change_text_indent">#change_text_indent</a>
|
|
1879
|
+
—
|
|
1880
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
1881
|
+
|
|
1882
|
+
<li class="method">
|
|
1883
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-change_text_rotation">#change_text_rotation</a>
|
|
1884
|
+
—
|
|
1885
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
1886
|
+
|
|
1730
1887
|
<li class="method">
|
|
1731
1888
|
<a href="RubyXL/CellConvenienceMethods.html#method-i-change_text_wrap">#change_text_wrap</a>
|
|
1732
1889
|
—
|
|
@@ -1758,14 +1915,14 @@
|
|
|
1758
1915
|
<span class="container">RubyXL::WorksheetConvenienceMethods</span>
|
|
1759
1916
|
|
|
1760
1917
|
<li class="method">
|
|
1761
|
-
<a href="RubyXL/
|
|
1918
|
+
<a href="RubyXL/Workbook.html#method-i-company">#company</a>
|
|
1762
1919
|
—
|
|
1763
|
-
<span class="container">RubyXL::
|
|
1920
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1764
1921
|
|
|
1765
1922
|
<li class="method">
|
|
1766
|
-
<a href="RubyXL/
|
|
1923
|
+
<a href="RubyXL/Workbook.html#method-i-company-3D">#company=</a>
|
|
1767
1924
|
—
|
|
1768
|
-
<span class="container">RubyXL::
|
|
1925
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1769
1926
|
|
|
1770
1927
|
<li class="method">
|
|
1771
1928
|
<a href="RubyXL/Workbook.html#method-i-content_type">#content_type</a>
|
|
@@ -1783,9 +1940,9 @@
|
|
|
1783
1940
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
1784
1941
|
|
|
1785
1942
|
<li class="method">
|
|
1786
|
-
<a href="RubyXL/
|
|
1943
|
+
<a href="RubyXL/Workbook.html#method-i-created_at">#created_at</a>
|
|
1787
1944
|
—
|
|
1788
|
-
<span class="container">RubyXL::
|
|
1945
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1789
1946
|
|
|
1790
1947
|
<li class="method">
|
|
1791
1948
|
<a href="RubyXL/CorePropertiesFile.html#method-i-created_at-3D">#created_at=</a>
|
|
@@ -1793,9 +1950,9 @@
|
|
|
1793
1950
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
1794
1951
|
|
|
1795
1952
|
<li class="method">
|
|
1796
|
-
<a href="RubyXL/
|
|
1953
|
+
<a href="RubyXL/Workbook.html#method-i-created_at-3D">#created_at=</a>
|
|
1797
1954
|
—
|
|
1798
|
-
<span class="container">RubyXL::
|
|
1955
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1799
1956
|
|
|
1800
1957
|
<li class="method">
|
|
1801
1958
|
<a href="RubyXL/CorePropertiesFile.html#method-i-creator">#creator</a>
|
|
@@ -1803,9 +1960,9 @@
|
|
|
1803
1960
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
1804
1961
|
|
|
1805
1962
|
<li class="method">
|
|
1806
|
-
<a href="RubyXL/
|
|
1963
|
+
<a href="RubyXL/Workbook.html#method-i-creator">#creator</a>
|
|
1807
1964
|
—
|
|
1808
|
-
<span class="container">RubyXL::
|
|
1965
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1809
1966
|
|
|
1810
1967
|
<li class="method">
|
|
1811
1968
|
<a href="RubyXL/CorePropertiesFile.html#method-i-creator-3D">#creator=</a>
|
|
@@ -1813,19 +1970,19 @@
|
|
|
1813
1970
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
1814
1971
|
|
|
1815
1972
|
<li class="method">
|
|
1816
|
-
<a href="RubyXL/
|
|
1973
|
+
<a href="RubyXL/Workbook.html#method-i-creator-3D">#creator=</a>
|
|
1817
1974
|
—
|
|
1818
|
-
<span class="container">RubyXL::
|
|
1975
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1819
1976
|
|
|
1820
1977
|
<li class="method">
|
|
1821
|
-
<a href="RubyXL/
|
|
1978
|
+
<a href="RubyXL/Workbook.html#method-i-date1904">#date1904</a>
|
|
1822
1979
|
—
|
|
1823
|
-
<span class="container">RubyXL::
|
|
1980
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1824
1981
|
|
|
1825
1982
|
<li class="method">
|
|
1826
|
-
<a href="RubyXL/
|
|
1983
|
+
<a href="RubyXL/Workbook.html#method-i-date1904-3D">#date1904=</a>
|
|
1827
1984
|
—
|
|
1828
|
-
<span class="container">RubyXL::
|
|
1985
|
+
<span class="container">RubyXL::Workbook</span>
|
|
1829
1986
|
|
|
1830
1987
|
<li class="method">
|
|
1831
1988
|
<a href="RubyXL/Workbook.html#method-i-date_to_num">#date_to_num</a>
|
|
@@ -1847,6 +2004,16 @@
|
|
|
1847
2004
|
—
|
|
1848
2005
|
<span class="container">RubyXL::OOXMLObjectClassMethods</span>
|
|
1849
2006
|
|
|
2007
|
+
<li class="method">
|
|
2008
|
+
<a href="RubyXL/WorkbookConvenienceMethods.html#method-i-define_new_name">#define_new_name</a>
|
|
2009
|
+
—
|
|
2010
|
+
<span class="container">RubyXL::WorkbookConvenienceMethods</span>
|
|
2011
|
+
|
|
2012
|
+
<li class="method">
|
|
2013
|
+
<a href="RubyXL/OOXMLObjectClassMethods.html#method-i-define_relationship">#define_relationship</a>
|
|
2014
|
+
—
|
|
2015
|
+
<span class="container">RubyXL::OOXMLObjectClassMethods</span>
|
|
2016
|
+
|
|
1850
2017
|
<li class="method">
|
|
1851
2018
|
<a href="RubyXL/RelationshipSupport/ClassMehods.html#method-i-define_relationship">#define_relationship</a>
|
|
1852
2019
|
—
|
|
@@ -1967,11 +2134,31 @@
|
|
|
1967
2134
|
—
|
|
1968
2135
|
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
1969
2136
|
|
|
2137
|
+
<li class="method">
|
|
2138
|
+
<a href="RubyXL/Cell.html#method-i-get_cell_border">#get_cell_border</a>
|
|
2139
|
+
—
|
|
2140
|
+
<span class="container">RubyXL::Cell</span>
|
|
2141
|
+
|
|
2142
|
+
<li class="method">
|
|
2143
|
+
<a href="RubyXL/Cell.html#method-i-get_cell_font">#get_cell_font</a>
|
|
2144
|
+
—
|
|
2145
|
+
<span class="container">RubyXL::Cell</span>
|
|
2146
|
+
|
|
2147
|
+
<li class="method">
|
|
2148
|
+
<a href="RubyXL/Cell.html#method-i-get_cell_xf">#get_cell_xf</a>
|
|
2149
|
+
—
|
|
2150
|
+
<span class="container">RubyXL::Cell</span>
|
|
2151
|
+
|
|
1970
2152
|
<li class="method">
|
|
1971
2153
|
<a href="RubyXL/WorksheetConvenienceMethods.html#method-i-get_col_style">#get_col_style</a>
|
|
1972
2154
|
—
|
|
1973
2155
|
<span class="container">RubyXL::WorksheetConvenienceMethods</span>
|
|
1974
2156
|
|
|
2157
|
+
<li class="method">
|
|
2158
|
+
<a href="RubyXL/Worksheet.html#method-i-get_col_xf">#get_col_xf</a>
|
|
2159
|
+
—
|
|
2160
|
+
<span class="container">RubyXL::Worksheet</span>
|
|
2161
|
+
|
|
1975
2162
|
<li class="method">
|
|
1976
2163
|
<a href="RubyXL/WorksheetConvenienceMethods.html#method-i-get_cols_style_index">#get_cols_style_index</a>
|
|
1977
2164
|
—
|
|
@@ -2022,6 +2209,11 @@
|
|
|
2022
2209
|
—
|
|
2023
2210
|
<span class="container">RubyXL::WorksheetConvenienceMethods</span>
|
|
2024
2211
|
|
|
2212
|
+
<li class="method">
|
|
2213
|
+
<a href="RubyXL/WorkbookConvenienceMethods.html#method-i-get_defined_name">#get_defined_name</a>
|
|
2214
|
+
—
|
|
2215
|
+
<span class="container">RubyXL::WorkbookConvenienceMethods</span>
|
|
2216
|
+
|
|
2025
2217
|
<li class="method">
|
|
2026
2218
|
<a href="RubyXL/Border.html#method-i-get_edge_color">#get_edge_color</a>
|
|
2027
2219
|
—
|
|
@@ -2053,9 +2245,9 @@
|
|
|
2053
2245
|
<span class="container">RubyXL::SharedStringsTable</span>
|
|
2054
2246
|
|
|
2055
2247
|
<li class="method">
|
|
2056
|
-
<a href="RubyXL/
|
|
2248
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-get_name">#get_name</a>
|
|
2057
2249
|
—
|
|
2058
|
-
<span class="container">RubyXL::
|
|
2250
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2059
2251
|
|
|
2060
2252
|
<li class="method">
|
|
2061
2253
|
<a href="RubyXL/OOXMLContainerObject.html#method-i-get_node_object">#get_node_object</a>
|
|
@@ -2077,15 +2269,20 @@
|
|
|
2077
2269
|
—
|
|
2078
2270
|
<span class="container">RubyXL::ColumnRanges</span>
|
|
2079
2271
|
|
|
2272
|
+
<li class="method">
|
|
2273
|
+
<a href="RubyXL/ColorConvenienceMethods.html#method-i-get_rgb">#get_rgb</a>
|
|
2274
|
+
—
|
|
2275
|
+
<span class="container">RubyXL::ColorConvenienceMethods</span>
|
|
2276
|
+
|
|
2080
2277
|
<li class="method">
|
|
2081
2278
|
<a href="RubyXL/BorderEdge.html#method-i-get_rgb_color">#get_rgb_color</a>
|
|
2082
2279
|
—
|
|
2083
2280
|
<span class="container">RubyXL::BorderEdge</span>
|
|
2084
2281
|
|
|
2085
2282
|
<li class="method">
|
|
2086
|
-
<a href="RubyXL/
|
|
2283
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-get_rgb_color">#get_rgb_color</a>
|
|
2087
2284
|
—
|
|
2088
|
-
<span class="container">RubyXL::
|
|
2285
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2089
2286
|
|
|
2090
2287
|
<li class="method">
|
|
2091
2288
|
<a href="RubyXL/WorksheetConvenienceMethods.html#method-i-get_row_alignment">#get_row_alignment</a>
|
|
@@ -2133,9 +2330,19 @@
|
|
|
2133
2330
|
<span class="container">RubyXL::WorksheetConvenienceMethods</span>
|
|
2134
2331
|
|
|
2135
2332
|
<li class="method">
|
|
2136
|
-
<a href="RubyXL/
|
|
2333
|
+
<a href="RubyXL/Worksheet.html#method-i-get_row_xf">#get_row_xf</a>
|
|
2137
2334
|
—
|
|
2138
|
-
<span class="container">RubyXL::
|
|
2335
|
+
<span class="container">RubyXL::Worksheet</span>
|
|
2336
|
+
|
|
2337
|
+
<li class="method">
|
|
2338
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-get_size">#get_size</a>
|
|
2339
|
+
—
|
|
2340
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2341
|
+
|
|
2342
|
+
<li class="method">
|
|
2343
|
+
<a href="RubyXL/Theme.html#method-i-get_theme_color">#get_theme_color</a>
|
|
2344
|
+
—
|
|
2345
|
+
<span class="container">RubyXL::Theme</span>
|
|
2139
2346
|
|
|
2140
2347
|
<li class="method">
|
|
2141
2348
|
<a href="RubyXL/CellConvenienceMethods.html#method-i-horizontal_alignment">#horizontal_alignment</a>
|
|
@@ -2218,9 +2425,9 @@
|
|
|
2218
2425
|
<span class="container">RubyXL::Cell</span>
|
|
2219
2426
|
|
|
2220
2427
|
<li class="method">
|
|
2221
|
-
<a href="RubyXL/
|
|
2428
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-is_bold">#is_bold</a>
|
|
2222
2429
|
—
|
|
2223
|
-
<span class="container">RubyXL::
|
|
2430
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2224
2431
|
|
|
2225
2432
|
<li class="method">
|
|
2226
2433
|
<a href="RubyXL/CellConvenienceMethods.html#method-i-is_bolded">#is_bolded</a>
|
|
@@ -2258,9 +2465,9 @@
|
|
|
2258
2465
|
<span class="container">RubyXL::NumberFormat</span>
|
|
2259
2466
|
|
|
2260
2467
|
<li class="method">
|
|
2261
|
-
<a href="RubyXL/
|
|
2468
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-is_italic">#is_italic</a>
|
|
2262
2469
|
—
|
|
2263
|
-
<span class="container">RubyXL::
|
|
2470
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2264
2471
|
|
|
2265
2472
|
<li class="method">
|
|
2266
2473
|
<a href="RubyXL/CellConvenienceMethods.html#method-i-is_italicized">#is_italicized</a>
|
|
@@ -2288,9 +2495,9 @@
|
|
|
2288
2495
|
<span class="container">RubyXL::WorksheetConvenienceMethods</span>
|
|
2289
2496
|
|
|
2290
2497
|
<li class="method">
|
|
2291
|
-
<a href="RubyXL/
|
|
2498
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-is_strikethrough">#is_strikethrough</a>
|
|
2292
2499
|
—
|
|
2293
|
-
<span class="container">RubyXL::
|
|
2500
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2294
2501
|
|
|
2295
2502
|
<li class="method">
|
|
2296
2503
|
<a href="RubyXL/CellConvenienceMethods.html#method-i-is_struckthrough">#is_struckthrough</a>
|
|
@@ -2298,14 +2505,14 @@
|
|
|
2298
2505
|
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
2299
2506
|
|
|
2300
2507
|
<li class="method">
|
|
2301
|
-
<a href="RubyXL/
|
|
2508
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-is_underlined">#is_underlined</a>
|
|
2302
2509
|
—
|
|
2303
|
-
<span class="container">RubyXL::
|
|
2510
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
2304
2511
|
|
|
2305
2512
|
<li class="method">
|
|
2306
|
-
<a href="RubyXL/
|
|
2513
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-is_underlined">#is_underlined</a>
|
|
2307
2514
|
—
|
|
2308
|
-
<span class="container">RubyXL::
|
|
2515
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2309
2516
|
|
|
2310
2517
|
<li class="method">
|
|
2311
2518
|
<a href="RubyXL/Reference.html#method-i-last_col">#last_col</a>
|
|
@@ -2343,9 +2550,9 @@
|
|
|
2343
2550
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
2344
2551
|
|
|
2345
2552
|
<li class="method">
|
|
2346
|
-
<a href="RubyXL/
|
|
2553
|
+
<a href="RubyXL/Workbook.html#method-i-modified_at">#modified_at</a>
|
|
2347
2554
|
—
|
|
2348
|
-
<span class="container">RubyXL::
|
|
2555
|
+
<span class="container">RubyXL::Workbook</span>
|
|
2349
2556
|
|
|
2350
2557
|
<li class="method">
|
|
2351
2558
|
<a href="RubyXL/CorePropertiesFile.html#method-i-modified_at-3D">#modified_at=</a>
|
|
@@ -2353,9 +2560,9 @@
|
|
|
2353
2560
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
2354
2561
|
|
|
2355
2562
|
<li class="method">
|
|
2356
|
-
<a href="RubyXL/
|
|
2563
|
+
<a href="RubyXL/Workbook.html#method-i-modified_at-3D">#modified_at=</a>
|
|
2357
2564
|
—
|
|
2358
|
-
<span class="container">RubyXL::
|
|
2565
|
+
<span class="container">RubyXL::Workbook</span>
|
|
2359
2566
|
|
|
2360
2567
|
<li class="method">
|
|
2361
2568
|
<a href="RubyXL/CorePropertiesFile.html#method-i-modifier">#modifier</a>
|
|
@@ -2363,9 +2570,9 @@
|
|
|
2363
2570
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
2364
2571
|
|
|
2365
2572
|
<li class="method">
|
|
2366
|
-
<a href="RubyXL/
|
|
2573
|
+
<a href="RubyXL/Workbook.html#method-i-modifier">#modifier</a>
|
|
2367
2574
|
—
|
|
2368
|
-
<span class="container">RubyXL::
|
|
2575
|
+
<span class="container">RubyXL::Workbook</span>
|
|
2369
2576
|
|
|
2370
2577
|
<li class="method">
|
|
2371
2578
|
<a href="RubyXL/CorePropertiesFile.html#method-i-modifier-3D">#modifier=</a>
|
|
@@ -2373,9 +2580,9 @@
|
|
|
2373
2580
|
<span class="container">RubyXL::CorePropertiesFile</span>
|
|
2374
2581
|
|
|
2375
2582
|
<li class="method">
|
|
2376
|
-
<a href="RubyXL/
|
|
2583
|
+
<a href="RubyXL/Workbook.html#method-i-modifier-3D">#modifier=</a>
|
|
2377
2584
|
—
|
|
2378
|
-
<span class="container">RubyXL::
|
|
2585
|
+
<span class="container">RubyXL::Workbook</span>
|
|
2379
2586
|
|
|
2380
2587
|
<li class="method">
|
|
2381
2588
|
<a href="RubyXL/WorkbookConvenienceMethods.html#method-i-modify_alignment">#modify_alignment</a>
|
|
@@ -2422,6 +2629,11 @@
|
|
|
2422
2629
|
—
|
|
2423
2630
|
<span class="container">RubyXL::OOXMLObjectClassMethods</span>
|
|
2424
2631
|
|
|
2632
|
+
<li class="method">
|
|
2633
|
+
<a href="RubyXL/WorkbookConvenienceMethods.html#method-i-password_hash">#password_hash</a>
|
|
2634
|
+
—
|
|
2635
|
+
<span class="container">RubyXL::WorkbookConvenienceMethods</span>
|
|
2636
|
+
|
|
2425
2637
|
<li class="method">
|
|
2426
2638
|
<a href="RubyXL/Cell.html#method-i-raw_value">#raw_value</a>
|
|
2427
2639
|
—
|
|
@@ -2472,6 +2684,11 @@
|
|
|
2472
2684
|
—
|
|
2473
2685
|
<span class="container">RubyXL::RelationshipSupport</span>
|
|
2474
2686
|
|
|
2687
|
+
<li class="method">
|
|
2688
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-remove_formula">#remove_formula</a>
|
|
2689
|
+
—
|
|
2690
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
2691
|
+
|
|
2475
2692
|
<li class="method">
|
|
2476
2693
|
<a href="RubyXL/Cell.html#method-i-row">#row</a>
|
|
2477
2694
|
—
|
|
@@ -2493,9 +2710,9 @@
|
|
|
2493
2710
|
<span class="container">RubyXL::Workbook</span>
|
|
2494
2711
|
|
|
2495
2712
|
<li class="method">
|
|
2496
|
-
<a href="RubyXL/
|
|
2713
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-set_bold">#set_bold</a>
|
|
2497
2714
|
—
|
|
2498
|
-
<span class="container">RubyXL::
|
|
2715
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2499
2716
|
|
|
2500
2717
|
<li class="method">
|
|
2501
2718
|
<a href="RubyXL/Border.html#method-i-set_edge_color">#set_edge_color</a>
|
|
@@ -2508,14 +2725,14 @@
|
|
|
2508
2725
|
<span class="container">RubyXL::Border</span>
|
|
2509
2726
|
|
|
2510
2727
|
<li class="method">
|
|
2511
|
-
<a href="RubyXL/
|
|
2728
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-set_italic">#set_italic</a>
|
|
2512
2729
|
—
|
|
2513
|
-
<span class="container">RubyXL::
|
|
2730
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2514
2731
|
|
|
2515
2732
|
<li class="method">
|
|
2516
|
-
<a href="RubyXL/
|
|
2733
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-set_name">#set_name</a>
|
|
2517
2734
|
—
|
|
2518
|
-
<span class="container">RubyXL::
|
|
2735
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2519
2736
|
|
|
2520
2737
|
<li class="method">
|
|
2521
2738
|
<a href="RubyXL/CellConvenienceMethods.html#method-i-set_number_format">#set_number_format</a>
|
|
@@ -2528,24 +2745,24 @@
|
|
|
2528
2745
|
<span class="container">RubyXL::BorderEdge</span>
|
|
2529
2746
|
|
|
2530
2747
|
<li class="method">
|
|
2531
|
-
<a href="RubyXL/
|
|
2748
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-set_rgb_color">#set_rgb_color</a>
|
|
2532
2749
|
—
|
|
2533
|
-
<span class="container">RubyXL::
|
|
2750
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2534
2751
|
|
|
2535
2752
|
<li class="method">
|
|
2536
|
-
<a href="RubyXL/
|
|
2753
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-set_size">#set_size</a>
|
|
2537
2754
|
—
|
|
2538
|
-
<span class="container">RubyXL::
|
|
2755
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2539
2756
|
|
|
2540
2757
|
<li class="method">
|
|
2541
|
-
<a href="RubyXL/
|
|
2758
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-set_strikethrough">#set_strikethrough</a>
|
|
2542
2759
|
—
|
|
2543
|
-
<span class="container">RubyXL::
|
|
2760
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2544
2761
|
|
|
2545
2762
|
<li class="method">
|
|
2546
|
-
<a href="RubyXL/
|
|
2763
|
+
<a href="RubyXL/FontConvenienceMethods.html#method-i-set_underline">#set_underline</a>
|
|
2547
2764
|
—
|
|
2548
|
-
<span class="container">RubyXL::
|
|
2765
|
+
<span class="container">RubyXL::FontConvenienceMethods</span>
|
|
2549
2766
|
|
|
2550
2767
|
<li class="method">
|
|
2551
2768
|
<a href="RubyXL/Reference.html#method-i-single_cell-3F">#single_cell?</a>
|
|
@@ -2577,11 +2794,46 @@
|
|
|
2577
2794
|
—
|
|
2578
2795
|
<span class="container">RubyXL::Workbook</span>
|
|
2579
2796
|
|
|
2797
|
+
<li class="method">
|
|
2798
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-text_indent">#text_indent</a>
|
|
2799
|
+
—
|
|
2800
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
2801
|
+
|
|
2802
|
+
<li class="method">
|
|
2803
|
+
<a href="RubyXL/CellConvenienceMethods.html#method-i-text_rotation">#text_rotation</a>
|
|
2804
|
+
—
|
|
2805
|
+
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
2806
|
+
|
|
2580
2807
|
<li class="method">
|
|
2581
2808
|
<a href="RubyXL/CellConvenienceMethods.html#method-i-text_wrap">#text_wrap</a>
|
|
2582
2809
|
—
|
|
2583
2810
|
<span class="container">RubyXL::CellConvenienceMethods</span>
|
|
2584
2811
|
|
|
2812
|
+
<li class="method">
|
|
2813
|
+
<a href="RubyXL/WorkbookConvenienceMethods.html#method-i-title">#title</a>
|
|
2814
|
+
—
|
|
2815
|
+
<span class="container">RubyXL::WorkbookConvenienceMethods</span>
|
|
2816
|
+
|
|
2817
|
+
<li class="method">
|
|
2818
|
+
<a href="RubyXL/WorkbookConvenienceMethods.html#method-i-title-3D">#title=</a>
|
|
2819
|
+
—
|
|
2820
|
+
<span class="container">RubyXL::WorkbookConvenienceMethods</span>
|
|
2821
|
+
|
|
2822
|
+
<li class="method">
|
|
2823
|
+
<a href="RubyXL/ColorConvenienceClasses/RgbColor.html#method-i-to_hls">#to_hls</a>
|
|
2824
|
+
—
|
|
2825
|
+
<span class="container">RubyXL::ColorConvenienceClasses::RgbColor</span>
|
|
2826
|
+
|
|
2827
|
+
<li class="method">
|
|
2828
|
+
<a href="RubyXL/ColorConvenienceClasses/HlsColor.html#method-i-to_rgb">#to_rgb</a>
|
|
2829
|
+
—
|
|
2830
|
+
<span class="container">RubyXL::ColorConvenienceClasses::HlsColor</span>
|
|
2831
|
+
|
|
2832
|
+
<li class="method">
|
|
2833
|
+
<a href="RubyXL/ColorConvenienceClasses/RgbColor.html#method-i-to_s">#to_s</a>
|
|
2834
|
+
—
|
|
2835
|
+
<span class="container">RubyXL::ColorConvenienceClasses::RgbColor</span>
|
|
2836
|
+
|
|
2585
2837
|
<li class="method">
|
|
2586
2838
|
<a href="RubyXL/Reference.html#method-i-to_s">#to_s</a>
|
|
2587
2839
|
—
|
|
@@ -2612,6 +2864,11 @@
|
|
|
2612
2864
|
—
|
|
2613
2865
|
<span class="container">RubyXL::StringNodeW3C</span>
|
|
2614
2866
|
|
|
2867
|
+
<li class="method">
|
|
2868
|
+
<a href="RubyXL/Reference.html#method-i-valid-3F">#valid?</a>
|
|
2869
|
+
—
|
|
2870
|
+
<span class="container">RubyXL::Reference</span>
|
|
2871
|
+
|
|
2615
2872
|
<li class="method">
|
|
2616
2873
|
<a href="RubyXL/Cell.html#method-i-value">#value</a>
|
|
2617
2874
|
—
|
|
@@ -2637,6 +2894,11 @@
|
|
|
2637
2894
|
—
|
|
2638
2895
|
<span class="container">RubyXL::RawOOXML</span>
|
|
2639
2896
|
|
|
2897
|
+
<li class="method">
|
|
2898
|
+
<a href="RubyXL/OOXMLIgnored.html#method-i-write_xml">#write_xml</a>
|
|
2899
|
+
—
|
|
2900
|
+
<span class="container">RubyXL::OOXMLIgnored</span>
|
|
2901
|
+
|
|
2640
2902
|
<li class="method">
|
|
2641
2903
|
<a href="RubyXL/AExtension.html#method-i-write_xml">#write_xml</a>
|
|
2642
2904
|
—
|
|
@@ -2667,6 +2929,11 @@
|
|
|
2667
2929
|
—
|
|
2668
2930
|
<span class="container">RubyXL::CommentsFile</span>
|
|
2669
2931
|
|
|
2932
|
+
<li class="method">
|
|
2933
|
+
<a href="RubyXL/Connections.html#method-i-xlsx_path">#xlsx_path</a>
|
|
2934
|
+
—
|
|
2935
|
+
<span class="container">RubyXL::Connections</span>
|
|
2936
|
+
|
|
2670
2937
|
<li class="method">
|
|
2671
2938
|
<a href="RubyXL/ContentTypes.html#method-i-xlsx_path">#xlsx_path</a>
|
|
2672
2939
|
—
|
|
@@ -2692,6 +2959,11 @@
|
|
|
2692
2959
|
—
|
|
2693
2960
|
<span class="container">RubyXL::OOXMLTopLevelObject</span>
|
|
2694
2961
|
|
|
2962
|
+
<li class="method">
|
|
2963
|
+
<a href="RubyXL/QueryTable.html#method-i-xlsx_path">#xlsx_path</a>
|
|
2964
|
+
—
|
|
2965
|
+
<span class="container">RubyXL::QueryTable</span>
|
|
2966
|
+
|
|
2695
2967
|
<li class="method">
|
|
2696
2968
|
<a href="RubyXL/OOXMLRelationshipsFile.html#method-i-xlsx_path">#xlsx_path</a>
|
|
2697
2969
|
—
|
|
@@ -2731,8 +3003,8 @@
|
|
|
2731
3003
|
|
|
2732
3004
|
|
|
2733
3005
|
<footer id="validator-badges" role="contentinfo">
|
|
2734
|
-
<p><a href="
|
|
2735
|
-
<p>Generated by <a href="
|
|
3006
|
+
<p><a href="https://validator.w3.org/check/referer">Validate</a>
|
|
3007
|
+
<p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.4.0.
|
|
2736
3008
|
<p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
|
|
2737
3009
|
</footer>
|
|
2738
3010
|
|