Partilhar via


StylusPlugIn.IsActiveForInput Propriedade

Definição

Obtém se o StylusPlugIn pode aceitar a entrada.

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

Valor da propriedade

Boolean

true se for StylusPlugIn capaz de aceitar a entrada; caso contrário false.

Exemplos

O exemplo a seguir demonstra como substituir o OnIsActiveForInputChanged método.

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

Comentários

As seguintes condições devem ser atendidas para que a StylusPlugIn entrada seja aceita:

Aplica-se a