StylusPlugIn.IsActiveForInput Свойство

Определение

Возвращает значение, указывающее, может ли StylusPlugIn принимать ввод.

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

Значение свойства

Boolean

true, если StylusPlugIn может принимать ввод; в противном случае — false.

Примеры

В следующем примере показано, как переопределить 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

Комментарии

Чтобы принять входные данные, необходимо выполнить StylusPlugIn следующие условия:

Применяется к