ImagesPath Element
The ImagesPath element returns the HTTP path to the images directory for the project, including the trailing forward slash.
Syntax
<ImagesPath>
</ImagesPath>
Example
The following example from the SCHEMA.XML file for UserInfo lists uses the ImagesPath element to specify the path for the Edit icon.
<DisplayPattern>
<HTML><![CDATA[ <a href="]]></HTML>
<URL Cmd="Edit" />
<HTML><![CDATA[ " onclick='GoToLink(this);return false;' target="_self">]]></HTML>
<HTML><![CDATA[ <img border="0" alt="]]></HTML>
<HTML>Edit</HTML>
<HTML><![CDATA[ " src="]]></HTML>
<ImagesPath />
<HTML><![CDATA[ edititem.gif">]]></HTML>
<HTML><![CDATA[ </a>]]></HTML>
</DisplayPattern>