openxml/openxml-docx

View on GitHub
lib/openxml/docx/properties/valign.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class VAlign < ValueProperty

        def ok_values
          %i(both bottom center top)
        end

      end
    end
  end
end