Class: SSTRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- SSTRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record contains a list of all strings used anywhere in the workbook. Each string occurs only once. The workbook uses indexes into the list to reference the strings.
Record SST, BIFF8: Offset Size Contents 0 4 Total number of strings in the workbook (see below) 4 4 Number of following strings (nm) 8 var. List of nm Unicode strings, 16-bit string length
The first field of the SST record counts the total occurrence of strings in the workbook. For instance, the string AAA is used 3 times and the string BBB is used 2 times. The first field contains 5 and the second field contains 2, followed by the two strings.
Constant Summary collapse
- RECORD_ID =
0x00FC
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Method Summary
Methods inherited from BiffRecord
#initialize, #record_header, #to_biff
Constructor Details
This class inherits a constructor from BiffRecord