Sha256: 30c9e00f8f4954bf2aa3b87f142161f8dbc07a2871334821890ca1ee8bd782b2

Contents?: true

Size: 1005 Bytes

Versions: 6

Compression:

Stored size: 1005 Bytes

Contents

module Axlsx
  # The Fill is a formatting object that manages the background color, and pattern for cells.
  # @note The recommended way to manage styles in your workbook is to use Styles#add_style.
  # @see Styles#add_style
  # @see PatternFill
  # @see GradientFill
  class Fill

    # The type of fill
    # @return [PatternFill, GradientFill]
    attr_reader :fill_type

    # Creates a new Fill object
    # @param [PatternFill, GradientFill] fill_type 
    # @raise [ArgumentError] if the fill_type parameter is not a PatternFill or a GradientFill instance
    def initialize(fill_type)
      self.fill_type = fill_type
    end

    # Serializes the fill
    # @param [Nokogiri::XML::Builder] xml The document builder instance this objects xml will be added to.
    # @return [String]
    def to_xml(xml)
      xml.fill { @fill_type.to_xml(xml) }
    end

    private 
    def fill_type=(v) DataTypeValidator.validate "Fill.fill_type", [PatternFill, GradientFill], v; @fill_type = v; end

  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
axlsx-1.0.7 lib/axlsx/stylesheet/fill.rb~
axlsx-1.0.6 lib/axlsx/stylesheet/fill.rb~
axlsx-1.0.5 lib/axlsx/stylesheet/fill.rb~
axlsx-1.0.4 lib/axlsx/stylesheet/fill.rb~
axlsx-1.0.3 lib/axlsx/stylesheet/fill.rb~
axlsx-1.0.1 lib/axlsx/stylesheet/fill.rb~