Excel-specific Workbook methods. These are mostly pertinent to the Excel reader. You should have no reason to use any of these.
# File lib/spreadsheet/excel/workbook.rb, line 47 def add_worksheet worksheet @changes.store :boundsheets, true super end
# File lib/spreadsheet/excel/workbook.rb, line 51 def biff_version case @bof when 0x009 2 when 0x209 3 when 0x409 4 else BIFF_VERSIONS.fetch(@version) { raise "Unkown BIFF_VERSION '#@version'" } end end
# File lib/spreadsheet/excel/workbook.rb, line 63 def date_base @date_base ||= DateTime.new 1899, 12, 31 end
# File lib/spreadsheet/excel/workbook.rb, line 69 def sst_size @sst.size end
Generated with the Darkfish Rdoc Generator 2.