Sha256: f62edaa866eab68c790e8090e515cbd2922ef1bbf6ab2623c4a87365a2a10a34
Contents?: true
Size: 435 Bytes
Versions: 17
Compression:
Stored size: 435 Bytes
Contents
module Axlsx # a simple types list of BookView objects class WorkbookViews < SimpleTypedList # creates the book views object def initialize super WorkbookView end # Serialize to xml # @param [String] str # @return [String] def to_xml_string(str = '') return if empty? str << "<bookViews>" each { |view| view.to_xml_string(str) } str << '</bookViews>' end end end
Version data entries
17 entries across 17 versions & 6 rubygems