Method: Formula#initialize
- Defined in:
- lib/WriteExcel/formula.rb
#initialize(byte_order) ⇒ Formula
Returns a new instance of Formula.
23 24 25 26 27 28 29 30 |
# File 'lib/WriteExcel/formula.rb', line 23 def initialize(byte_order) @byte_order = byte_order @workbook = "" @ext_sheets = {} @ext_refs = {} @ext_ref_count = 0 initialize_hashes end |