Class: BoolErrRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- BoolErrRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record represents a cell that contains a boolean or error value. ‘<3HBB’
Constant Summary collapse
- RECORD_ID =
0x0205
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize(row, col, xf_index, number, is_error) ⇒ BoolErrRecord
constructor
A new instance of BoolErrRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize(row, col, xf_index, number, is_error) ⇒ BoolErrRecord
Returns a new instance of BoolErrRecord.
1382 1383 1384 |
# File 'lib/surpass/biff_record.rb', line 1382 def initialize(row, col, xf_index, number, is_error) @record_data = [row, col, xf_index, number, is_error].pack('v3C2') end |