openxml/openxml-docx

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

Summary

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

        with_namespace :w do
          attribute :value, expects: :boolean, displays_as: :val
        end

      end
    end
  end
end