Поделиться через


IStylusAsyncPlugin.DataInterest - свойство

Обновлен: Ноябрь 2007

Gets a value that defines the set of data notifications that the plug-in requires.

Пространство имен:  Microsoft.StylusInput
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
ReadOnly Property DataInterest As DataInterestMask
'Применение
Dim instance As IStylusAsyncPlugin
Dim value As DataInterestMask

value = instance.DataInterest
DataInterestMask DataInterest { get; }
property DataInterestMask DataInterest {
    DataInterestMask get ();
}
/** @property */
DataInterestMask get_DataInterest()
function get DataInterest () : DataInterestMask

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

Тип: Microsoft.StylusInput.DataInterestMask
A bitwise combination of the DataInterestMask values that defines the set of data notifications.

Примеры

This C# example shows the implentation of the DataInterest property in a plug-in. This plug-in requires notifications through the Packets and Error methods.

public DataInterestMask DataInterest
{
    get
    {
        return DataInterestMask.Packets |
               DataInterestMask.Error;
    }
}

Платформы

Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

IStylusAsyncPlugin Интерфейс

IStylusAsyncPlugin - члены

Microsoft.StylusInput - пространство имен

DataInterestMask