Sha256: aa99c8014dafb416a7f311a13dfbde3b569cb4f01e6be15ea5f945177a547a80
Contents?: true
Size: 870 Bytes
Versions: 40
Compression:
Stored size: 870 Bytes
Contents
# frozen_string_literal: true require_relative 'docx_custom_geometry/docx_shape_line_path' module OoxmlParser # Docx Custom Geometry class OOXMLCustomGeometry < OOXMLDocumentObject attr_accessor :paths_list def initialize(paths_list = [], parent: nil) @paths_list = paths_list super(parent: parent) end # Parse OOXMLCustomGeometry object # @param node [Nokogiri::XML:Element] node to parse # @return [OOXMLCustomGeometry] result of parsing def parse(node) node.xpath('*').each do |node_child| case node_child.name when 'pathLst' node_child.xpath('a:path', 'xmlns:a' => 'http://schemas.openxmlformats.org/drawingml/2006/main').each do |path_node| @paths_list << DocxShapeLinePath.new(parent: self).parse(path_node) end end end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems