Page History
...
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 ENABLEDRAG property of the EDITLINE_1 control and if true set to false and vice versa. enableDrag = Get_Property(@window:'.EDITLINE_1','ENABLEDRAG') if enableDrag then newDrag = 0 else newDrag = 1 enableDrag = Set_Property(@window:'.EDITLINE_1','ENABLEDRAG',newDrag) |