Sha256: ec021c0efcb9c16b77faf28242f967b6af537ec9a37c4199f3f5fb0905fdf814
Contents?: true
Size: 724 Bytes
Versions: 4
Compression:
Stored size: 724 Bytes
Contents
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
4 entries across 4 versions & 1 rubygems