Class: Roo::Excelx::Cell::Coordinate

Inherits:
Object
  • Object
show all
Defined in:
lib/roo/excelx/cell.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(row, column) ⇒ Coordinate

Returns a new instance of Coordinate.



35
36
37
# File 'lib/roo/excelx/cell.rb', line 35

def initialize(row, column)
  @row, @column = row, column
end

Instance Attribute Details

#columnObject

Returns the value of attribute column.



33
34
35
# File 'lib/roo/excelx/cell.rb', line 33

def column
  @column
end

#rowObject

Returns the value of attribute row.



33
34
35
# File 'lib/roo/excelx/cell.rb', line 33

def row
  @row
end