class OoxmlParser::BackgroundProperties
Class for parsing ‘bgPr` tag
Attributes
@return [BlipFill]
Public Instance Methods
Source
# File lib/ooxml_parser/pptx_parser/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
Parse BackgroundProperties
object @param node [Nokogiri::XML:Element] node to parse @return [BackgroundProperties] result of parsing