DragOperation.StartAsync(DragDropManager, PointerPoint) Method

Definition

Starts the drag and drop operation for the specified DragDropManager using the specified input pointer.

public:
 virtual IAsyncOperation<DataPackageOperation> ^ StartAsync(DragDropManager ^ initialTarget, PointerPoint ^ initialPointerPoint) = StartAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<DataPackageOperation> StartAsync(DragDropManager const& initialTarget, PointerPoint const& initialPointerPoint);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<DataPackageOperation> StartAsync(DragDropManager initialTarget, PointerPoint initialPointerPoint);
function startAsync(initialTarget, initialPointerPoint)
Public Function StartAsync (initialTarget As DragDropManager, initialPointerPoint As PointerPoint) As IAsyncOperation(Of DataPackageOperation)

Parameters

initialTarget
DragDropManager

The target of the drag and drop operation.

initialPointerPoint
PointerPoint

The input pointer associated with the drag and drop operation.

Returns

An asynchronous operation object from which, on successful completion, you can retrieve a DataPackageOperation object that specifies the action(s) being performed.

Attributes

Applies to