Click or drag to resize

CefFindHandlerOnFindResult Method

Called to report find results returned by CefBrowserHost::Find(). |identifer| is the identifier passed to Find(), |count| is the number of matches currently identified, |selectionRect| is the location of where the match was found (in window coordinates), |activeMatchOrdinal| is the current position in the search results, and |finalUpdate| is true if this is the last find notification.

Namespace: Internal.Xilium.CefGlue
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
protected abstract void OnFindResult(
	CefBrowser browser,
	int identifier,
	int count,
	CefRectangle selectionRect,
	int activeMatchOrdinal,
	bool finalUpdate
)

Parameters

browser  CefBrowser
 
identifier  Int32
 
count  Int32
 
selectionRect  CefRectangle
 
activeMatchOrdinal  Int32
 
finalUpdate  Boolean
 
See Also