openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class Alignment < ValueProperty
        tag :jc

        def ok_values
          %i(both center distribute end highKashida lowKashida mediumKashida numTab start thaiDistribute left right)
        end

      end
    end
  end
end