PointerPoint.GetIntermediatePoints 方法

定义

重载

GetIntermediatePoints(UInt32)

检索指定指针的位置和状态信息,从最后一个指针事件到并包括当前指针事件。

在大多数情况下,我们建议通过所选语言框架中指针事件处理程序的事件参数获取指针信息, (使用 JavaScript 的 Windows 应用、使用 C++、C# 或 Visual Basic 的 UWP 应用,或使用 DirectX 和 C++) 的 UWP 应用。

如果事件参数本质上不公开应用所需的指针详细信息,则可以通过 PointerRoutedEventArgsGetCurrentPointGetIntermediatePoints 方法访问扩展指针数据。 使用这些方法可指定指针数据的上下文。

静态 PointerPoint 方法 GetCurrentPoint 和 GetIntermediatePoints 始终使用应用上下文。

GetIntermediatePoints(UInt32, IPointerPointTransform)

检索指定指针的转换位置和状态信息,从最后一个指针事件到当前指针事件(包括)。

在大多数情况下,我们建议通过所选语言框架中指针事件处理程序的事件参数获取指针信息, (使用 JavaScript 的 Windows 应用、使用 C++、C# 或 Visual Basic 的 UWP 应用,或使用 DirectX 和 C++) 的 UWP 应用。

如果事件参数本质上不公开应用所需的指针详细信息,则可以通过 PointerRoutedEventArgsGetCurrentPointGetIntermediatePoints 方法访问扩展指针数据。 使用这些方法可指定指针数据的上下文。

静态 PointerPoint 方法 GetCurrentPointGetIntermediatePoints 始终使用应用上下文。

GetIntermediatePoints(UInt32)

检索指定指针的位置和状态信息,从最后一个指针事件到并包括当前指针事件。

在大多数情况下,我们建议通过所选语言框架中指针事件处理程序的事件参数获取指针信息, (使用 JavaScript 的 Windows 应用、使用 C++、C# 或 Visual Basic 的 UWP 应用,或使用 DirectX 和 C++) 的 UWP 应用。

如果事件参数本质上不公开应用所需的指针详细信息,则可以通过 PointerRoutedEventArgsGetCurrentPointGetIntermediatePoints 方法访问扩展指针数据。 使用这些方法可指定指针数据的上下文。

静态 PointerPoint 方法 GetCurrentPoint 和 GetIntermediatePoints 始终使用应用上下文。

public:
 static IVector<PointerPoint ^> ^ GetIntermediatePoints(unsigned int pointerId);
/// [Windows.Foundation.Metadata.Overload("GetIntermediatePoints")]
 static IVector<PointerPoint> GetIntermediatePoints(uint32_t const& pointerId);
[Windows.Foundation.Metadata.Overload("GetIntermediatePoints")]
public static IList<PointerPoint> GetIntermediatePoints(uint pointerId);
function getIntermediatePoints(pointerId)
Public Shared Function GetIntermediatePoints (pointerId As UInteger) As IList(Of PointerPoint)

参数

pointerId
UInt32

unsigned int

uint32_t

指针的 ID。

返回

转换后的指针属性 (当前和历史) 。

属性

注解

GetIntermediatePoints 是一种静态方法。

此方法检索到的最新指针信息等效于 GetCurrentPoint 方法检索到的信息。

另请参阅

适用于

GetIntermediatePoints(UInt32, IPointerPointTransform)

检索指定指针的转换位置和状态信息,从最后一个指针事件到当前指针事件(包括)。

在大多数情况下,我们建议通过所选语言框架中指针事件处理程序的事件参数获取指针信息, (使用 JavaScript 的 Windows 应用、使用 C++、C# 或 Visual Basic 的 UWP 应用,或使用 DirectX 和 C++) 的 UWP 应用。

如果事件参数本质上不公开应用所需的指针详细信息,则可以通过 PointerRoutedEventArgsGetCurrentPointGetIntermediatePoints 方法访问扩展指针数据。 使用这些方法可指定指针数据的上下文。

静态 PointerPoint 方法 GetCurrentPointGetIntermediatePoints 始终使用应用上下文。

public:
 static IVector<PointerPoint ^> ^ GetIntermediatePoints(unsigned int pointerId, IPointerPointTransform ^ transform);
/// [Windows.Foundation.Metadata.Overload("GetIntermediatePointsTransformed")]
 static IVector<PointerPoint> GetIntermediatePoints(uint32_t const& pointerId, IPointerPointTransform const& transform);
[Windows.Foundation.Metadata.Overload("GetIntermediatePointsTransformed")]
public static IList<PointerPoint> GetIntermediatePoints(uint pointerId, IPointerPointTransform transform);
function getIntermediatePoints(pointerId, transform)
Public Shared Function GetIntermediatePoints (pointerId As UInteger, transform As IPointerPointTransform) As IList(Of PointerPoint)

参数

pointerId
UInt32

unsigned int

uint32_t

指针的 ID。

transform
IPointerPointTransform

要应用于指针的转换。

返回

转换后的指针属性 (当前和历史) 。

属性

注解

GetIntermediatePoints 是一种静态方法。

此方法可用于获取与特定元素相关的指针信息。

此方法检索到的最新指针信息等效于 GetCurrentPoint 方法检索到的信息。

另请参阅

适用于