Sdílet prostřednictvím


StylusPlugIn.OnIsActiveForInputChanged Metoda

Definice

Vyvolá se při IsActiveForInput změně vlastnosti.

protected:
 virtual void OnIsActiveForInputChanged();
protected virtual void OnIsActiveForInputChanged ();
abstract member OnIsActiveForInputChanged : unit -> unit
override this.OnIsActiveForInputChanged : unit -> unit
Protected Overridable Sub OnIsActiveForInputChanged ()

Příklady

Následující příklad ukazuje, jak přepsat metodu 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

Poznámky

OnIsActiveForInputChanged K přidělení a vyčištění prostředků používaných nástrojem použijte metodu StylusPlugIn.

Platí pro