PointerEventArgs.CurrentPoint Property

Gets the pointer data of the last pointer event.

Syntax

public:
property PointerPoint^ CurrentPoint {
         PointerPoint^ get ();
}  

Property value

Type: PointerPoint 

Information about the state and screen position of the pointer.

Remarks

CurrentPoint corresponds to the last point retrieved by GetIntermediatePoints.

Example

C++

void MyCoreWindowEvents::GetPointerInfo(
    _In_ PointerEventArgs^ args
    )
{
    Windows::UI::Input::PointerPoint^ currentPoint = args->CurrentPoint;
    
		  // save or print currentPoint 
    
}  

Requirements

Namespace: Windows.UI.Core

Metadata: windows.winmd

See also

Reference

PointerEventArgs Class

PointerEventArgs Members

Windows.UI.Core Namespace