Udostępnij za pośrednictwem


StylusPlugIn.IsActiveForInput Właściwość

Definicja

Pobiera, czy StylusPlugIn jest w stanie zaakceptować dane wejściowe.

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

Wartość właściwości

Boolean

true jeśli element StylusPlugIn jest w stanie zaakceptować dane wejściowe; w przeciwnym razie false.

Przykłady

W poniższym przykładzie pokazano, jak zastąpić metodę 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

Uwagi

Aby zaakceptować dane wejściowe, należy spełnić StylusPlugIn następujące warunki:

Dotyczy