openxml/openxml-docx

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

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Properties
      class DocumentGrid < ComplexProperty
        tag :docGrid

        with_namespace :w do
          attribute :char_space, expects: :integer
          attribute :line_pitch, expects: :integer
          attribute :type, one_of: %i(default lines linesAndChars snapToChars)
        end

      end
    end
  end
end