summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/workbook/workbook_views.rb
blob: 025d083bf5ebe3d37619e09250ca836654190155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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