class Saxlsx::StyleCollection

Public Class Methods

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

Public Instance Methods

each(&block) click to toggle source
# File lib/saxlsx/style_collection.rb, line 11
def each(&block)
  StyleCollectionParser.parse @file_system, &block
end