openxml/openxml-pptx

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

Summary

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

module OpenXml
  module Pptx
    module Properties
      class CustomShowList < OpenXml::Properties::ContainerProperty
        namespace :p
        tag :custShowLst
        child_class :custom_show

      end
    end
  end
end