다음을 통해 공유


StylusPlugIn.IsActiveForInput 속성

정의

StylusPlugIn이 입력을 받아들일 수 있는지 여부를 가져옵니다.

public:
 property bool IsActiveForInput { bool get(); };
public bool IsActiveForInput { get; }
member this.IsActiveForInput : bool
Public ReadOnly Property IsActiveForInput As Boolean

속성 값

Boolean

StylusPlugIn이 입력을 받아들일 수 있으면 true이고, 그렇지 않으면 false입니다.

예제

다음 예제에서는 재정의 하는 방법에 설명 합니다 OnIsActiveForInputChanged 메서드.

protected override void OnIsActiveForInputChanged()
{
    base.OnIsActiveForInputChanged();

    if (!this.IsActiveForInput)
    {
        // Clean up any resources the plug-in uses.
    }
    else
    {
        // Allocate the resources the plug-in uses.
    }
}
Protected Overrides Sub OnIsActiveForInputChanged()

    MyBase.OnIsActiveForInputChanged()

    If Not Me.IsActiveForInput Then
        ' Clean up any resources the plug-in uses.
    Else
        ' Allocate the resources the plug-in uses.
    End If

End Sub

설명

다음 조건을 만족 해야 합니다는 StylusPlugIn 입력을 사용 합니다.

적용 대상