2.294.4 BackgroundImage.Source

The BackgroundImage.Source element specifies the type of source that is associated with a BackgroundImage. The BackgroundImage.Source element MUST be specified. The value of this element MUST be a String ([XMLSCHEMA2/2] section 3.2.1), and it MUST be one of the following:

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

Embedded: Specifies that the peer BackgroundImage.Value element contains a String constant or an expression that evaluates to the name of an EmbeddedImage within a report.

Database: Specifies that the peer BackgroundImage.Value element contains 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 BackgroundImage.Source element.

Parent elements

BackgroundImage

The following is the XML Schema definition of the BackgroundImage.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>