Sha256: 350a3f5fdc4d91787696d2132c334671972148a884b3e59a40839efb526bf83d
Contents?: true
Size: 771 Bytes
Versions: 4
Compression:
Stored size: 771 Bytes
Contents
module OoxmlParser # Class for `bar` data class Bar < OOXMLDocumentObject attr_accessor :position, :element def initialize(parent: nil) @position = :bottom @parent = parent end # Parse Bar object # @param node [Nokogiri::XML:Element] node to parse # @return [Bar] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'barPr' node_child.xpath('*').each do |node_child_child| case node_child_child.name when 'pos' @position = node_child_child.attribute('val').value.to_sym end end end end @element = DocxFormula.new(parent: self).parse(node) self end end end
Version data entries
4 entries across 4 versions & 1 rubygems