Sha256: a7c5f2f9529bea96981c655b3a4fab7c98147bc687d022cd70dd95a9b13ca627

Contents?: true

Size: 609 Bytes

Versions: 1

Compression:

Stored size: 609 Bytes

Contents

module Axlsx

  # The cols class manages the col object used to manage column widths.
  # This is where the magic happens with autowidth
  class Cols < SimpleTypedList

    def initialize(worksheet)
      raise ArgumentError, "you must provide a worksheet" unless worksheet.is_a?(Worksheet)
      super Col
      @worksheet = worksheet
    end

    # Serialize the Cols object
    # @param [String] str
    # @return [String]
    def to_xml_string(str = '')
     return if empty?
     str << '<cols>'
     each { |item| item.to_xml_string(str) }
     str << '</cols>'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
caxlsx-3.2.0 lib/axlsx/workbook/worksheet/cols.rb