Class: OoxmlParser::ListItem
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::ListItem
- Defined in:
- lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox/list_item.rb
Overview
Class for parsing ‘listItem` tag
Instance Attribute Summary collapse
-
#text ⇒ String
readonly
Item text.
-
#value ⇒ String
readonly
Item value.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ ListItem
Parse ListItem object.
Methods inherited from OOXMLDocumentObject
#==, #boolean_attribute_value, #initialize, #parse_xml, #with_data?
Methods included from OoxmlObjectAttributeHelper
#attribute_enabled?, #option_enabled?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
This class inherits a constructor from OoxmlParser::OOXMLDocumentObject
Instance Attribute Details
#text ⇒ String (readonly)
Returns item text.
7 8 9 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox/list_item.rb', line 7 def text @text end |
#value ⇒ String (readonly)
Returns item value.
9 10 11 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox/list_item.rb', line 9 def value @value end |
Instance Method Details
#parse(node) ⇒ ListItem
Parse ListItem object
14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/sdt/sdt_properties/combobox/list_item.rb', line 14 def parse(node) node.attributes.each do |key, value| case key when 'displayText' @text = value.value when 'value' @value = value.value end end self end |