Search
FlowChart.ObjectDroppedInTable Event
See Also
 



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

 Syntax

VB6  Copy Code

Public Event ObjectDroppedInTable

 Event Data

Parameter

Type

Description

dataType

[input] EDragDataType enumeration

The type of the dropped object.

table

[input] reference to a Table

Table into which the object was dropped.

Dispatch ID: 50

 Remarks

Occurs if a diagram item or a selection of items is dropped into a table. 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