Class: StringCell
- Inherits:
-
SurpassCell
- Object
- SurpassCell
- StringCell
- Defined in:
- lib/surpass/surpass_cell.rb
Instance Attribute Summary
Attributes inherited from SurpassCell
Instance Method Summary collapse
-
#initialize(parent, index, format_index, sst_index) ⇒ StringCell
constructor
A new instance of StringCell.
- #to_biff ⇒ Object
Methods inherited from SurpassCell
Constructor Details
#initialize(parent, index, format_index, sst_index) ⇒ StringCell
Returns a new instance of StringCell.
20 21 22 23 24 25 |
# File 'lib/surpass/surpass_cell.rb', line 20 def initialize(parent, index, format_index, sst_index) @parent = parent @index = index @format_index = format_index @sst_index = sst_index end |
Instance Method Details
#to_biff ⇒ Object
27 28 29 |
# File 'lib/surpass/surpass_cell.rb', line 27 def to_biff LabelSSTRecord.new(@parent.index, @index, @format_index, @sst_index).to_biff end |