Class: HideObjRecord

Inherits:
BiffRecord show all
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

#record_data

Instance Method Summary collapse

Methods inherited from BiffRecord

#record_header, #to_biff

Constructor Details

#initializeHideObjRecord

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