Class: Wx::DragResult
- Inherits:
-
Enum
- Object
- Enum
- Wx::DragResult
- Defined in:
- lib/wx/doc/gen/drag_drop.rb
Overview
Result returned from a Wx::DropSource#do_drag_drop call.
Constant Summary collapse
- DragError =
Error prevented the D&D operation from completing.
Wx::DragResult.new(0)
- DragNone =
Drag target didn't accept the data.
Wx::DragResult.new(1)
- DragCopy =
The data was successfully copied.
Wx::DragResult.new(2)
- DragMove =
The data was successfully moved (MSW only).
Wx::DragResult.new(3)
- DragLink =
Operation is a drag-link.
Wx::DragResult.new(4)
- DragCancel =
The operation was cancelled by user (not an error).
Wx::DragResult.new(5)