Class: Writexlsx::Worksheet::FormulaArrayCellData

Inherits:
CellData
  • Object
show all
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

Methods inherited from CellData

#cell_attributes

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, range, result) ⇒ FormulaArrayCellData

Returns a new instance of FormulaArrayCellData.



188
189
190
191
# File 'lib/write_xlsx/worksheet.rb', line 188

def initialize(worksheet, row, col, formula, xf, range, result)
  @worksheet = worksheet
  @row, @col, @token, @xf, @range, @result = row, col, formula, xf, range, result
end

Instance Method Details

#dataObject



193
194
195
# File 'lib/write_xlsx/worksheet.rb', line 193

def data
  @result || 0
end

#write_cellObject



197
198
199
200
201
202
# File 'lib/write_xlsx/worksheet.rb', line 197

def write_cell
  @worksheet.writer.tag_elements('c', cell_attributes) do
    @worksheet.write_cell_array_formula(token, range)
    @worksheet.write_cell_value(result)
  end
end