Class: LeftMarginRecord

Inherits:
BiffRecord show all
Defined in:
lib/surpass/biff_record.rb

Overview

This record is part of the Page Settings Block. It contains the left page margin of the current worksheet.

Record LEFTMARGIN, BIFF2-BIFF8:

Offset Size Contents 0 8 Left page margin in inches

(IEEE 754 floating-point value, 64bit double precision)

Constant Summary collapse

RECORD_ID =
0x0026

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(margin) ⇒ LeftMarginRecord

Returns a new instance of LeftMarginRecord.



1859
1860
1861
# File 'lib/surpass/biff_record.rb', line 1859

def initialize(margin)
  @record_data = [margin].pack('E')
end