StylusPoint.GetPropertyValue(StylusPointProperty) 方法

定义

返回指定的属性的值。

public:
 int GetPropertyValue(System::Windows::Input::StylusPointProperty ^ stylusPointProperty);
public int GetPropertyValue (System.Windows.Input.StylusPointProperty stylusPointProperty);
member this.GetPropertyValue : System.Windows.Input.StylusPointProperty -> int
Public Function GetPropertyValue (stylusPointProperty As StylusPointProperty) As Integer

参数

stylusPointProperty
StylusPointProperty

指定要获取的属性值的 StylusPointProperty

返回

指定 StylusPointProperty 的值。

例外

stylusPointProperty 不是 Description 中的一个属性。

示例

以下示例在获取属性值之前检查触笔点属性是否存在。 此示例假定有一个名为 StylusPointpoint

if (point.HasProperty(StylusPointProperties.PitchRotation))
{
    int pitchRotation = point.GetPropertyValue(StylusPointProperties.PitchRotation);
}
If point.HasProperty(StylusPointProperties.PitchRotation) Then
    Dim pitchRotation As Integer = _
            point.GetPropertyValue(StylusPointProperties.PitchRotation)
End If

注解

若要检查 是否StylusPoint包含指定的属性,请在调用 方法或 SetPropertyValue 方法之前调用 HasPropertyGetPropertyValue

适用于