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

Compare with Current View Page History

Version 1 Current »

Applies to

SYSTEM Object

Description

Contains the name of the OpenInsight control that is currently the target of a drag-drop operation. For use with Get_Property only.

Usage

dropTarget = Get_Property ("SYSTEM","DROPTARGET")

Returns

The fully qualified control name.

Example

 

Declare function Get_Property
* retrieve the DROPTARGET control and display the name in a message
 
dropTarget = Get_Property("SYSTEM","DROPTARGET")
 
if dropTarget = @window:".EDITLINE_2" then
   msg(@window,"The Drop Target control is " : dropTarget)
end
  • No labels