Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== DRAGCELLPOS Property ====== ==== Applies To ==== Drag Source edit table controls. ==== Description ==== Contains the cell position of data begin dragged within an edit table. ==== Usage ==== dragCellPos = Get_Property(dragSource,"DRAGCELLPOS") ==== Returns ==== An @fm delimited array of Column and Row. ==== See Also ==== [[dragsource|DRAGSOURCE property]] ==== Example ==== <code> 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) </code> guides/programming/programmers_reference_manual/dragcellpos.txt Last modified: 2024/06/19 20:20by 127.0.0.1