class Roo::Excelx::Coordinate

Public Class Methods

new(row, column) click to toggle source
Calls superclass method
# File lib/roo/excelx/coordinate.rb, line 5
def initialize(row, column)
  super() << row << column
  freeze
end

Public Instance Methods

column() click to toggle source
# File lib/roo/excelx/coordinate.rb, line 14
def column
  self[1]
end
row() click to toggle source
# File lib/roo/excelx/coordinate.rb, line 10
def row
  self[0]
end