Sha256: a23914c73a6ea38ac26203a9c6a70b0702a26472b99b59066911062f5d242a64
Contents?: true
Size: 287 Bytes
Versions: 7
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
7 entries across 7 versions & 2 rubygems