openxml/openxml-drawingml

View on GitHub
lib/openxml/drawingml/elements/fill_rectangle.rb

Summary

Maintainability
A
40 mins
Test Coverage
module OpenXml
  module DrawingML
    module Elements
      class FillRectangle < OpenXml::Element
        namespace :a
        tag :fillRect

        attribute :bottom_offset, expects: :percentage, displays_as: :b
        attribute :left_offset, expects: :percentage, displays_as: :l
        attribute :right_offset, expects: :percentage, displays_as: :r
        attribute :top_offset, expects: :percentage, displays_as: :t

      end
    end
  end
end