Drag this element to the dropTarget

Namespace:  ArtOfTest.WebAii.Silverlight
Assembly:  ArtOfTest.WebAii (in ArtOfTest.WebAii.dll) Version: 2.0.7.0 (2.0.7.0)

Syntax

C#
public void DragTo(
	int startOffsetX,
	int startOffsetY,
	OffsetReference startOffsetReference,
	FrameworkElement dropTarget,
	int endOffsetX,
	int endOffsetY,
	OffsetReference endOffsetReference
)
Visual Basic (Declaration)
Public Sub DragTo ( _
	startOffsetX As Integer, _
	startOffsetY As Integer, _
	startOffsetReference As OffsetReference, _
	dropTarget As FrameworkElement, _
	endOffsetX As Integer, _
	endOffsetY As Integer, _
	endOffsetReference As OffsetReference _
)
Visual C++
public:
void DragTo(
	int startOffsetX, 
	int startOffsetY, 
	OffsetReference startOffsetReference, 
	FrameworkElement^ dropTarget, 
	int endOffsetX, 
	int endOffsetY, 
	OffsetReference endOffsetReference
)

Parameters

startOffsetX
Type: System..::.Int32
The horizontal offset within this element from which to begin the drag
startOffsetY
Type: System..::.Int32
The vertical offset within this element from which to begin the drag
startOffsetReference
Type: ArtOfTest.Common..::.OffsetReference
The reference used to calculate the offsets within this element
dropTarget
Type: ArtOfTest.WebAii.Silverlight..::.FrameworkElement
The drop target element
endOffsetX
Type: System..::.Int32
The horizontal offset within the drop target at which to end the drag
endOffsetY
Type: System..::.Int32
The vertical offset within the drop target at which to end the drag
endOffsetReference
Type: ArtOfTest.Common..::.OffsetReference
The reference used to calculate the offsets within the drop target element

See Also