Condividi tramite


Proprietà IStylusSyncPlugin.DataInterest

Aggiornamento: novembre 2007

Ottiene un valore che viene utilizzato per definire il set di notifiche dati necessarie per il plug-in.

Spazio dei nomi:  Microsoft.StylusInput
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Sintassi

'Dichiarazione
ReadOnly Property DataInterest As DataInterestMask
'Utilizzo
Dim instance As IStylusSyncPlugin
Dim value As DataInterestMask

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

Valore proprietà

Tipo: Microsoft.StylusInput.DataInterestMask
Combinazione bit per bit dei valori DataInterestMask che definisce il set di notifiche dati.

Esempi

In questo esempio C# viene illustrata l'implementazione della proprietà DataInterest in un plug-in. Questo plug-in richiede notifiche tramite i metodi Packets e Error.

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

Piattaforme

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

IStylusSyncPlugin Interfaccia

Membri IStylusSyncPlugin

Spazio dei nomi Microsoft.StylusInput

DataInterestMask