Search
FlowChart.TableCellStartDrag Event
See Also
 



Allows starting an OLE drag-and-drop operation form a table cell.

 Syntax

VB6  Copy Code

Public Event TableCellStartDrag

 Event Data

Parameter

Type

Description

table

[input] reference to a Table

The table whose cell is pointed with the mouse.

row

[input] long

The row index of the pointed cell.

col

[input] long

The column index of the pointed cell.

startDrag

[output] boolean

Specifies whether to start drag-and-drop operation.

Dispatch ID: 81

 Remarks

Allows starting OLE drag-and-drop operation when users start dragging the mouse over a table's cell. This event is fired only if the fTableCellStartDrag bit of EventFlags is enabled. By default, starting to drag with the mouse over a cell initiates an arrow-creation operation. Set startDrag to true to start OLE drag-and-drop operation instead.

 See Also