class RubyXL::RichText

www.datypic.com/sc/ooxml/e-ssml_is-1.html

Public Instance Methods

to_s() click to toggle source
# File lib/rubyXL/objects/text.rb, line 85
def to_s
  # `dup` here unfreezes the string since it's not a constant but initial value
  str = if t.nil? then ''.dup else t.to_s end
  r && r.each { |rtr| str << rtr.to_s if rtr }
  str
end