Class: UseSelfsRecord

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

#record_data

Instance Method Summary collapse

Methods inherited from BiffRecord

#record_header, #to_biff

Constructor Details

#initializeUseSelfsRecord

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