IFindResultCallback

public interface IFindResultCallback

Callback interface used to getting search text result.

Methods

MethodDescription
foundResult(ITextFrame textFrame, String sourceText, String foundText, int textPosition)Callback method that receives data about the found text.

foundResult(ITextFrame textFrame, String sourceText, String foundText, int textPosition)

public abstract void foundResult(ITextFrame textFrame, String sourceText, String foundText, int textPosition)

Callback method that receives data about the found text.

Parameters:

ParameterTypeDescription
textFrameITextFrameThe ITextFrame in which the text was found.
sourceTextjava.lang.StringThe source text in which the text was found.
foundTextjava.lang.StringThe found text.
textPositionintThe position of the found text.