Class: Writexlsx::Worksheet::DynamicFormulaArrayCellData

Inherits:
CellData
  • Object
show all
Defined in:
lib/write_xlsx/worksheet/cell_data.rb

Overview

:nodoc:

Constant Summary

Constants included from Utility

Utility::COL_MAX, Utility::PERL_TRUE_VALUES, 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, #display_url_string?

Methods included from Utility

#absolute_char, #check_dimensions, #check_dimensions_and_update_max_min_values, #check_parameter, #color, #convert_date_time, #convert_font_args, #dash_types, delete_files, #escape_url, #fill_properties, #float_to_str, #get_font_latin_attributes, #get_font_style_attributes, #layout_properties, #legend_properties, #line_fill_properties, #line_properties, #palette_color, #params_to_font, #pattern_properties, #pixels_to_points, #process_workbook_options, #ptrue?, #put_deprecate_message, #quote_sheetname, #r_id_attributes, #row_col_notation, #shape_style_base, #store_col_max_min_values, #store_row_max_min_values, #substitute_cellref, #underline_attributes, #v_shape_attributes_base, #v_shape_style_base, #value_or_raise, #write_a_body_pr, #write_a_def_rpr, #write_a_end_para_rpr, #write_a_lst_style, #write_a_p_formula, #write_a_p_pr_formula, #write_a_solid_fill, #write_a_srgb_clr, #write_anchor, #write_auto_fill, #write_color, #write_comment_path, #write_def_rpr_r_pr_common, #write_div, #write_fill, #write_font, #write_stroke, #write_tx_pr, #write_xml_declaration, #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) ⇒ DynamicFormulaArrayCellData

Returns a new instance of DynamicFormulaArrayCellData.



132
133
134
135
# File 'lib/write_xlsx/worksheet/cell_data.rb', line 132

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



137
138
139
# File 'lib/write_xlsx/worksheet/cell_data.rb', line 137

def data
  @result || 0
end

#write_cellObject



141
142
143
144
145
146
147
148
149
150
# File 'lib/write_xlsx/worksheet/cell_data.rb', line 141

def write_cell
  # Add metadata linkage for dynamic array formulas.
  attributes = cell_attributes
  attributes << ['cm', '1']

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