Class: BlankRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- BlankRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record represents an empty cell.
Record BLANK, BIFF5-BIFF8:
Offset Size Contents 0 2 Index to row 2 2 Index to first column (fc) 4 2 indexes to XF record
Constant Summary collapse
- RECORD_ID =
0x0201
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) ⇒ BlankRecord
constructor
A new instance of BlankRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize(row, col, xf_index) ⇒ BlankRecord
Returns a new instance of BlankRecord.
1353 1354 1355 |
# File 'lib/surpass/biff_record.rb', line 1353 def initialize(row, col, xf_index) @record_data = [row, col, xf_index].pack('v3') end |