openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class Suffix < ValueProperty
        tag :suff

        def ok_values
          %i(tab space nothing)
        end
      end
    end
  end
end