class OoxmlParser::DocxWrapDrawing

Docx Wrap Drawing

Attributes

distance_from_text[RW]
wrap_text[RW]

Public Class Methods

new(parent: nil) click to toggle source
Calls superclass method
# File lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/drawing_properties/docx_wrap_drawing.rb, line 8
def initialize(parent: nil)
  @wrap_text = :none
  super
end

Public Instance Methods

parse(node) click to toggle source

Parse DocxWrapDrawing object @param node [Nokogiri::XML:Element] node to parse @return [DocxWrapDrawing] result of parsing

# File lib/ooxml_parser/common_parser/common_data/alternate_content/drawing/drawing_properties/docx_wrap_drawing.rb, line 16
def parse(node)
  unless node.attribute('behindDoc').nil?
    @wrap_text = :behind if node.attribute('behindDoc').value == '1'
    @wrap_text = :infront if node.attribute('behindDoc').value == '0'
  end
  node.xpath('*').each do |node_child|
    case node_child.name
    when 'wrapSquare'
      @wrap_text = :square
      @distance_from_text = DocxDrawingDistanceFromText.new(parent: self).parse(node_child)
      break
    when 'wrapTight'
      @wrap_text = :tight
      @distance_from_text = DocxDrawingDistanceFromText.new(parent: self).parse(node_child)
      break
    when 'wrapThrough'
      @wrap_text = :through
      @distance_from_text = DocxDrawingDistanceFromText.new(parent: self).parse(node_child)
      break
    when 'wrapTopAndBottom'
      @wrap_text = :topbottom
      @distance_from_text = DocxDrawingDistanceFromText.new(parent: self).parse(node_child)
      break
    end
  end
  self
end