Class: Axlsx::Cell
- Inherits:
-
Object
- Object
- Axlsx::Cell
- Defined in:
- lib/axlsx/workbook/worksheet/cell.rb
Overview
The recommended way to generate cells is via Worksheet#add_row
A cell in a worksheet. Cell stores inforamation requried to serialize a single worksheet cell to xml. You must provde the Row that the cell belongs to and the cells value. The data type will automatically be determed if you do not specify the :type option. The default style will be applied if you do not supply the :style option. Changing the cell's type will recast the value to the type specified. Altering the cell's value via the property accessor will also automatically cast the provided value to the cell's type.
Instance Attribute Summary (collapse)
-
- (Row) row
The row this cell belongs to.
-
- (Integer) style
The index of the cellXfs item to be applied to this cell.
-
- (Symbol) type
The cell's data type.
-
- (Object) value
The value of this cell.
Instance Method Summary (collapse)
-
- (Integer) index
The index of the cell in the containing row.
-
- (Cell) initialize(row, value = "", options = {})
constructor
A new instance of Cell.
-
- (String) r
The alpha(column)numeric(row) reference for this sell.
-
- (String) r_abs
The absolute alpha(column)numeric(row) reference for this sell.
-
- (String) to_xml(xml)
Serializes the cell.
Constructor Details
- (Cell) initialize(row, value = "", options = {})
A new instance of Cell
69 70 71 72 73 74 75 76 77 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 69 def initialize(row, value="", ={}) self.row=row #reference for validation @styles = row.worksheet.workbook.styles @type= [:type] || cell_type_from_value(value) self.style = [:style] || 0 @value = cast_value(value) @row.cells << self end |
Instance Attribute Details
- (Row) row
The row this cell belongs to.
33 34 35 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 33 def row @row end |
- (Integer) style
The index of the cellXfs item to be applied to this cell.
29 30 31 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 29 def style @style end |
- (Symbol) type
If the value provided cannot be cast into the type specified, type is changed to :string and the following logic is applied.
:string to :integer or :float, type coversions always return 0 or 0.0 :string, :integer, or :float to :time conversions always return the original value as a string and set the cells type to :string.
No support is currently implemented for parsing time strings.
The cell's data type. Currently only four types are supported, :time, :float, :integer and :string. Changing the type for a cell will recast the value into that type. If no type option is specified in the constructor, the type is automatically determed.
46 47 48 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 46 def type @type end |
- (Object) value
The value of this cell.
57 58 59 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 57 def value @value end |
Instance Method Details
- (Integer) index
The index of the cell in the containing row.
80 81 82 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 80 def index @row.cells.index(self) end |
- (String) r
The alpha(column)numeric(row) reference for this sell.
87 88 89 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 87 def r "#{col_ref}#{@row.index+1}" end |
- (String) r_abs
The absolute alpha(column)numeric(row) reference for this sell.
94 95 96 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 94 def r_abs "$#{r.split('').join('$')}" end |
- (String) to_xml(xml)
Shared Strings are not used in this library. All values are set directly in the each sheet.
Serializes the cell
114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 114 def to_xml(xml) # Both 1.8 and 1.9 return the same 'fast_xf' # ニホンゴ # ニホンゴ # however nokogiri does a nice 'force_encoding' which we shall remove! if @type == :string xml.c(:r => r, :t=>:inlineStr, :s=>style) { xml.is { xml.t @value.to_s } } else xml.c(:r => r, :s => style) { xml.v value } end end |