Class: OoxmlParser::Function
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::Function
- Defined in:
- lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/function.rb
Overview
Class for ‘func` data
Instance Attribute Summary collapse
-
#argument ⇒ Object
Returns the value of attribute argument.
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#parse(node) ⇒ Function
Parse Function 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
#argument ⇒ Object
Returns the value of attribute argument.
6 7 8 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/function.rb', line 6 def argument @argument end |
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/function.rb', line 6 def name @name end |
Instance Method Details
#parse(node) ⇒ Function
Parse Function object
11 12 13 14 15 16 17 18 19 20 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/function.rb', line 11 def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'fName' @name = DocxFormula.new(parent: self).parse(node_child) end end @argument = DocxFormula.new(parent: self).parse(node) self end |