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