Sha256: 36d248bd3f4c7a10cbaf9558c414da2da1871daf8bdd7e08cb86980f6ccb2403
Contents?: true
Size: 465 Bytes
Versions: 13
Compression:
Stored size: 465 Bytes
Contents
module Axlsx # a simple types list of DefinedName objects class DefinedNames < SimpleTypedList # creates the DefinedNames object def initialize super DefinedName end # Serialize to xml # @param [String] str # @return [String] def to_xml_string(str = '') return if @list.empty? str << "<definedNames>" each { |defined_name| defined_name.to_xml_string(str) } str << '</definedNames>' end end end
Version data entries
13 entries across 13 versions & 2 rubygems