DisplayHandlerOnCursorChange Method  | 
Version 93.1.111 
            Called when the browser's cursor has changed.
            
 
    Namespace: 
   CefSharp.Handler
    Assembly:
   CefSharp (in CefSharp.dll) Version: 93.1.111.0 (93.1.111.0)
Syntaxprotected virtual bool OnCursorChange(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	IntPtr cursor,
	CursorType type,
	CursorInfo customCursorInfo
)
protected:
virtual bool OnCursorChange(
	IWebBrowser^ chromiumWebBrowser, 
	IBrowser^ browser, 
	IntPtr cursor, 
	CursorType type, 
	CursorInfo customCursorInfo
)
Parameters
- chromiumWebBrowser
 - Type: CefSharpIWebBrowser
the ChromiumWebBrowser control - browser
 - Type: CefSharpIBrowser
the browser object - cursor
 - Type: SystemIntPtr
If type is Custom then customCursorInfo will be populated with the custom cursor information - type
 - Type: CefSharp.EnumsCursorType
cursor type - customCursorInfo
 - Type: CefSharp.StructsCursorInfo
custom cursor Information 
Return Value
Type: 
BooleanReturn true if the cursor change was handled or false for default handling.
See Also