module Oxcelix::Workbookhelper

Helper methods for the Workbook class

Public Instance Methods

[](sheetname=String) click to toggle source

@example Select a sheet

w = Workbook.new('Example.xlsx')
sheet = w["Examplesheet"]
# File lib/oxcelix/workbook.rb, line 10
def [] (sheetname=String)
  @sheets.select{|s| s.name == sheetname}[0]
end