Class: Writexlsx::Worksheet::StringCellData

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_parameter, delete_files, #ptrue?, #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, index, xf) ⇒ StringCellData

Returns a new instance of StringCellData.



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

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

Instance Method Details

#dataObject



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

def data
  { :sst_id => token }
end

#write_cellObject



202
203
204
205
206
207
208
# File 'lib/write_xlsx/worksheet.rb', line 202

def write_cell
  attributes = cell_attributes
  attributes << 't' << 's'
  @worksheet.writer.tag_elements('c', attributes) do
    @worksheet.write_cell_value(token)
  end
end