Class: GridSetRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- GridSetRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record specifies if the option to print sheet grid lines (record PRINTGRIDLINES) has ever been changed.
Record GRIDSET, BIFF3-BIFF8:
Offset Size Contents 0 2 0 = Print grid lines option never changed
1 = Print grid lines option changed
Constant Summary collapse
- RECORD_ID =
0x082
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize(print_grid_changed) ⇒ GridSetRecord
constructor
A new instance of GridSetRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize(print_grid_changed) ⇒ GridSetRecord
Returns a new instance of GridSetRecord.
1644 1645 1646 |
# File 'lib/surpass/biff_record.rb', line 1644 def initialize(print_grid_changed) @record_data = [print_grid_changed].pack('v') end |