class OoxmlParser::BackgroundProperties
Class for parsing `bgPr` tag
Attributes
blip_fill[RW]
@return [BlipFill]
Public Instance Methods
parse(node)
click to toggle source
Parse BackgroundProperties
object @param node [Nokogiri::XML:Element] node to parse @return [BackgroundProperties] result of parsing
# File lib/ooxml_parser/pptx_parser/pptx_data/presentation/slide/background/background_properties.rb, line 13 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