Help > Web Development > Object Reference > Object Reference > ISYSDocument > Changed Property
<a name="kanchor303"></a>ISYSDocument:Changed Property
Indicates if the document has changed since it was indexed. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSDocument.Changed as boolean
[C#]
boolean IISYSDocument.Changed {get;}
[ColdFusion/Java]
boolean ISYSDocument.Changed() throws ComException;
Examples
[VBScript]
<% set document = results.Item(i) %> <%=i%>. <%= document.Title %> <br> <%= document.filename %> - <%= document.Format %> - <%= document.Relevance %>% - <%= document.Timestamp %> <% if NOT document.IsAuthorized then %> <img src="locked.gif" /> <% end if %> <% if document.Changed then %> <img src="changed.gif" /> <% end if %>

Remarks
If the document has changed since it was indexed, the returned document will not contain hit highlighting.