Sha256: b05791ad386d3f78b39d257743fb2dee518ae88ef01e5eb28d9608b02f114b2a
Contents?: true
Size: 593 Bytes
Versions: 4
Compression:
Stored size: 593 Bytes
Contents
require_relative 'background_properties/stretch' module OoxmlParser # Class for parsing `bgPr` tag class BackgroundProperties < OOXMLDocumentObject # @return [BlipFill] attr_accessor :blip_fill # Parse BackgroundProperties object # @param node [Nokogiri::XML:Element] node to parse # @return [BackgroundProperties] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'blipFill' @blip_fill = BlipFill.new(parent: self).parse(node_child) end end self end end end
Version data entries
4 entries across 4 versions & 1 rubygems