class RubyXL::Sqref

Public Class Methods

new(str) click to toggle source
# File lib/rubyXL/objects/reference.rb, line 101
def initialize(str)
  str.split.each { |ref_str| self << RubyXL::Reference.new(ref_str) }
end

Public Instance Methods

to_s() click to toggle source
# File lib/rubyXL/objects/reference.rb, line 105
def to_s
  self.collect{ |ref| ref.to_s }.join(' ')
end