SearchNextAsync Method

PDFTron SilverDox SDK

Collapse imageExpand ImageCopy imageCopyHover image
Attempts to find the next instance of the search string specified in SearchBegin(String, TextSearch..::..SearchModes, Int32).

Namespace: PDFTron.SilverDox.Documents.Text
Assembly: SilverDox (in SilverDox.dll) Version: 1.2.4413.29010

Syntax

C#
public void SearchNextAsync(
	Action<TextSearch..::..OnTextSearchAsyncCallbackArgs> onTextSearchAsyncCallback,
	Object userData
)
Visual Basic
Public Sub SearchNextAsync ( _
	onTextSearchAsyncCallback As Action(Of TextSearch..::..OnTextSearchAsyncCallbackArgs), _
	userData As Object _
)
Visual C++
public:
void SearchNextAsync(
	Action<TextSearch..::..OnTextSearchAsyncCallbackArgs^>^ onTextSearchAsyncCallback, 
	Object^ userData
)

Parameters

onTextSearchAsyncCallback
Type: System..::..Action<(Of <(<'TextSearch..::..OnTextSearchAsyncCallbackArgs>)>)>
The callback function to call when the search completes. The search may complete when the search term is found, when the entire document has been searched, and, depending on the search options, at the end of every page.
userData
Type: System..::..Object
Custom data that will be included in the callback function's arguments.

See Also