Sha256: 1b8a64e58df7ef366bb5910888df599835b5f040cad2c1274f0206dab0af8e88

Contents?: true

Size: 473 Bytes

Versions: 49

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

49 entries across 49 versions & 1 rubygems

Version Path
ooxml_parser-0.22.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.21.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.20.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.19.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.18.1 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.18.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.17.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.16.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.15.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.14.2 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.14.1-mingw32 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.14.1 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.14.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.13.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.12.2 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.12.1 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.12.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.11.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.10.0 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb
ooxml_parser-0.9.1 lib/ooxml_parser/common_parser/common_data/table/row/cell/properties/table_cell_line/line_join.rb