class Rrxcell::Row

Attributes

object[R]
position[R]
sheet[R]

Public Class Methods

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

Public Instance Methods

[](position) click to toggle source
# File lib/rrxcell/row.rb, line 10
def [](position)
  column(position)
end
book() click to toggle source
# File lib/rrxcell/row.rb, line 14
def book
  sheet.book
end
column(position) click to toggle source
# File lib/rrxcell/row.rb, line 18
def column(position)
  raise ShouldBeImplementedError
end