Click or drag to resize

IDragAndDropEnterDragHandler Property

Gets or sets a handler that is used when the input system reports an underlying drag enter event with the browser as the drag target.

Namespace:  DotNetBrowser.Input.DragAndDrop
Assembly:  DotNetBrowser (in DotNetBrowser.dll) Version: 2.16.0
Syntax
C#
IHandler<EnterDragParameters> EnterDragHandler { get; set; }

Property Value

Type: IHandlerEnterDragParameters
Exceptions
ExceptionCondition
ObjectDisposedExceptionThe IDragAndDrop has already been disposed.
ConnectionClosedExceptionThe connection to the Chromium engine is closed.
Remarks

Important: the engine will be blocked until the Handle() method returns. It is not allowed to invoke any engine methods in the scope of this handler implementation.

The parameters are valid only in the scope of the Handle() method and become invalid when this method returns.

See Also