2.12.19 Image.Source

The Image.Source element specifies the type of source for an Image. This element MUST be specified. The value of this element MUST be a String ([XMLSCHEMA2/2] section 3.2.1) that is one of the following:

External: Specifies that the peer Image.Value element MUST contain a String constant or an expression that evaluates to the location of an image.

Embedded: Specifies that the peer Image.Value element MUST contain a String constant or an expression that evaluates to the name of an embedded image in the report.

Database: Specifies that the peer Image.Value element MUST contain an expression (such as a field in the database) that evaluates to the binary data for an image.

Following is the parent element of the Image.Source element.

Parent elements

Image

The following is the XML Schema definition of the Image.Source element.

 <xsd:element name="Source">
   <xsd:simpleType>
     <xsd:restriction base="xsd:string">
       <xsd:enumeration value="External" />
       <xsd:enumeration value="Embedded" />
       <xsd:enumeration value="Database" />
     </xsd:restriction>
   </xsd:simpleType>
 </xsd:element>