Sha256: ca453e2089e36633b51ba628bc1ff012746fd971b781a24f2802f4dade4c682c
Contents?: true
Size: 484 Bytes
Versions: 4
Compression:
Stored size: 484 Bytes
Contents
module OoxmlParser # Class for parsing `w:sz` object class RunSpacing < OOXMLDocumentObject # @return [Integer] value of size attr_accessor :value # Parse RunSpacing # @param [Nokogiri::XML:Node] node with RunSpacing # @return [RunSpacing] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'val' @value = OoxmlSize.new(value.value.to_f) end end self end end end
Version data entries
4 entries across 4 versions & 1 rubygems