class Axlsx::Cfvos

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

Public Class Methods

new() click to toggle source
Calls superclass method Axlsx::SimpleTypedList::new
# File lib/axlsx/workbook/worksheet/cfvos.rb, line 7
def initialize
  super(Cfvo)
end

Public Instance Methods

to_xml_string(str='') click to toggle source

Serialize the Cfvo object @param [String] str @return [String]

# File lib/axlsx/workbook/worksheet/cfvos.rb, line 14
def to_xml_string(str='')
  each { |cfvo| cfvo.to_xml_string(str) }
end