Class: OoxmlParser::MathRunProperties
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::MathRunProperties
- Defined in:
- lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run/math_run_properties.rb
Overview
Class for parsing ‘m:rPr` object
Instance Attribute Summary collapse
-
#break ⇒ True, False
Is run with break.
Attributes inherited from OOXMLDocumentObject
Instance Method Summary collapse
-
#initialize(parent: nil) ⇒ MathRunProperties
constructor
A new instance of MathRunProperties.
-
#parse(node) ⇒ MathRunProperties
Parse MathRunProperties.
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) ⇒ MathRunProperties
Returns a new instance of MathRunProperties.
9 10 11 12 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run/math_run_properties.rb', line 9 def initialize(parent: nil) @break = false super end |
Instance Attribute Details
#break ⇒ True, False
Returns is run with break.
7 8 9 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run/math_run_properties.rb', line 7 def break @break end |
Instance Method Details
#parse(node) ⇒ MathRunProperties
Parse MathRunProperties
17 18 19 20 21 22 23 24 25 |
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_formula/math_run/math_run_properties.rb', line 17 def parse(node) node.xpath('*').each do |math_run_child| case math_run_child.name when 'brk' @break = true end end self end |