Versions Compared

Key

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

...

ValueDescription
dropAcceptA boolean true or false
existingStatethe Boolean status of the control’s DROPACCEPT, when Set_Property was run.

See Also

DROPSOURCE propertyDROPCOPY propertyDRAGMOVE property

Example

Code Block
Declare function Get_Property, Set_Property
 
* Only accept data being dragged from EDITLINE_1
 
dragSource = Get_Property("SYSTEM","DRAGSOURCE")
if dragSource # @window:".EDITLINE_1" then
   x = Set_Property(ctrlentid,"DROPACCEPT",0)
end