openxml/openxml-pptx

View on GitHub
lib/openxml/pptx/properties/font_reference_bold.rb

Summary

Maintainability
A
0 mins
Test Coverage
require "openxml/pptx/properties/font_reference"

module OpenXml
  module Pptx
    module Properties
      class FontReferenceBold < FontReference
        namespace :p
        tag :bold

      end
    end
  end
end