IDragHandlerOnDragEnter Method |
Version 86.0.240
Called when an external drag event enters the browser window.
Namespace:
CefSharp
Assembly:
CefSharp (in CefSharp.dll) Version: 86.0.240.0 (86.0.240.0)
Syntax bool OnDragEnter(
IWebBrowser chromiumWebBrowser,
IBrowser browser,
IDragData dragData,
DragOperationsMask mask
)
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