PenInputPanel.Busy 속성
업데이트: 2007년 11월
사용되지 않습니다. PenInputPanel 개체가 현재 잉크를 처리하고 있는지를 나타내는 부울 값을 가져옵니다. PenInputPanel은 Microsoft.Ink.TextInput으로 대체되었습니다.
네임스페이스: Microsoft.Ink
어셈블리: Microsoft.Ink(Microsoft.Ink.dll)
구문
‘선언
Public ReadOnly Property Busy As Boolean
‘사용 방법
Dim instance As PenInputPanel
Dim value As Boolean
value = instance.Busy
public bool Busy { get; }
public:
property bool Busy {
bool get ();
}
/** @property */
public boolean get_Busy()
public function get Busy () : boolean
속성 값
형식: System.Boolean
PenInputPanel 개체가 현재 잉크를 처리하고 있는지 여부입니다.
값 |
의미 |
---|---|
true |
PenInputPanel 개체가 현재 잉크를 처리하고 있습니다. |
false |
PenInputPanel 개체가 현재 잉크를 처리하고 있지 않습니다. |
설명
보안 정보: |
---|
부분 신뢰 환경에서 사용하는 경우 이 속성에 SecurityPermissionFlag.AllFlags 권한 및 PenInputPanel에서 요구하는 권한이 필요합니다. 자세한 내용은 Security and Trust를 참조하십시오. |
예제
이 C# 예제에서는 단추 클릭 이벤트인 theButton_Click에 대한 이벤트 처리기를 만듭니다. 단추 클릭을 통한 작업을 처리하기 전에 처리기는 PenInputPanel 개체인 thePenInputPanel이 잉크를 처리하고 있는지를 확인합니다. 개체가 잉크를 처리하고 있는 경우 이벤트 처리기는 CommitPendingInput 메서드를 호출하여 작업을 진행하기 전에 PenInputPanel 개체가 잉크 처리를 완료하도록 합니다.
[C#]
//...
private void theButton_Click(object sender, System.EventArgs e)
{
// If the PenInputPanel is still processing ink...
if (thePenInputPanel.Busy)
{
// Force the PenInputPanel to commit user input
thePenInputPanel.CommitPendingInput();
}
// Process the action from the button click
//...
}
이 Microsoft® Visual Basic® .NET 예제에서는 단추
클릭 이벤트인 theButton_Click에 대한 이벤트 처리기를 만듭니다. 단추 클릭을 통한 작업을 처리하기 전에 처리기는 PenInputPanel 개체인 thePenInputPanel이 잉크를 처리하고 있는지를 확인합니다. 개체가 잉크를 처리하고 있는 경우 이벤트 처리기는 CommitPendingInput 메서드를 호출하여 작업을 진행하기 전에 PenInputPanel 개체가 잉크 처리를 완료하도록 합니다.
[Visual Basic]
'...
Private Sub theButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) _
Handles theButton.Click
' If the PenInputPanel is still processing ink...
If thePenInputPanel.Busy Then
' Force the PenInputPanel to commit user input
thePenInputPanel.CommitPendingInput()
End If
' Process the action from the button click
'...
End Sub
플랫폼
Windows Vista
.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.
버전 정보
.NET Framework
3.0에서 지원