openxml/openxml-docx

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

Summary

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

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

      end
    end
  end
end