Class: Writexlsx::Worksheet::NumberCellData

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, #check_dimensions, #check_dimensions_and_update_max_min_values, #check_parameter, #convert_date_time, delete_files, #ptrue?, #put_deprecate_message, #row_col_notation, #store_col_max_min_values, #store_row_max_min_values, #substitute_cellref, #underline_attributes, #write_color, #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, num, xf) ⇒ NumberCellData

Returns a new instance of NumberCellData.



177
178
179
180
# File 'lib/write_xlsx/worksheet.rb', line 177

def initialize(worksheet, row, col, num, xf)
  @worksheet = worksheet
  @row, @col, @token, @xf = row, col, num, xf
end

Instance Method Details

#dataObject



182
183
184
# File 'lib/write_xlsx/worksheet.rb', line 182

def data
  @token
end

#write_cellObject



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

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