Sha256: 140a55a4e10f2de4f44fc1352a3ab4ae6749939d99d3ddf7068da669b2f79305
Contents?: true
Size: 575 Bytes
Versions: 48
Compression:
Stored size: 575 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Parsing Scaling tag 'scaling' class Scaling < OOXMLDocumentObject # @return [ValuedChild] orientation value attr_reader :orientation # Parse Scaling object # @param node [Nokogiri::XML:Element] node to parse # @return [Scaling] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'orientation' @orientation = ValuedChild.new(:symbol, parent: self).parse(node_child) end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems