Sha256: 0ef1a6291053d48ab16e972db298eedce84e2d25ea3a1854bacb91df03b5d5e0
Contents?: true
Size: 755 Bytes
Versions: 49
Compression:
Stored size: 755 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Class for parsing `w:tblStyleColBandSize` object # When a style specifies the format for a band of columns in a # table (a set of contiguous columns), # this specifies the number of columns in a band. class TableStyleColumnBandSize < OOXMLDocumentObject # @return [Integer] value of table style column band size attr_accessor :value # Parse TableStyleColumnBandSize # @param [Nokogiri::XML:Node] node with TableStyleColumnBandSize # @return [TableStyleColumnBandSize] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'val' @value = value.value.to_i end end self end end end
Version data entries
49 entries across 49 versions & 1 rubygems