Class: Roo::Excelx::Cell::Coordinate
- Inherits:
-
Object
- Object
- Roo::Excelx::Cell::Coordinate
- Defined in:
- lib/roo/excelx/cell.rb
Overview
Deprecated: use Roo::Excelx::Coordinate instead.
Instance Attribute Summary collapse
-
#column ⇒ Object
Returns the value of attribute column.
-
#row ⇒ Object
Returns the value of attribute row.
Instance Method Summary collapse
-
#initialize(row, column) ⇒ Coordinate
constructor
A new instance of Coordinate.
Constructor Details
#initialize(row, column) ⇒ Coordinate
Returns a new instance of Coordinate.
63 64 65 66 |
# File 'lib/roo/excelx/cell.rb', line 63 def initialize(row, column) warn '[DEPRECATION] `Roo::Excel::Cell::Coordinate` is deprecated. Please use `Roo::Excelx::Coordinate` instead.' @row, @column = row, column end |
Instance Attribute Details
#column ⇒ Object
Returns the value of attribute column.
61 62 63 |
# File 'lib/roo/excelx/cell.rb', line 61 def column @column end |
#row ⇒ Object
Returns the value of attribute row.
61 62 63 |
# File 'lib/roo/excelx/cell.rb', line 61 def row @row end |