openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class PhoneticGuideAlignment < ValueProperty
        tag :rubyAlign
        name "alignment"

        def ok_values
          %i(center distributeLetter distributeSpace left right rightVertical)
        end

      end
    end
  end
end