共用方式為


IStylusAsyncPlugin.DataInterest 屬性

取得值,這個值會定義外掛程式所需的資料告知集合。

命名空間:  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
DataInterestMask 值的位元組合,定義資料告知集合。

範例

在這個 C# 範例中,會示範外掛程式內 DataInterest 屬性的實作。這個外掛程式需要透過 PacketsError 方法接收告知。

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

平台

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求

版本資訊

.NET Framework

支援版本:3.0

請參閱

參考

IStylusAsyncPlugin 介面

IStylusAsyncPlugin 成員

Microsoft.StylusInput 命名空間

DataInterestMask