module Oxcelix::Cellvalues
The Cellvalues
module provides methods for setting cell values. They are named after the relevant XML entitiesd and called directly by the Xlsheet
SAX parser.
Public Instance Methods
r(val)
click to toggle source
Set the excel cell name (eg: ‘A2’) @param [String] val Excel cell address name
# File lib/oxcelix/cellhelper.rb, line 8 def r(val); @xlcoords = val; end
s(val)
click to toggle source
Set cell style (number format and style)
# File lib/oxcelix/cellhelper.rb, line 14 def s(val); @style = val; end
t(val)
click to toggle source
Set cell type
# File lib/oxcelix/cellhelper.rb, line 10 def t(val); @type = val; end
v(val)
click to toggle source
Set cell value
# File lib/oxcelix/cellhelper.rb, line 12 def v(val); @value = val; end