PenInputPanel.Busy プロパティ

使用されていません。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 オブジェクトは、現在インクを処理していません。

解説

ms571975.alert_security(ja-jp,VS.90).gifセキュリティに関するメモ :

部分信頼で使用している場合、このプロパティには PenInputPanel により必要とされるアクセス許可に加えて、SecurityPermissionFlag.AllFlags アクセス許可が必要です。詳細については、「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

参照

参照

PenInputPanel クラス

PenInputPanel メンバ

Microsoft.Ink 名前空間

PenInputPanel.CommitPendingInput