Class: Wx::DragResult

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/drag_drop.rb

Overview

Result returned from a Wx::DropSource#do_drag_drop call.

Requires:

  • USE_DRAG_AND_DROP

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)
Wx::DragResult.new(4)
DragCancel =

The operation was cancelled by user (not an error).

Wx::DragResult.new(5)