Sha256: 5cbf16405dd4e54c638bcb632d0b49f1d123b9e9bc982894ec4790950a91058f

Contents?: true

Size: 794 Bytes

Versions: 41

Compression:

Stored size: 794 Bytes

Contents

# frozen_string_literal: true

# Class for parsing Run Outline properties
module OoxmlParser
  # Class for parsing `w:ln` tags
  class Outline < OOXMLDocumentObject
    # @return [OoxmlSize] width of outline
    attr_reader :width
    # @return [DocxColorScheme] color of outline
    attr_reader :color_scheme

    def initialize(parent: nil)
      @width = OoxmlSize.new(0)
      super
    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

41 entries across 41 versions & 1 rubygems

Version Path
ooxml_parser-0.38.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.37.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.37.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.36.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.36.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.35.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.34.2 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.34.1 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.34.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.33.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.32.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.31.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.30.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.29.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.28.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.27.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.26.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.25.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.24.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb
ooxml_parser-0.23.0 lib/ooxml_parser/common_parser/common_data/paragraph/paragraph_run/run_properties/outline.rb