[ColdFusion/Java]
long IISYSDocument.GetLineWithHitAfter(
long Line
) throws ComException;
Parameters
Line
The line number after which to find the next hit
Examples
[VBScript]
<%
' Execute the search object and get the resultsSet Results = ISYSSearch.Execute
' Get the first documentSet Document = Results(1)
' Display 3 lines after the first hit
firsthit = Document.GetLineWithHitAfter(0)
For i = firsthit to firsthit + 1
if i > Document.LineCount thenexitfor
Response.Write Document.Line(i, isysStylePlain)
Next%>