Table of Contents

DRAGSELROWCOUNT Property

Applies To

Drag Source ListBox and Edittable controls.

Description

Contains the numbers of rows being dragged from a row-oriented control.

Usage

dragSelRowcount = Get_Property(dragSource,"DRAGSELROWCOUNT")

Returns

The number of rows being dragged.

See Also

DRAGSOURCE property, DRAGSELROWS property

Example

Declare function Get_Property

 

* retrieve the DRAGPOS property and display data in a message

 

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

dragSelRC = Get_Property(dragSource,"DRAGSELROWCOUNT")

msg(@window,dragSelRC : " rows were dragged from the edittable.")