Class: Chart
- Inherits:
-
Object
- Object
- Chart
- Defined in:
- lib/surpass/chart.rb
Instance Method Summary collapse
-
#initialize ⇒ Chart
constructor
A new instance of Chart.
-
#to_biff ⇒ Object
● 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).
Constructor Details
#initialize ⇒ Chart
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_biff ⇒ Object
● 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 |