Sha256: cce65bd0f7795ec696d53ce257e4c93c3518db23750e6f51b4d469a3b9b7ffe2
Contents?: true
Size: 287 Bytes
Versions: 3
Compression:
Stored size: 287 Bytes
Contents
# Loeschen von Dateien, wenn mit Excel geoeffnet require 'roo' oo = Excel.new("tmp.xls") #oo = Openoffice.new("tmp.ods") oo.default_sheet = oo.sheets.first oo.first_row.upto(oo.last_row) do |row| oo.first_column.upto(oo.last_column) do |col| p oo.cell(row,col) end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
roo-1.11.2 | test/rm_sub_test.rb |
roo-1.11.1 | test/rm_sub_test.rb |
roo-1.11.0 | test/rm_sub_test.rb |