Sha256: 1d3596313c5cda48dc2aeaab822470076229feb85cb0676f6e8b955425126769
Contents?: true
Size: 742 Bytes
Versions: 40
Compression:
Stored size: 742 Bytes
Contents
# frozen_string_literal: true # Class for parsing text outline and its properties module OoxmlParser # Class for parsing `w:textOutline` class TextOutline < OOXMLDocumentObject attr_accessor :width, :color_scheme def initialize(parent: nil) @width = OoxmlSize.new(0) @color_scheme = :none super end # Parse TextOutline object # @param node [Nokogiri::XML:Element] node to parse # @return [TextOutline] 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
40 entries across 40 versions & 1 rubygems