Class: Axlsx::Cell

Inherits:
Object
  • Object
show all
Defined in:
lib/axlsx/workbook/worksheet/cell.rb

Overview

Note:

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.

Examples:

Manually creating and manipulating Cell objects

ws = Workbook.new.add_worksheet 
# This is the simple, and recommended way to create cells. Data types will automatically be determined for you.
ws.add_row :values => [1,"fish",Time.now]

# but you can also do this
r = ws.add_row
r.add_cell 1

# or even this
r = ws.add_row
c = Cell.new row, 1, :value=>integer

# cells can also be accessed via Row#cells. The example here changes the cells type, which will automatically updated the value from 1 to 1.0
r.cells.last.type = :float

See Also:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(row, value = "", options = {}) ⇒ Cell

Returns a new instance of Cell.

Parameters:

  • row (Row)

    The row this cell belongs to.

  • value (Any) (defaults to: "")

    The value associated with this cell.

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • type (Symbol)

    The intended data type for this cell. If not specified the data type will be determined internally based on the vlue provided.

  • style (Integer)

    The index of the cellXfs item to be applied to this cell. If not specified, the default style (0) will be applied.



56
57
58
59
60
61
62
63
64
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 56

def initialize(row, value="", options={})
  self.row=row
  #reference for validation
  @styles = row.worksheet.workbook.styles
  @type= options[:type] || cell_type_from_value(value)
  self.style = options[:style] || 0 
  @value = cast_value(value)
  @row.cells << self
end

Instance Attribute Details

#rowRow

The row this cell belongs to.

Returns:



32
33
34
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 32

def row
  @row
end

#styleInteger

The index of the cellXfs item to be applied to this cell.

Returns:

  • (Integer)

See Also:



28
29
30
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 28

def style
  @style
end

#typeSymbol

Note:

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.

Returns:

  • (Symbol)

    The type of data this cell’s value is cast to.

Raises:

  • (ArgumentExeption)

    Cell.type must be one of [:time, :float, :integer, :string]

See Also:

  • #cell_type_from_value


46
47
48
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 46

def type
  @type
end

#valueObject

The value of this cell.

Returns:

  • casted value based on cell’s type attribute.



50
51
52
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 50

def value
  @value
end

Instance Method Details

#indexInteger

Returns The index of the cell in the containing row.

Returns:

  • (Integer)

    The index of the cell in the containing row.



67
68
69
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 67

def index
  @row.cells.index(self)
end

#rString

Returns The alpha(column)numeric(row) reference for this sell.

Examples:

Relative Cell Reference

ws.rows.first.cells.first.r #=> "A1" 

Returns:

  • (String)

    The alpha(column)numeric(row) reference for this sell.



74
75
76
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 74

def r
  "#{col_ref}#{@row.index+1}"      
end

#r_absString

Returns The absolute alpha(column)numeric(row) reference for this sell.

Examples:

Absolute Cell Reference

ws.rows.first.cells.first.r #=> "$A$1" 

Returns:

  • (String)

    The absolute alpha(column)numeric(row) reference for this sell.



81
82
83
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 81

def r_abs
  "$#{r.split('').join('$')}"
end

#to_xml(xml) ⇒ String

Note:

Shared Strings are not used in this library. All values are set directly in the each sheet.

Serializes the cell

Parameters:

  • xml (Nokogiri::XML::Builder)

    The document builder instance this objects xml will be added to.

Returns:

  • (String)

    xml text for the cell



110
111
112
113
114
115
116
117
# File 'lib/axlsx/workbook/worksheet/cell.rb', line 110

def to_xml(xml)
  if @type == :string
    #NOTE not sure why, but xml.t @v renders the text as html entities of unicode data
    xml.c(:r => r, :t=>:inlineStr, :s=>style) { xml.is { xml << "<t>#{value}</t>" } }
  else
    xml.c(:r => r, :s => style) { xml.v value }
  end
end