Sha256: 4937d89e833f0ea9ef03dd4ae9941a56358a0eb8e34ad7d7a491ee5df749e8f4

Contents?: true

Size: 717 Bytes

Versions: 6

Compression:

Stored size: 717 Bytes

Contents

# frozen_string_literal: true

# Class for parsing Run Outline properties
module OoxmlParser
  # Class for parsing `w:ln` tags
  class Outline < OOXMLDocumentObject
    attr_accessor :width
    attr_accessor :color_scheme

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

    # Parse Outline object
    # @param node [Nokogiri::XML:Element] node to parse
    # @return [Outline] result of parsing
    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
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
ooxml_parser-0.7.2 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.7.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.7.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.6.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.5.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.5.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb