Search
FlowChart.ObjectDroppedInBox Event
See Also
 



Occurs if a diagram item or a selection of items is dropped into a box.

 Syntax

VB6  Copy Code

Public Event ObjectDroppedInBox

 Event Data

Parameter

Type

Description

dataType

[input] EDragDataType enumeration

The type of the dropped object.

box

[input] reference to a Box

The box into which the object was dropped.

Dispatch ID: 49

 Remarks

Occurs if a diagram item or a selection of items is dropped into a box. dataType can be:

  • dtBox - the dropped object is a box, referenced by ActiveBox property.
  • dtTable - the dropped object is a table, referenced by ActiveTable property.
  • dtSelection - a selection of objects is dropped into the box, the object are contained in the Selected* collections.

 See Also