Compartir a través de


PointerEventArgs.CurrentPoint Propiedad

Definición

Obtiene los datos de puntero del último evento de puntero.

public:
 property PointerPoint ^ CurrentPoint { PointerPoint ^ get(); };
PointerPoint CurrentPoint();
public PointerPoint CurrentPoint { get; }
var pointerPoint = pointerEventArgs.currentPoint;
Public ReadOnly Property CurrentPoint As PointerPoint

Valor de propiedad

Información sobre el estado y la posición de pantalla del puntero.

Ejemplos

void OnPointerPressed(Windows::UI::Core::CoreWindow const& /* sender */, Windows::UI::Core::PointerEventArgs const& args)
{
    Windows::UI::Input::PointerPoint currentPoint{ args.CurrentPoint() };
}
void MyCoreWindowEvents::GetPointerInfo(
    _In_ PointerEventArgs^ args)
{
    Windows::UI::Input::PointerPoint^ currentPoint = args->CurrentPoint;
}

Comentarios

CurrentPoint corresponde al último punto recuperado por GetIntermediatePoints.

Se aplica a