1 2 3 4 5 6 7 8 9 10 11 12
module Roo class Excelx class Coordinate attr_accessor :row, :column def initialize(row, column) @row = row @column = column end end end end