wx.TextDropTarget¶A predefined drop target for dealing with text data.
Class Hierarchy¶
Inheritance diagram for class TextDropTarget:
Methods Summary¶Constructor. |
|
See |
|
Override this function to receive dropped text. |
Class API¶Possible constructors:
TextDropTarget() -> None
A predefined drop target for dealing with text data.
Constructor.
None
See wx.DropTarget.OnDrop .
This function is implemented appropriately for text, and calls OnDropText .
x (int)
y (int)
bool
Override this function to receive dropped text.
x (int) – The x coordinate of the mouse.
y (int) – The y coordinate of the mouse.
data (string) – The data being dropped: a String .
bool