Class: LabelSSTRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- LabelSSTRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record represents a cell that contains a string. It replaces the LABEL record and RSTRING record used in BIFF2-BIFF7.
Constant Summary collapse
- RECORD_ID =
0x00FD
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize(row, col, xf_idx, sst_idx) ⇒ LabelSSTRecord
constructor
A new instance of LabelSSTRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize(row, col, xf_idx, sst_idx) ⇒ LabelSSTRecord
Returns a new instance of LabelSSTRecord.
1265 1266 1267 |
# File 'lib/surpass/biff_record.rb', line 1265 def initialize(row, col, xf_idx, sst_idx) @record_data = [row, col, xf_idx, sst_idx].pack('v3V') end |