openxml/openxml-docx

View on GitHub
lib/openxml/docx/elements/font_pitch.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Docx
    module Elements
      class FontPitch < OpenXml::Docx::Element
        namespace :w
        tag :pitch

        with_namespace :w do
          attribute :value, one_of: %i(default fixed variable), displays_as: :val
        end

      end
    end
  end
end