Sha256: 1b8a64e58df7ef366bb5910888df599835b5f040cad2c1274f0206dab0af8e88

Contents?: true

Size: 473 Bytes

Versions: 48

Compression:

Stored size: 473 Bytes

Contents

# frozen_string_literal: true

module OoxmlParser
  # LineJoin data
  class LineJoin < OOXMLDocumentObject
    attr_accessor :type

    # Parse LineJoin object
    # @param node [Nokogiri::XML:Element] node to parse
    # @return [LineJoin] result of parsing
    def parse(node)
      node.xpath('*').each do |node_child|
        case node_child.name
        when 'round', 'bevel'
          @type = node_child.name.to_sym
        end
      end
      self
    end
  end
end

Version data entries

48 entries across 48 versions & 1 rubygems

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