Skip to content

OnBeginRDrag - AbstractTreeView

Fired on a mouse drag operation using the right mouse button

Type: Event

Parameters

Parameter Type Description
hItem Handle Item handle that the user began the drag operation on

Syntax

Procedure OnBeginRDrag Handle hItem

Description

Fired on a mouse drag operation using the right mouse button.

Note that the control does not have any drag-and-drop operations built-in, so it is your responsibility to perform the necessary operations using this event to trigger the beginning of the drag.

Sample

Procedure OnBeginRDrag
    Forward Send OnBeginRDrag
    // do something when user drags the right mouse button
End_Procedure