Class: Roo::Excelx::Coordinate

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(row, column) ⇒ Coordinate

Returns a new instance of Coordinate.



6
7
8
9
# File 'lib/roo/excelx/coordinate.rb', line 6

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

Instance Attribute Details

#columnObject

Returns the value of attribute column.



4
5
6
# File 'lib/roo/excelx/coordinate.rb', line 4

def column
  @column
end

#rowObject

Returns the value of attribute row.



4
5
6
# File 'lib/roo/excelx/coordinate.rb', line 4

def row
  @row
end