Search
FlowChart.RequestDropInBox Event
See Also
 



Raised when an image or text is dragged over a box.

 Syntax

VB6  Copy Code

Public Event RequestDropInBox

 Event Data

Parameter

Type

Description

dataType

[input] EDragDataType enumeration

The type of the dropped data.

box

[input] reference to Box object

The object under the mouse cursor.

drop

[input,output] boolean

Set to true to accept the drop operation.

Dispatch ID: 41

 Remarks

Raised when an image or text is dragged over a box. The dataType parameter value can be either dtText or dtPicture. This event will be raised if 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