Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

(default)
Class CefFindHandler

CefBase
   |
   +--CefFindHandler

   in cef_find_handler.h

class CefFindHandler
extends CefBase

Implement this interface to handle events related to find results. The methods of this class will be called on the UI thread.


Method Summary
 virtual void OnFindResult( CefRefPtr< CefBrowser > browser, int identifier, int count, const CefRect& selectionRect, int activeMatchOrdinal, bool finalUpdate )
          Called to report find results returned by CefBrowser::Find().
   
Methods inherited from class CefBase
AddRef, Release, GetRefCt
 

Method Detail

OnFindResult

public virtual void OnFindResult( CefRefPtr< CefBrowser > browser, int identifier, int count, const CefRect& selectionRect, int activeMatchOrdinal, bool finalUpdate );
Called to report find results returned by CefBrowser::Find(). |identifer| is the identifier passed to CefBrowser::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.

 Overview   Project   Class   Tree   Index 
CEF C++ API Docs - Revision 1123
FRAMES    NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD

Chromium Embedded Framework (CEF) Copyright © 2011 Marshall A. Greenblatt