openxml/openxml-docx

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

Summary

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

        def ok_values
          %i(auto baseline bottom center top)
        end

      end
    end
  end
end