Property EnterDragHandler
- Namespace
- DotNetBrowser.Input.DragAndDrop
- Assembly
- DotNetBrowser.dll
EnterDragHandler
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.
IHandler<EnterDragParameters> EnterDragHandler { get; set; }
Property Value
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.
Exceptions
- ObjectDisposedException
The IDragAndDrop has already been disposed.
- ConnectionClosedException
The connection to the Chromium engine is closed.