Versions Compared

Key

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

...

An @fm delimited array of Column and Row.

See Also

DRAGSOURCE property

Example

Code Block
Declare function Get_Property
 
* retrieve the DRAGCELLPOS property and display the position in a message
 
dragSource = Get_Property("SYSTEM","DRAGSOURCE")
dragCellPos = Get_Property(dragSource,"DRAGCELLPOS")
 
mText = "The data being dragged is from column " :dragCellPos<1>
mText:= " and row " :dragCellPos<2>: " in the " :dragSource: " control"
msg(@window,msgText)