Search
FlowChart.DropAcceptedByBox Event
See Also
 



Raised when text or an image is dropped into a box.

 Syntax

VB6  Copy Code

Public Event DropAcceptedByBox

 Event Data

Parameter

Type

Description

dataType

[input] EDragDataType enumeration

The type of the dropped data.

box

[input] reference to a Box

The box into which the data was dropped.

Dispatch ID: 37

 Remarks

Raised when text or an image is dropped into a box. If the dropped data is text the box Text property is set accordingly, and the event dataType parameter is dtText. If the dropped data is an image the box Picture property is set to this image, and the dataType parameter is dtPicture. This event can be raised when the DragDropMode property is either drAutoAccept or drRequestAccept.

 See Also