Class: ScenarioProtectRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- ScenarioProtectRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record is part of the worksheet/workbook protection. It determines whether the scenarios of the current sheet are protected. Scenario protection is not active, if this record is omitted.
Constant Summary collapse
- RECORD_ID =
0x00DD
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize(protect) ⇒ ScenarioProtectRecord
constructor
A new instance of ScenarioProtectRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize(protect) ⇒ ScenarioProtectRecord
Returns a new instance of ScenarioProtectRecord.
267 268 269 |
# File 'lib/surpass/biff_record.rb', line 267 def initialize(protect) @record_data = [protect].pack('v') end |