DocumentViewerFindTextResultsHandler Delegate

Summary

A callback used when a DocumentViewerText.Find operation completes.

Syntax

JavaScript Syntax
function lt.Documents.UI.DocumentViewerFindTextResultsHandler(results) 
TypeScript Syntax
interface lt.Documents.UI.DocumentViewerFindTextResultsHandler { 
	(results: DocumentViewerMultiLineTextItem[]): void; 
} 

Parameters

results

The results of the DocumentViewerText.Find, as an array of DocumentViewerMultiLineTextItem. The array will be null if no results are found.

Remarks

DocumentViewerFindTextResultsHandler is a callback type used as a parameter to DocumentViewerText.Find, which is asynchronous. The callback is run when the text search operation completes. The first argument to the callback will be the array of results, or null if no results were found.

History

19.0.0.49
Added
Example

See DocumentViewerText.Find for an example.

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Documents.UI Assembly