Class: Writexlsx::Worksheet::FormulaCellData
- Defined in:
- lib/write_xlsx/worksheet.rb
Overview
:nodoc:
Constant Summary
Constants included from Utility
Utility::COL_MAX, Utility::ROW_MAX, Utility::SHEETNAME_MAX, Utility::STR_MAX
Instance Attribute Summary
Attributes inherited from CellData
#col, #link_type, #range, #result, #row, #tip, #token, #url, #xf
Instance Method Summary collapse
- #data ⇒ Object
-
#initialize(worksheet, row, col, formula, xf, result) ⇒ FormulaCellData
constructor
A new instance of FormulaCellData.
- #write_cell ⇒ Object
Methods inherited from CellData
Methods included from Utility
#absolute_char, delete_files, #put_deprecate_message, #substitute_cellref, #underline_attributes, #xl_cell_to_rowcol, #xl_col_to_name, #xl_range, #xl_range_formula, #xl_rowcol_to_cell, #xml_str
Constructor Details
#initialize(worksheet, row, col, formula, xf, result) ⇒ FormulaCellData
Returns a new instance of FormulaCellData.
170 171 172 173 |
# File 'lib/write_xlsx/worksheet.rb', line 170 def initialize(worksheet, row, col, formula, xf, result) @worksheet = worksheet @row, @col, @token, @xf, @result = row, col, formula, xf, result end |
Instance Method Details
#data ⇒ Object
175 176 177 |
# File 'lib/write_xlsx/worksheet.rb', line 175 def data @result || 0 end |
#write_cell ⇒ Object
179 180 181 182 183 184 |
# File 'lib/write_xlsx/worksheet.rb', line 179 def write_cell @worksheet.writer.tag_elements('c', cell_attributes) do @worksheet.write_cell_formula(token) @worksheet.write_cell_value(result || 0) end end |