Method: Axlsx::IconSet#to_xml_string
- Defined in:
- lib/axlsx/workbook/worksheet/icon_set.rb
#to_xml_string(str = "") ⇒ String
Serialize this object to an xml string
65 66 67 68 69 |
# File 'lib/axlsx/workbook/worksheet/icon_set.rb', line 65 def to_xml_string(str="") serialized_tag('iconSet', str) do @value_objects.each { |cfvo| cfvo.to_xml_string(str) } end end |