Class: BlankCell
Instance Attribute Summary
Attributes inherited from Cell
Instance Method Summary collapse
-
#initialize(parent, index, format_index) ⇒ BlankCell
constructor
A new instance of BlankCell.
- #to_biff ⇒ Object
Methods inherited from Cell
Constructor Details
#initialize(parent, index, format_index) ⇒ BlankCell
Returns a new instance of BlankCell.
34 35 36 37 38 |
# File 'lib/surpass/cell.rb', line 34 def initialize(parent, index, format_index) @parent = parent @index = index @format_index = format_index end |
Instance Method Details
#to_biff ⇒ Object
40 41 42 |
# File 'lib/surpass/cell.rb', line 40 def to_biff BlankRecord.new(@parent.index, @index, @format_index).to_biff end |