ZennoLab Assemblies Documentation
DragDrop Method (Tab)
Example 

Type: System.Int32

The x coordinate inside tab's area for rise drag event.

Type: System.Int32

The y coordinate inside tab's area for rise drag event.

Type: System.Int32

The x coordinate inside tab's area for rise drop event.

Type: System.Int32

The y coordinate inside tab's area for rise drop event.

Performs the drag and drop events inside tab.
Syntax
public void DragDrop( 
   int fromX,
   int fromY,
   int toX,
   int toY
)

Parameters

fromX

Type: System.Int32

The x coordinate inside tab's area for rise drag event.

fromY

Type: System.Int32

The y coordinate inside tab's area for rise drag event.

toX

Type: System.Int32

The x coordinate inside tab's area for rise drop event.

toY

Type: System.Int32

The y coordinate inside tab's area for rise drop event.

Example
The following code example demonstrates uses of the DragDrop method.
// rise drag and drop events in specific positions
instance.ActiveTab.DragDrop(100, 100, 200, 200);
// rise drag and drop events in specific positions
$instance->ActiveTab->DragDrop(100, 100, 200, 200);
Requirements

Target Platforms: Desktop: Windows XP SP3 and older. Server: Windows Server 2003 and older.

See Also

Reference

Tab Class
Tab Members
RiseEvent Method
MouseClick Method
MouseMove Method
MouseWheel Method

Send Feedback