Class: OoxmlParser::ComboBox

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox.rb

Overview

Class for parsing ‘comboBox` tag

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, #boolean_attribute_value, #parse_xml, #with_data?

Methods included from OoxmlObjectAttributeHelper

#attribute_enabled?, #option_enabled?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

#initialize(parent: nil) ⇒ ComboBox

Returns a new instance of ComboBox.



10
11
12
13
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox.rb', line 10

def initialize(parent: nil)
  @list_items = []
  super
end

Instance Attribute Details

#list_itemsArray<ListItem> (readonly)

Returns combobox items.

Returns:



8
9
10
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox.rb', line 8

def list_items
  @list_items
end

Instance Method Details

#parse(node) ⇒ ComboBox

Parse ComboBox object

Parameters:

  • node (Nokogiri::XML:Element)

    node to parse

Returns:



18
19
20
21
22
23
24
25
26
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox.rb', line 18

def parse(node)
  node.xpath('*').each do |node_child|
    case node_child.name
    when 'listItem'
      @list_items << ListItem.new(parent: self).parse(node_child)
    end
  end
  self
end