class SimpleXlsxReader::Document::Sheet
Public Instance Methods
data()
click to toggle source
# File lib/simple_xlsx_reader.rb, line 83 def data rows[1..-1] end
headers()
click to toggle source
# File lib/simple_xlsx_reader.rb, line 79 def headers rows[0] end
load_errors()
click to toggle source
Load errors will be a hash of the form: {
[rownum, colnum] => '[error]'
}
# File lib/simple_xlsx_reader.rb, line 91 def load_errors @load_errors ||= {} end