Class: Rspreadsheet::Row

Inherits:
Object
  • Object
show all
Defined in:
lib/rspreadsheet/row.rb

Instance Method Summary collapse

Constructor Details

#initialize(workbook, rowi) ⇒ Row

Returns a new instance of Row.



8
9
10
11
12
# File 'lib/rspreadsheet/row.rb', line 8

def initialize(workbook,rowi)
  @rowi = rowi
  @workbook = workbook
  @rowcells = RowCells.new(workbook,rowi)
end

Instance Method Details

#cellsObject



13
14
15
# File 'lib/rspreadsheet/row.rb', line 13

def cells
  @rowcells
end