openxml/openxml-pptx

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

Summary

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

module OpenXml
  module Pptx
    module Properties
      class ControlList < OpenXml::Properties::ContainerProperty
        namespace :p
        tag :controls
        child_class :control

      end
    end
  end
end