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.
32 33 34 35 36 |
# File 'lib/surpass/cell.rb', line 32 def initialize(parent, index, format_index) @parent = parent @index = index @format_index = format_index end |
Instance Method Details
#to_biff ⇒ Object
38 39 40 |
# File 'lib/surpass/cell.rb', line 38 def to_biff BlankRecord.new(@parent.index, @index, @format_index).to_biff end |