Class: UseSelfsRecord
- Inherits:
-
BiffRecord
- Object
- BiffRecord
- UseSelfsRecord
- Defined in:
- lib/surpass/biff_record.rb
Overview
This record specifies if the formulas in the workbook can use natural language formulasî. This type of formula can refer to cells by its content or the content of the column or row header cell.
Record USESELFS, BIFF8:
Offset Size Contents 0 2 0 = Do not use natural language formulas
1 = Use natural language formulas
Constant Summary collapse
- RECORD_ID =
0x0160
Constants inherited from BiffRecord
BiffRecord::BIFF_LIMIT, BiffRecord::CONTINUE_RECORD_ID
Instance Attribute Summary
Attributes inherited from BiffRecord
Instance Method Summary collapse
-
#initialize ⇒ UseSelfsRecord
constructor
A new instance of UseSelfsRecord.
Methods inherited from BiffRecord
Constructor Details
#initialize ⇒ UseSelfsRecord
Returns a new instance of UseSelfsRecord.
416 417 418 |
# File 'lib/surpass/biff_record.rb', line 416 def initialize @record_data = [0x01].pack('v') end |