Class: GridSetRecord

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

#record_data

Instance Method Summary collapse

Methods inherited from BiffRecord

#record_header, #to_biff

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