Class: Wx::DragResult
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)
Method Summary
Methods inherited from Enum
#!, #&, #<=>, #allbits?, #anybits?, #coerce, #eql?, #initialize, #inspect, #integer?, #method_missing, #nobits?, #real?, #succ, #to_int, #to_s, #|, #~
Constructor Details
This class inherits a constructor from Wx::Enum
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Wx::Enum