openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class WordProcessingDrawingWrapTopAndBottom < OpenXml::Docx::Element
        tag :wrapTopAndBottom
        namespace :wp

        attribute :distance_from_bottom, expects: :positive_integer, displays_as: :distB
        attribute :distance_from_top, expects: :positive_integer, displays_as: :distT

      end
    end
  end
end