Search
FlowChart.DropAcceptedByTable Event
See Also
 



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

 Syntax

VB6  Copy Code

Public Event DropAcceptedByTable

 Event Data

Parameter

Type

Description

dataType

[input] EDragDataType enumeration

The type of the dropped data.

table

[input] reference to a Table

The table into which the data was dropped.

Dispatch ID: 38

 Remarks

Raised when text or an image is dropped into a table. If the dropped data is text the table Caption property is set accordingly, and the event dataType parameter is dtText. If the dropped data is an image the table 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