guides:programming:programmers_reference_manual:dragcopy

DRAGCOPY Property

Drag Source controls

A boolean property denoting if a drag source control allows a copy operation

dragCopy = Get_Property(dragSource, "DRAGCOPY")

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

Values passed in Set_Property():

ValueDescription
bValueBoolean true (1) or false (0)

By default the DRAGCOPY 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
dragCopythe Boolean status of the control’s DRAGCOPY.
existingStatethe Boolean status of the control’s DRAGCOPY, when Set_Property was run.
Declare function Get_Property, Set_Property

 

* Turn the DRAGCOPY property off.

 

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

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