Sha256: 764648dfd4cca36fa041be2c72add6e9ef3264099351ad55eb274dfdf4d1eab9

Contents?: true

Size: 372 Bytes

Versions: 1

Compression:

Stored size: 372 Bytes

Contents

module Axlsx

  #A collection of Cfvo objects that initializes with the required
  #first two items
  class Cfvos < SimpleTypedList

    def initialize
      super(Cfvo)
    end

    # Serialize the Cfvo object
    # @param [String] str
    # @return [String]
    def to_xml_string(str='')
      each { |cfvo| cfvo.to_xml_string(str) }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

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