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 = '') ⇒ String

Serialize the Cfvo object

Parameters:

  • str (String) (defaults to: '')

Returns:

  • (String)


14
15
16
# File 'lib/axlsx/workbook/worksheet/cfvos.rb', line 14

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