TCustomRichViewEdit.OnOleDragLeave [VCL and LCL]

<< Click to display table of contents >>

TCustomRichViewEdit.OnOleDragLeave [VCL and LCL]

OLE drag&drop event. It occurs when the user drags the mouse cursor out of the editor or cancels the current drag&drop operation.

property OnOleDragLeave: TNotifyEvent;

(introduced in version 10)

This is a low level event. Do not use it if you are not familiar with OLE drag&drop.

The first event in sequence is OnOleDragEnter, it occurs when the user moves the mouse pointer into the editor while dragging. After that, OnOleDragOver is called while the user moves the mouse inside the editor. Dragging is finished either by calling OnOleDrop (successfully) or by calling this event.

 

See also events:

OnOleDragEnter;

OnOleDragOver;

OnOleDrop.

See also:

Drag&drop in TRichView.