StylusPoint.GetPropertyValue(StylusPointProperty) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回指定的属性的值。
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 中的一个属性。
示例
以下示例在获取属性值之前检查触笔点属性是否存在。 此示例假定有一个名为 StylusPoint 的 point
。
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 。