openxml/openxml-docx

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

Summary

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

        tag :wsp
        namespace :wps
        attribute :normal_east_asian_flow, expects: :boolean, displays_as: :normalEastAsianFlow

      end
    end
  end
end