StylusPlugIn.IsActiveForInput 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
StylusPlugIn이 입력을 받아들일 수 있는지 여부를 가져옵니다.
public:
property bool IsActiveForInput { bool get(); };
public bool IsActiveForInput { get; }
member this.IsActiveForInput : bool
Public ReadOnly Property IsActiveForInput As 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 입력을 사용 합니다.
합니다 StylusPlugIn 의 구성원임을 StylusPlugInCollection합니다.
합니다 Element 의 StylusPlugIn 표시 되 고 사용 합니다.