StylusPointDescription.AreCompatible 메서드

정의

지정된 StylusPointDescription 개체가 동일한지 여부를 나타내는 값을 반환합니다.

public:
 static bool AreCompatible(System::Windows::Input::StylusPointDescription ^ stylusPointDescription1, System::Windows::Input::StylusPointDescription ^ stylusPointDescription2);
public static bool AreCompatible (System.Windows.Input.StylusPointDescription stylusPointDescription1, System.Windows.Input.StylusPointDescription stylusPointDescription2);
static member AreCompatible : System.Windows.Input.StylusPointDescription * System.Windows.Input.StylusPointDescription -> bool
Public Shared Function AreCompatible (stylusPointDescription1 As StylusPointDescription, stylusPointDescription2 As StylusPointDescription) As Boolean

매개 변수

stylusPointDescription1
StylusPointDescription

확인할 첫 번째 StylusPointDescription입니다.

stylusPointDescription2
StylusPointDescription

확인할 두 번째 StylusPointDescription입니다.

반환

StylusPointDescription 개체가 동일하면 true이고, 그렇지 않으면 false입니다.

예제

다음 예제에서는 두 검사 StylusPointDescription 개체는 호환 됩니다.

StylusPointDescription description1 =
      new StylusPointDescription(new StylusPointPropertyInfo[]
                    {
                        new StylusPointPropertyInfo(StylusPointProperties.X),
                        new StylusPointPropertyInfo(StylusPointProperties.Y),
                        new StylusPointPropertyInfo(StylusPointProperties.NormalPressure),
                        new StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation),
                        new StylusPointPropertyInfo(StylusPointProperties.YTiltOrientation),
                        new StylusPointPropertyInfo(StylusPointProperties.BarrelButton)
                    });

StylusPointDescription description2 =
      new StylusPointDescription(new StylusPointPropertyInfo[]
                    {
                        new StylusPointPropertyInfo(StylusPointProperties.X),
                        new StylusPointPropertyInfo(StylusPointProperties.Y),
                        new StylusPointPropertyInfo(StylusPointProperties.NormalPressure),
                        new StylusPointPropertyInfo(StylusPointProperties.BarrelButton)
                    });
Dim description1 As New StylusPointDescription( _
    New StylusPointPropertyInfo() {New StylusPointPropertyInfo(StylusPointProperties.X), _
                                   New StylusPointPropertyInfo(StylusPointProperties.Y), _
                                   New StylusPointPropertyInfo(StylusPointProperties.NormalPressure), _
                                   New StylusPointPropertyInfo(StylusPointProperties.XTiltOrientation), _
                                   New StylusPointPropertyInfo(StylusPointProperties.YTiltOrientation), _
                                   New StylusPointPropertyInfo(StylusPointProperties.BarrelButton)})

Dim description2 As New StylusPointDescription( _
    New StylusPointPropertyInfo() {New StylusPointPropertyInfo(StylusPointProperties.X), _
                                   New StylusPointPropertyInfo(StylusPointProperties.Y), _
                                   New StylusPointPropertyInfo(StylusPointProperties.NormalPressure), _
                                   New StylusPointPropertyInfo(StylusPointProperties.BarrelButton)})
if (StylusPointDescription.AreCompatible(description1, description2))
{
    MessageBox.Show("The two descriptions are compatible.");
}
else
{
    MessageBox.Show("The two descriptions are not compatible.");
}
If StylusPointDescription.AreCompatible(description1, description2) Then
    MessageBox.Show("The two descriptions are compatible.")
Else
    MessageBox.Show("The two descriptions are not compatible.")
End If

설명

StylusPointDescription 개체는 동일한 포함 하는 경우에 호환 가능한 StylusPointPropertyInfo 개체 순서에서.

적용 대상