openxml/openxml-docx

View on GitHub
lib/openxml/docx/elements/word_processing_drawing_wrap_polygon.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class WordProcessingDrawingWrapPolygon < OpenXml::Docx::Element
        include HasChildren, HasProperties

        tag :wrapPolygon
        namespace :wp

        attribute :edited, expects: :boolean

      end
    end
  end
end