Class: MulBlankCell
Instance Attribute Summary
Attributes inherited from Cell
Instance Method Summary collapse
-
#initialize(parent, col1, col2, xf_idx) ⇒ MulBlankCell
constructor
A new instance of MulBlankCell.
- #to_biff ⇒ Object
Methods inherited from Cell
Constructor Details
#initialize(parent, col1, col2, xf_idx) ⇒ MulBlankCell
Returns a new instance of MulBlankCell.
108 109 110 111 112 113 114 |
# File 'lib/surpass/cell.rb', line 108 def initialize(parent, col1, col2, xf_idx) raise unless col1 < col2 @parent = parent @col1 = col1 @col2 = col2 @xf_idx = xf_idx end |
Instance Method Details
#to_biff ⇒ Object
116 117 118 |
# File 'lib/surpass/cell.rb', line 116 def to_biff MulBlankRecord.new(@parent.index, @col1, @col2, @xf_idx).to_biff end |