Class: Axlsx::Cfvos

Inherits:
SimpleTypedList
  • Object
show all
Defined in:
lib/axlsx/workbook/worksheet/cfvos.rb

Overview

A collection of Cfvo objects that initializes with the required first two items

Instance Method Summary collapse

Constructor Details

#initializeCfvos

Returns a new instance of Cfvos.



7
8
9
# File 'lib/axlsx/workbook/worksheet/cfvos.rb', line 7

def initialize
  super(Cfvo)
end

Instance Method Details

#to_xml_string(str = '') ⇒ Object



11
12
13
# File 'lib/axlsx/workbook/worksheet/cfvos.rb', line 11

def to_xml_string(str='')
  @list.each { |cfvo| cfvo.to_xml_string(str) }
end