DragHandlerOnDragEnter Method  | 
Version 104.4.240 
            Called when an external drag event enters the browser window.
            
 
    Namespace: 
   CefSharp.Handler
    Assembly:
   CefSharp (in CefSharp.dll) Version: 104.4.240.0 (104.4.240.0)
Syntaxprotected virtual bool OnDragEnter(
	IWebBrowser chromiumWebBrowser,
	IBrowser browser,
	IDragData dragData,
	DragOperationsMask mask
)
protected:
virtual bool OnDragEnter(
	IWebBrowser^ chromiumWebBrowser, 
	IBrowser^ browser, 
	IDragData^ dragData, 
	DragOperationsMask mask
)
Parameters
- chromiumWebBrowser
 - Type: CefSharpIWebBrowser
the ChromiumWebBrowser control - browser
 - Type: CefSharpIBrowser
the browser object - dragData
 - Type: CefSharpIDragData
contains the drag event data - mask
 - Type: CefSharp.EnumsDragOperationsMask
represents the type of drag operation 
Return Value
Type: 
BooleanReturn false for default drag handling behavior or true to cancel the drag event. 
See Also