2.306 EmbeddedImage

The EmbeddedImage element specifies an image that is embedded within a Report. The EmbeddedImage element MUST be specified at least once within an EmbeddedImages collection.

The following are the parent elements, attributes, and child elements of the EmbeddedImage element.

Parent elements

EmbeddedImages

Attributes

EmbeddedImage.Name

Child elements

EmbeddedImage.ImageData

EmbeddedImage.MIMEType

The following is the XML Schema definition of the EmbeddedImage element.

 <xsd:complexType name="EmbeddedImageType">
   <xsd:choice minOccurs="1" maxOccurs="unbounded">
     <xsd:element name="MIMEType" type="xsd:string" />
     <xsd:element name="ImageData" type="xsd:string" />
     <xsd:any namespace="##other" processContents="skip" />
   </xsd:choice>
   <xsd:attribute name="Name" type="xsd:normalizedString" use="required" />
   <xsd:anyAttribute namespace="##other" processContents="skip" />
 </xsd:complexType>