Search
FlowChart.DropAcceptedByTableCell Event
See Also
 



Raised when text is dropped into a table cell.

 Syntax

VB6  Copy Code

Public Event DropAcceptedByTableCell

 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.

row

[input] long

The cell's row.

col

[input] long

The cell's column.

Dispatch ID: 39

 Remarks

Raised when text is dropped into a table cell. The cell's text is set accordingly. The event dataType parameter is dtText. This event can be raised when the DragDropMode property is either drAutoAccept or drRequestAccept.

 See Also