Class: OoxmlParser::MathRunProperties

Inherits:
OOXMLDocumentObject show all
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

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, #boolean_attribute_value, #parse_xml, #with_data?

Methods included from OoxmlObjectAttributeHelper

#attribute_enabled?, #option_enabled?

Methods included from OoxmlDocumentObjectHelper

#to_hash

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

#breakTrue, False

Returns is run with break.

Returns:

  • (True, False)

    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

Parameters:

  • node (Nokogiri::XML:Node)

    with MathRunProperties

Returns:



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