IDisplayHandlerOnTooltipChanged Method |
Version 51.0.0
Called when the browser is about to display a tooltip. text contains the
text that will be displayed in the tooltip. You can optionally modify text
and then return false to allow the browser to display the tooltip.
When window rendering is disabled the application is responsible for
drawing tooltips and the return value is ignored.
Namespace: CefSharpAssembly: CefSharp (in CefSharp.dll) Version: 51.0.0.0 (51.0.0.0)
Syntax bool OnTooltipChanged(
IWebBrowser browserControl,
string text
)
bool OnTooltipChanged(
IWebBrowser^ browserControl,
String^ text
)
Parameters
- browserControl
- Type: CefSharpIWebBrowser
The ChromiumWebBrowser control - text
- Type: SystemString
the text that will be displayed in the tooltip
Return Value
Type:
BooleanTo handle the display of the tooltip yourself return true otherwise return false
to allow the browser to display the tooltip.
Remarks Option to modify tooltip is not currently implemented.
See Also