PointerEventArgs.CurrentPoint Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtém os dados do ponteiro do último evento de ponteiro.
public:
property PointerPoint ^ CurrentPoint { PointerPoint ^ get(); };
PointerPoint CurrentPoint();
public PointerPoint CurrentPoint { get; }
var pointerPoint = pointerEventArgs.currentPoint;
Public ReadOnly Property CurrentPoint As PointerPoint
Valor da propriedade
Informações sobre o estado e a posição da tela do ponteiro.
Exemplos
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;
}
Comentários
CurrentPoint corresponde ao último ponto recuperado por GetIntermediatePoints.