Raised when an image or text is dragged over a table.
SyntaxVB6
Copy Code
|
|---|
Public Event RequestDropInTable |
Event DataParameter | Type | Description |
|---|---|---|
dataType | [input] EDragDataType enumeration | The type of the dropped data. |
table | [input] reference to Table object | The table under the mouse cursor. |
drop | [input, output] boolean | Set to true to accept the drop operation |
Dispatch ID: 42
RemarksRaised when an image or text is dragged over a table. The dataType parameter value can be either dtText or dtPicture. This event will be raised if the DragDropMode property is set to drRequestAccept. Setting the drop parameter to false or true respectively rejects or accepts drop operation and the appropriate visual feedback is displayed.
See Also