class Roo::Excelx::Cell::Coordinate

Deprecated: use Roo::Excelx::Coordinate instead.

Attributes

column[RW]
row[RW]

Public Class Methods

new(row, column) click to toggle source
# File lib/roo/excelx/cell.rb, line 67
def initialize(row, column)
  warn '[DEPRECATION] `Roo::Excel::Cell::Coordinate` is deprecated.  Please use `Roo::Excelx::Coordinate` instead.'
  @row, @column = row, column
end