Class: Writexlsx::Worksheet::StringCellData

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::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, #float_to_str, #pixels_to_points, #ptrue?, #put_deprecate_message, #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, #write_anchor, #write_auto_fill, #write_color, #write_comment_path, #write_div, #write_fill, #write_font, #write_stroke, #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.



55
56
57
58
# File 'lib/write_xlsx/worksheet/cell_data.rb', line 55

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

Instance Method Details

#dataObject



60
61
62
# File 'lib/write_xlsx/worksheet/cell_data.rb', line 60

def data
  { :sst_id => token }
end

#display_url_string?Boolean

Returns:

  • (Boolean)


72
73
74
# File 'lib/write_xlsx/worksheet/cell_data.rb', line 72

def display_url_string?
  false
end

#write_cellObject



64
65
66
67
68
69
70
# File 'lib/write_xlsx/worksheet/cell_data.rb', line 64

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