Search
FlowChart.RequestDropInTable Event
See Also
 



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

 Syntax

VB6  Copy Code

Public Event RequestDropInTable

 Event Data

Parameter

Type

Description

dataType

[input] EDragDataType enumeration

The type of the dropped data.

table

[input] reference to Table object

The table under the mouse cursor.

drop

[input, output] boolean

Set to true to accept the drop operation

Dispatch ID: 42

 Remarks

Raised when an image or text is dragged over a table. 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