openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class VerticalAlignment < ValueProperty
        tag :vertAlign

        def ok_values
          %i(baseline subscript superscript)
        end

      end
    end
  end
end