Help > Web Development > Object Reference > Object Reference > ISYSDocument > AssociatedImage Property
<a name="kanchor301"></a>ISYSDocument:AssociatedImage Property
Returns any image associated with this document

Syntax
[VBScript]
ReadOnly property ISYSDocument.AssociatedImage as string
[C#]
string ISYSDocument.AssociatedImage {get;}
[ColdFusion/Java]
java.lang.String ISYSDocument.AssociatedImage() throws ComException;
Examples
[VBScript]
<% ' Get the document Set Document = Results(CLng(Request("doc"))) %> <% If Document.AssociatedImage <> "" Then %> <a href="ShowImage.asp?Results=&Doc=">View Image</a> <% End If %>