Method: RubyXL::LegacyCell#inspect

Defined in:
lib/rubyXL/cell.rb

#inspectObject



246
247
248
249
250
251
# File 'lib/rubyXL/cell.rb', line 246

def inspect
  str = "#<#{self.class}(#{row},#{column}): #{raw_value.inspect}" 
  str += " =#{@formula}" if @formula
  str += ", datatype = #{self.datatype}, style_index = #{self.style_index}>"
  return str
end