Class: OoxmlParser::TextOutline

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_paragraph_run/text_outline.rb

Overview

Class for parsing ‘w:textOutline`

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) ⇒ TextOutline

Returns a new instance of TextOutline.



9
10
11
12
13
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_paragraph_run/text_outline.rb', line 9

def initialize(parent: nil)
  @width = OoxmlSize.new(0)
  @color_scheme = :none
  super
end

Instance Attribute Details

#color_schemeObject

Returns the value of attribute color_scheme.



7
8
9
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_paragraph_run/text_outline.rb', line 7

def color_scheme
  @color_scheme
end

#widthObject

Returns the value of attribute width.



7
8
9
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_paragraph_run/text_outline.rb', line 7

def width
  @width
end

Instance Method Details

#parse(node) ⇒ TextOutline

Parse TextOutline object

Parameters:

  • node (Nokogiri::XML:Element)

    node to parse

Returns:



18
19
20
21
22
23
24
25
26
27
# File 'lib/ooxml_parser/docx_parser/document_structure/docx_paragraph/docx_paragraph_run/text_outline.rb', line 18

def parse(node)
  node.attributes.each do |key, value|
    case key
    when 'w'
      @width = OoxmlSize.new(value.value.to_f, :emu)
    end
  end
  @color_scheme = DocxColorScheme.new(parent: self).parse(node)
  self
end