Class: RubyXL::Row

Inherits:
OOXMLObject show all
Defined in:
lib/rubyXL/objects/sheet_data.rb

Overview

Constant Summary collapse

DEFAULT_HEIGHT =
13

Instance Attribute Summary collapse

Attributes included from OOXMLObjectInstanceMethods

#local_namespaces

Instance Method Summary collapse

Methods included from OOXMLObjectInstanceMethods

#==, included, #initialize, #write_xml

Instance Attribute Details

#worksheetObject

Returns the value of attribute worksheet.



156
157
158
# File 'lib/rubyXL/objects/sheet_data.rb', line 156

def worksheet
  @worksheet
end

Instance Method Details

#[](ind) ⇒ Object



166
167
168
# File 'lib/rubyXL/objects/sheet_data.rb', line 166

def [](ind)
  cells[ind]
end

#before_write_xmlObject



158
159
160
# File 'lib/rubyXL/objects/sheet_data.rb', line 158

def before_write_xml
  !(cells.nil? || cells.empty?)
end

#delete_cell_shift_left(col_index) ⇒ Object



179
180
181
182
# File 'lib/rubyXL/objects/sheet_data.rb', line 179

def delete_cell_shift_left(col_index)
  cells.delete_at(col_index)
  update_cell_coords(col_index)
end

#get_fill_colorObject



196
197
198
# File 'lib/rubyXL/objects/sheet_data.rb', line 196

def get_fill_color
  @worksheet.workbook.get_fill_color(xf)
end

#get_fontObject



200
201
202
# File 'lib/rubyXL/objects/sheet_data.rb', line 200

def get_font
  @worksheet.workbook.fonts[xf.font_id]
end

#index_in_collectionObject



162
163
164
# File 'lib/rubyXL/objects/sheet_data.rb', line 162

def index_in_collection
  r - 1
end

#insert_cell_shift_right(c, col_index) ⇒ Object



174
175
176
177
# File 'lib/rubyXL/objects/sheet_data.rb', line 174

def insert_cell_shift_right(c, col_index)
  cells.insert(col_index, c)
  update_cell_coords(col_index)
end

#sizeObject



170
171
172
# File 'lib/rubyXL/objects/sheet_data.rb', line 170

def size
  cells.size
end

#xfObject



192
193
194
# File 'lib/rubyXL/objects/sheet_data.rb', line 192

def xf
  @worksheet.workbook.cell_xfs[self.style_index || 0]
end