Click or drag to resize

IDragAndDropDropHandler Property

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

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

Property Value

Type: IHandlerDropParameters
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