ZennoLab Assemblies Documentation
DragDrop Method
See Also  Example Send Feedback
ZennoLab.CommandCenter Assembly > ZennoLab.CommandCenter Namespace > Tab Class : DragDrop Method
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.

Glossary Item Box

Performs the drag and drop events inside tab.

Syntax

C# 
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.
C#Copy Code
// rise drag and drop events in specific positions
instance.ActiveTab.DragDrop(100, 100, 200, 200);
PHPCopy Code
// rise drag and drop events in specific positions
$instance->ActiveTab->DragDrop(100, 100, 200, 200);

Requirements

Target Platforms: Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2013 All Rights Reserved.