DragHandlerOnDragEnter Method |
Version 118.6.80
Called when an external drag event enters the browser window.
Namespace:
CefSharp.Handler
Assembly:
CefSharp (in CefSharp.dll) Version: 118.6.80.0 (118.6.80.0)
Syntax protected 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