Class: BlankRecord

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

#record_data

Instance Method Summary collapse

Methods inherited from BiffRecord

#record_header, #to_biff

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