Class: OoxmlParser::TextField
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::TextField
- Defined in:
- lib/ooxml_parser/common_parser/common_data/paragraph/text_field.rb
Overview
Class for parsing ‘fld` tags
Instance Attribute Summary collapse
-
#id ⇒ Object
Returns the value of attribute id.
-
#text ⇒ Object
Returns the value of attribute text.
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ TextField
Parse TextField 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
#id ⇒ Object
Returns the value of attribute id.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/paragraph/text_field.rb', line 6 def id @id end |
#text ⇒ Object
Returns the value of attribute text.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/paragraph/text_field.rb', line 6 def text @text end |
#type ⇒ Object
Returns the value of attribute type.
6 7 8 |
# File 'lib/ooxml_parser/common_parser/common_data/paragraph/text_field.rb', line 6 def type @type end |
Instance Method Details
#parse(node) ⇒ TextField
Parse TextField object
11 12 13 14 15 16 17 18 19 20 21 |
# File 'lib/ooxml_parser/common_parser/common_data/paragraph/text_field.rb', line 11 def parse(node) @id = node.attribute('id').value @type = node.attribute('type').value node.xpath('*').each do |text_field_node_child| case text_field_node_child.name when 't' @text = text_field_node_child.text end end self end |