Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To enable drag and drop within edittable columns the ColStyle Message needs to be used. See ColStyle message

Example

Code Block
Declare function Get_Property, Set_Property
 
/* retrieve the ENABLEDROP property of the EDITLINE_1 control and if true set to false and vice versa.
 
enableDrop = Get_Property(@window:'.EDITLINE_1','ENABLEDROP')
if enableDrop then newDrag = 0 else newDrop = 1
enableDrop = Set_Property(@window:'.EDITLINE_1','ENABLEDROP',newDrop)