Search
FlowChart.RequestDrop Event
See Also
 



Raised when an image is dragged over empty document area.

 Syntax

VB6  Copy Code

Public Event RequestDrop

 Event Data

Parameter

Type

Description

dataType

[input] EDragDataType enumeration

The type of the dropped data.

drop

[input,output] boolean

Set to true to accept the drop operation.

Dispatch ID: 40

 Remarks

Raised when an image is dragged over empty document area. The dataType parameter value is dtPicture. This event can be raised when the DragDropMode property is set to drRequestAccept. Setting the drop parameter to false or true respectively rejects or accepts drop operation and the appropriate visual feedback is displayed.

 See Also