class Rrxcell::Cell

Attributes

position[R]
row[R]

Public Class Methods

new(row, position) click to toggle source
Calls superclass method
# File lib/rrxcell/cell.rb, line 4
def initialize(row, position)
  super()
  @row = row
  @position = position
end

Public Instance Methods

book() click to toggle source
# File lib/rrxcell/cell.rb, line 10
def book
  row.book
end
object() click to toggle source
# File lib/rrxcell/cell.rb, line 14
def object
  raise ShouldBeImplementedError
end
sheet() click to toggle source
# File lib/rrxcell/cell.rb, line 18
def sheet
  row.sheet
end
value() click to toggle source
# File lib/rrxcell/cell.rb, line 22
def value
  raise ShouldBeImplementedError
end