Class: Chart

Inherits:
Object
  • Object
show all
Defined in:
lib/surpass/chart.rb

Instance Method Summary collapse

Constructor Details

#initializeChart

Returns a new instance of Chart.



2
3
4
# File 'lib/surpass/chart.rb', line 2

def initialize
  raise "not implemented"
end

Instance Method Details

#to_biffObject

● OBJ Object description for the chart ● BOF Type = chart (➜5.8) Chart records ● EOF End of the Chart Substream of the chart object (5.37)



11
12
13
14
15
# File 'lib/surpass/chart.rb', line 11

def to_biff
  result = []
  result << Biff8BOFRecord.new(Biff8BOFRecord::CHART).to_biff
  result.join
end