Allows starting an OLE drag-and-drop operation form a table cell.
SyntaxVB6
Copy Code
|
|---|
Public Event TableCellStartDrag |
Event DataParameter | 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
RemarksAllows 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