Class: PrintHeadersRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- PrintHeadersRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record stores if the row and column headers (the areas with row numbers and column letters) will be printed.
Record PRINTHEADERS, BIFF2-BIFF8:
Offset Size Contents 0 2 0 = Do not print row/column headers;
1 = Print row/column headers
Constant Summary collapse
- RECORD_ID =
0x02A
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize(print_headers) ⇒ PrintHeadersRecord
constructor
A new instance of PrintHeadersRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize(print_headers) ⇒ PrintHeadersRecord
Returns a new instance of PrintHeadersRecord.
1613 1614 1615 |
# File 'lib/surpass/biff_record.rb', line 1613 def initialize(print_headers) @record_data = [print_headers].pack('v') end |