Sha256: 7f951a102ad4b6d192461bdc2106c50fb53864e9a8ab92f95651eb0ad68ed300
Contents?: true
Size: 928 Bytes
Versions: 8
Compression:
Stored size: 928 Bytes
Contents
# frozen_string_literal: true require_relative 'docx_shape_line_path/docx_shape_line_element' module OoxmlParser # Docx Shape Line Path class DocxShapeLinePath < OOXMLDocumentObject attr_accessor :width, :height, :fill, :stroke, :elements def initialize(elements = [], parent: nil) @elements = elements @parent = parent end # Parse DocxShapeLinePath object # @param node [Nokogiri::XML:Element] node to parse # @return [DocxShapeLinePath] result of parsing def parse(node) node.attributes.each do |key, value| case key when 'w' @width = value.value.to_f when 'h' @height = value.value.to_f when 'stroke' @stroke = value.value.to_f end end node.xpath('*').each do |node_child| @elements << DocxShapeLineElement.new(parent: self).parse(node_child) end self end end end
Version data entries
8 entries across 8 versions & 1 rubygems