RSSImage Object
See Also Example Properties Methods Events
This object models an RSS Image element.
Class Diagram

Remarks
This object contains three required properties Link,
Title and URL
and three optional properties Description,
Height and Width.
Version compatibility is as follows:
| Version | Compatibility |
| 0.90 | Supported (Only Link, Title and URL) |
| 0.91 | Supported (All Properties) |
| 0.92 | Supported (All Properties) |
| 0.93 | Supported (All Properties) |
| 0.94 | Supported (All Properties) |
| 1.0 | Unknown |
| 2.0 | Supported (All Properties) |
Background
The relation between the properties (highlighted in bold italics) in this object and any resulting XML is as follows:
<image>
<link>Link</link>
<title>Title</title>
<url>URL</url>
<description>Description</description>
<height>Height</height>
<width>Width</width>
</image>
For example:
<image>
<link>http://www.fongueusemare.com/</link>
<title>Ponderous Ponderings</title>
<url>http://www.fongueusemare.com/images/linkbut1.jpg</url>
<description>Ponderous Ponderings</description>
<height>31</height>
<width>88</width>
</image>
|