StylusPoint.HasProperty(StylusPointProperty) メソッド

定義

現在の StylusPoint に指定したプロパティが含まれているかどうかを返します。

public:
 bool HasProperty(System::Windows::Input::StylusPointProperty ^ stylusPointProperty);
public bool HasProperty (System.Windows.Input.StylusPointProperty stylusPointProperty);
member this.HasProperty : System.Windows.Input.StylusPointProperty -> bool
Public Function HasProperty (stylusPointProperty As StylusPointProperty) As Boolean

パラメーター

stylusPointProperty
StylusPointProperty

StylusPointProperty でのチェック対象となる StylusPoint

戻り値

指定した StylusPointProperty が現在の StylusPoint にある場合は true。それ以外の場合は false

次の例では、プロパティの値を取得する前に、スタイラス ポイント プロパティの存在を確認します。 この例では、 と呼ばれる pointがあることをStylusPoint前提としています。

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チェックするには、 メソッドまたは メソッドを呼び出す前に をGetPropertyValueSetPropertyValue呼び出HasPropertyします。

適用対象