openxml/openxml-docx

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

Summary

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

        attribute :extent_length, expects: :positive_integer, displays_as: :cx
        attribute :extent_width, expects: :positive_integer, displays_as: :cy

      end
    end
  end
end