Page 1 of 1

Enable Find function (ctrl + f) ?

Posted: Fri Jan 12, 2024 1:04 am
by thefunkyjoint
Does CEF4Delphi has something similar to Chrome's Find feature (ctrl + f) ?
Or i need to implement it inside my application ?

Re: Enable Find function (ctrl + f) ?

Posted: Fri Jan 12, 2024 12:52 pm
by salvadordf
TChromiumCore.Find and TChromiumCore.StopFinding allow you to search for text in the current web page.

https://github.com/salvadordf/CEF4Delphi/blob/805be3e7800ed74500c32b48c7ffab4495e53427/source/uCEFChromiumCore.pas#L1141

Re: Enable Find function (ctrl + f) ?

Posted: Fri Jan 12, 2024 1:56 pm
by thefunkyjoint
Thank you , it worked !