Table of Contents

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 property

Example

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)