Sha256: 22f07dc5b0481f78bce5794031b0db8c7eb04ec1a036c1ea88726e4967f5bcba
Contents?: true
Size: 629 Bytes
Versions: 48
Compression:
Stored size: 629 Bytes
Contents
# frozen_string_literal: true require_relative 'sound_action/sound' module OoxmlParser # Class for parsing SoundAction class SoundAction < OOXMLDocumentObject attr_accessor :start_sound, :end_sound # Parse SoundAction # @param [Nokogiri::XML:Node] node with NumberingProperties # @return [SoundAction] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'stSnd' @start_sound = Sound.new(parent: self).parse(node_child.xpath('p:snd').first) if node_child.xpath('p:snd').first end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems