Sha256: 94660c5c79cec25fdb4477848a12d9a74d6452fa31a2843ff5f44a3c3fe460ac
Contents?: true
Size: 552 Bytes
Versions: 48
Compression:
Stored size: 552 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `w:col` object class Column < OOXMLDocumentObject attr_accessor :width, :space, :separator # Parse Column # @param [Nokogiri::XML:Node] node with Column # @return [Column] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'w' @width = OoxmlSize.new(value.value.to_f) when 'space' @space = OoxmlSize.new(value.value.to_f) end end self end end end
Version data entries
48 entries across 48 versions & 1 rubygems