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

Version Path
ooxml_parser-0.38.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.37.1 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.37.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.36.1 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.36.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.35.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.34.2 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.34.1 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.34.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.33.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.32.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.31.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.30.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.29.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.28.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.27.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.26.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.25.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.24.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb
ooxml_parser-0.23.0 lib/ooxml_parser/common_parser/common_data/table/properties/table_style_column_band_size.rb