PointerEventArgs.CurrentPoint プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
最後のポインター イベントのポインター データを取得します。
public:
property PointerPoint ^ CurrentPoint { PointerPoint ^ get(); };
PointerPoint CurrentPoint();
public PointerPoint CurrentPoint { get; }
var pointerPoint = pointerEventArgs.currentPoint;
Public ReadOnly Property CurrentPoint As PointerPoint
プロパティ値
ポインターの状態と画面の位置に関する情報。
例
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;
}
注釈
CurrentPoint は、 GetIntermediatePoints によって取得された最後のポイントに対応します。