Table of Contents

DRAGSELROWS Property

Applies To

Drag Source ListBox and Edittable controls.

Description

Contains the row numbers of the data being dragged from a row-oriented control. Multiple rows are @fm-delimited.

Usage

dragSelRows = Get_Property(dragSource,"DRAGSELROWS")

Returns

The row numbers being dragged.

Note: The index for the rows being returned begins at 0.

See Also

DRAGSOURCE property, DRAGSELROWCOUNT property

Example

Declare function Get_Property

 

* retrieve the DRAGPOS property and display data in a message

 

dragSource = Get_Property("SYSTEM","DRAGSOURCE")

dragSelRows = Get_Property(dragSource,"DRAGSELROWS")

swap @fm with ',' in dragSelRows

msgText = "The rows ":dragSelRows:" were dragged from the editttable." msg(@window,msgText)