Help > Web Development > Object Reference > Object Reference > ISYSDocument > PhrasedHits Property
<a name="kanchor337"></a>ISYSDocument:PhrasedHits Property
Returns the number of found hits in the document, with consecutive runs of hits counting as one. Read-Only.

Syntax
[VBScript]
ReadOnly property ISYSDocument.PhrasedHits as long
[C#]
long IISYSDocument.PhrasedHits {get;}
[ColdFusion/Java]
long ISYSDocument.PhrasedHits() throws ComException;
Examples
[VBScript]
<% Set document = Results(i) %> <%= i %>. <%= document.Title %> <br> <%= document.Path %> - <%= document.Relevance %> % - <%= document.Timestamp %> <br> Word Count: <%= document.WordCount %> Hit Count: <%= document.HitCount %> Phrased Hits: <%= document.PhrasedHits %>