DragOperation.StartAsync(DragDropManager, PointerPoint) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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