Class: DSFRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- DSFRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record specifies if the file contains an additional BIFF5/BIFF7 workbook stream. Record DSF, BIFF8: Offset Size Contents 0 2 0 = Only the BIFF8 Workbook stream is present
1 = Additional BIFF5/BIFF7 Book stream is in the file
A double stream file can be read by Excel 5.0 and Excel 95, and still contains all new features added to BIFF8 (which are left out in the BIFF5/BIFF7 Book stream).
Constant Summary collapse
- RECORD_ID =
0x0161
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize ⇒ DSFRecord
constructor
A new instance of DSFRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize ⇒ DSFRecord
Returns a new instance of DSFRecord.
215 216 217 |
# File 'lib/surpass/biff_record.rb', line 215 def initialize @record_data = [0x00].pack('v') end |