IFindHandlerOnFindResult Method  | 
Version 118.6.80  
    Namespace: 
   CefSharp
    Assembly:
   CefSharp (in CefSharp.dll) Version: 118.6.80.0 (118.6.80.0)
Syntaxvoid OnFindResult(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	int identifier,
	int count,
	Rect selectionRect,
	int activeMatchOrdinal,
	bool finalUpdate
)
void OnFindResult(
	IWebBrowser^ chromiumWebBrowser, 
	IBrowser^ browser, 
	int identifier, 
	int count, 
	Rect selectionRect, 
	int activeMatchOrdinal, 
	bool finalUpdate
)
Parameters
- chromiumWebBrowser
 - Type: CefSharpIWebBrowser
the ChromiumWebBrowser control - browser
 - Type: CefSharpIBrowser
the browser object - identifier
 - Type: SystemInt32
is a unique incremental identifier for the currently active search. - count
 - Type: SystemInt32
is the number of matches currently identified - selectionRect
 - Type: CefSharp.StructsRect
is the location of where the match was found (in window coordinates) - activeMatchOrdinal
 - Type: SystemInt32
is the current position in the search results - finalUpdate
 - Type: SystemBoolean
is true if this is the last find notification. 
See Also