You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Applies to

Drop Target controls.

Description

Used during the DRAGDOP event to let the system know what operation took place.

Usage

dropType = Get_Property (dropTarget,"DROPTYPE")

Returns

ValueDescription
MOVEReturned on a MOVE operation
COPYReturned on a COPY operation

See Also

DROPTARGET property

Example

 

Declare function Get_Property
* retrieve the DROPTYPE property and display data in a message
 
dropTarget = Get_Property("SYSTEM","DROPTARGET")
droptType = Get_Property(dropTarget,"DROPTYPE")
msg(@window,"The drop type is ": dropType)
  • No labels