Class: HideObjRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- HideObjRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record specifies whether and how to show objects in the workbook.
Record HIDEOBJ, BIFF3-BIFF8: Offset Size Contents 0 2 Viewing mode for objects:
0 = Show all objects
1 = Show placeholders
2 = Do not show objects
Constant Summary collapse
- RECORD_ID =
0x008D
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize ⇒ HideObjRecord
constructor
A new instance of HideObjRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize ⇒ HideObjRecord
Returns a new instance of HideObjRecord.
348 349 350 |
# File 'lib/surpass/biff_record.rb', line 348 def initialize @record_data = [0x00].pack('v') end |