guides:programming:programmers_reference_manual:dragmove

DRAGMOVE Property

Drag Source controls

A boolean property denoting if a drag source control allows a MOVE operation.

dragMove = Get_Property(dragSource, "DRAGMOVE")

existingState = Set_Property(dragSource,"DRAGMOVE", bValue)

Values passed in Set_Property():

ValueDescription
bValueBoolean true (1) or false (0)

By default the DRAGMOVE property is set to 1. This property should be set during the DRAGSTART event when overriding the default property. The DRAGMOVE property overrides the DRAGCOPY property. If you have both the DRAGMOVE and DRAGCOPY properties set to 1 then the DRAGMOVE will occur not the DRAGCOPY.

Values returned by Get_Property and Set_Property

ValueDescription
dragMovethe Boolean status of the control’s DRAGMOVE.
existingStatethe Boolean status of the control’s DRAGMOVE, when Set_Property was run.
Declare function Get_Property, Set_Property

 

* Turn the DRAGMOVE property off.

 

dragSource = Get_Property("SYSTEM","DRAGSOURCE")

dragMove = Set_Property(dragSource,"DRAGMOVE",0)
  • guides/programming/programmers_reference_manual/dragmove.txt
  • Last modified: 2024/06/19 20:20
  • by 127.0.0.1