Sha256: 8701d542bc6535608903fb879732f4af55eb0ac45218337305c3d0a9dfbb48c1
Contents?: true
Size: 517 Bytes
Versions: 48
Compression:
Stored size: 517 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `a:alphaModFix` tag class AlphaModFix < OOXMLDocumentObject attr_accessor :amount # Parse AlphaModFix object # @param node [Nokogiri::XML:Element] node to parse # @return [AlphaModFix] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'amt' @amount = OoxmlSize.new(value.value.to_f, :one_1000th_percent) end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems