Drag-Mode
This property specifies the drag & drop abilities of the control. Possible values are:
0
No drag & drop abilities. This is the default.
1
The user can drag content from the control. The MSG-DRAG event will be fired.
2
The user can drop content into the control. The MSG-DROP event will be fired.
3
The user can drag and drop content. The MSG-DRAG event and the MSG-DROP event will be fired respectively.
 
Example - Define a GRID with drag & drop capabilities
screen section.
...
  03 screen-1-gr-1 Grid
     line 6.2
     column 5.1
     size 37.4 cells 
     lines 15.5 cells 
     id 1
     event procedure screen-1-gr-1-evt-proc
     no-box
     column-headings
     row-dividers 1
     heading-font Default-Font
     cursor-frame-width 3
     drag-mode 3
     .
...