Sha256: d316162bf3054308bc06599a08d5cf32a0a454a3fca003229034b7ef4f68b492
Contents?: true
Size: 1.15 KB
Versions: 40
Compression:
Stored size: 1.15 KB
Contents
# frozen_string_literal: true require_relative 'filter_column/custom_filters' module OoxmlParser # Class for `filterColumn` data # The filterColumn collection identifies a particular # column in the AutoFilter range and specifies # filter information that has been applied to this column. class FilterColumn < OOXMLDocumentObject # @return [True, False] Flag indicating whether the filter button is visible. attr_accessor :show_button # @return [CustomFilters] list of filters attr_reader :custom_filters def initialize(parent: nil) @show_button = true super end # Parse FilterColumn data # @param [Nokogiri::XML:Element] node with FilterColumn data # @return [FilterColumn] value of FilterColumn data def parse(node) node.attributes.each do |key, value| case key when 'showButton' @show_button = attribute_enabled?(value) end end node.xpath('*').each do |node_child| case node_child.name when 'customFilters' @custom_filters = CustomFilters.new(parent: self).parse(node_child) end end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems