PropertyGuidsForContextNodes.CustomRecognizerId 欄位
指定用於取得或設定表示自訂辨識器上自訂筆墨辨識器之 GUID 的全域唯一識別項 (GUID)。
命名空間: Microsoft.Ink
組件: Microsoft.Ink.Analysis (在 Microsoft.Ink.Analysis.dll 中)
語法
'宣告
Public Shared ReadOnly CustomRecognizerId As Guid
'用途
Dim value As Guid
value = PropertyGuidsForContextNodes.CustomRecognizerId
public static readonly Guid CustomRecognizerId
public:
static initonly Guid CustomRecognizerId
public static final Guid CustomRecognizerId
public static final var CustomRecognizerId : Guid
備註
表示 CustomRecognizer 型別之 ContextNode 上的自訂筆墨辨識器。
範例
下列範例示範 CustomRecognizerId 欄位。
' Get GUID for custom recognizer
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForContextNodes.CustomRecognizerId) Then
Dim myCustomRecognizerId As Guid = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForContextNodes.CustomRecognizerId), Guid)
End If
// Get GUID for custom recognizer
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForContextNodes.CustomRecognizerId))
{
Guid myCustomRecognizer =
(Guid)myAnalysisHintNode.GetPropertyData(
PropertyGuidsForContextNodes.CustomRecognizerId);
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
PropertyGuidsForContextNodes 類別