class RubyXL::Row
Constants
- DEFAULT_HEIGHT
Attributes
Public Instance Methods
Source
# File lib/rubyXL/objects/sheet_data.rb, line 157 def before_write_xml !(cells.nil? || cells.empty?) end
Source
# File lib/rubyXL/objects/sheet_data.rb, line 178 def delete_cell_shift_left(col_index) cells.delete_at(col_index) update_cell_coords(col_index) end
Source
# File lib/rubyXL/objects/sheet_data.rb, line 195 def get_fill_color @worksheet.workbook.get_fill_color(xf) end
Source
# File lib/rubyXL/objects/sheet_data.rb, line 199 def get_font @worksheet.workbook.fonts[xf.font_id] end
Source
# File lib/rubyXL/objects/sheet_data.rb, line 161 def index_in_collection r - 1 end
Source
# File lib/rubyXL/objects/sheet_data.rb, line 173 def insert_cell_shift_right(c, col_index) cells.insert(col_index, c) update_cell_coords(col_index) end
Source
# File lib/rubyXL/objects/sheet_data.rb, line 191 def xf @worksheet.workbook.cell_xfs[self.style_index || 0] end