Raised when text is dropped into a table cell.
SyntaxVB6
Copy Code
|
|---|
Public Event DropAcceptedByTableCell |
Event DataParameter | 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
RemarksRaised 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