openxml/openxml-package

View on GitHub
lib/openxml/properties/transparent_container_property.rb

Summary

Maintainability
A
0 mins
Test Coverage
module OpenXml
  module Properties
    class TransparentContainerProperty < ContainerProperty

      def to_xml(xml)
        return unless render?
        each { |child| child.to_xml(xml) }
      end

    end
  end
end