openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class SectionType < ValueProperty
        tag :type
        name "type"

        def ok_values
          %i(continuous evenPage nextColumn nextPage oddPage)
        end

      end
    end
  end
end