Class: OoxmlParser::PresentationAlternateContent
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::PresentationAlternateContent
- Defined in:
- lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb
Overview
Class for parsing ‘AlternateContent`
Instance Attribute Summary collapse
-
#elements ⇒ Object
Returns the value of attribute elements.
-
#timing ⇒ Object
Returns the value of attribute timing.
-
#transition ⇒ Object
Returns the value of attribute transition.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#initialize(parent: nil) ⇒ PresentationAlternateContent
constructor
A new instance of PresentationAlternateContent.
-
#parse(node) ⇒ PresentationAlternateContent
Parse PresentationAlternateContent object.
Methods inherited from OOXMLDocumentObject
#==, #boolean_attribute_value, #parse_xml, #with_data?
Methods included from OoxmlObjectAttributeHelper
#attribute_enabled?, #option_enabled?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
#initialize(parent: nil) ⇒ PresentationAlternateContent
Returns a new instance of PresentationAlternateContent.
9 10 11 12 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 9 def initialize(parent: nil) @elements = elements super end |
Instance Attribute Details
#elements ⇒ Object
Returns the value of attribute elements.
7 8 9 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 7 def elements @elements end |
#timing ⇒ Object
Returns the value of attribute timing.
7 8 9 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 7 def timing @timing end |
#transition ⇒ Object
Returns the value of attribute transition.
7 8 9 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 7 def transition @transition end |
Instance Method Details
#parse(node) ⇒ PresentationAlternateContent
Parse PresentationAlternateContent object
17 18 19 20 21 22 23 24 25 |
# File 'lib/ooxml_parser/pptx_parser/presentation/slide/presentation_alternate_content.rb', line 17 def parse(node) node.xpath('mc:Choice/*', 'xmlns:mc' => 'http://schemas.openxmlformats.org/markup-compatibility/2006').each do |node_child| case node_child.name when 'transition' @transition = Transition.new(parent: self).parse(node_child) end end self end |