class Saxlsx::SheetCollection

Public Class Methods

new(file_system, workbook) click to toggle source
# File lib/saxlsx/sheet_collection.rb, line 7
def initialize(file_system, workbook)
  @file_system = file_system
  @workbook = workbook
end

Public Instance Methods

each(&block) click to toggle source
# File lib/saxlsx/sheet_collection.rb, line 12
def each(&block)
  SheetCollectionParser.parse @file_system, @workbook, &block
end