Class: OoxmlParser::MathRunProperties
- Inherits:
-
OOXMLDocumentObject
- Object
- OOXMLDocumentObject
- OoxmlParser::MathRunProperties
- Defined in:
- lib/ooxml_parser/docx_parser/docx_data/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
#==, add_to_xmls_stack, copy_file_and_rename_to_zip, current_xml, dir, encrypted_file?, get_link_from_rels, unzip_file, #with_data?
Methods included from OoxmlDocumentObjectHelper
Constructor Details
#initialize(parent: nil) ⇒ MathRunProperties
Returns a new instance of MathRunProperties.
7 8 9 10 |
# File 'lib/ooxml_parser/docx_parser/docx_data/document_structure/docx_paragraph/docx_formula/math_run/math_run_properties.rb', line 7 def initialize(parent: nil) @break = false @parent = parent end |
Instance Attribute Details
#break ⇒ True, False
Returns is run with break.
5 6 7 |
# File 'lib/ooxml_parser/docx_parser/docx_data/document_structure/docx_paragraph/docx_formula/math_run/math_run_properties.rb', line 5 def break @break end |
Instance Method Details
#parse(node) ⇒ MathRunProperties
Parse MathRunProperties
15 16 17 18 19 20 21 22 23 |
# File 'lib/ooxml_parser/docx_parser/docx_data/document_structure/docx_paragraph/docx_formula/math_run/math_run_properties.rb', line 15 def parse(node) node.xpath('*').each do |math_run_child| case math_run_child.name when 'brk' @break = true end end self end |