Class: OpenXml::Docx::Properties::TransparentContainerProperty

Inherits:
ContainerProperty show all
Defined in:
lib/openxml/docx/properties/transparent_container_property.rb

Direct Known Subclasses

FooterReferences, HeaderReferences

Instance Attribute Summary

Attributes inherited from BaseProperty

#value

Instance Method Summary collapse

Methods inherited from ContainerProperty

#<<, child_class, #each, #initialize, #render?

Methods inherited from BaseProperty

#default_name, #default_namespace, #default_tag, #initialize, name, #name, namespace, #namespace, #render?, tag, #tag, tag_is_one_of

Constructor Details

This class inherits a constructor from OpenXml::Docx::Properties::ContainerProperty

Instance Method Details

#to_xml(xml) ⇒ Object



6
7
8
9
# File 'lib/openxml/docx/properties/transparent_container_property.rb', line 6

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