Freigeben über


PropertyGuidsForContextNodes.CustomRecognizerId-Feld

Gibt die GUID (Globally Unique Identifier) zum Abrufen oder Festlegen der GUID an, die das benutzerdefinierte Freihanderkennungsmodul in einem benutzerdefinierten Erkennungsmodul darstellt.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

'Declaration
Public Shared ReadOnly CustomRecognizerId As Guid
'Usage
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

Hinweise

Stellt das benutzerdefinierte Freihanderkennungsmodul für einen ContextNode vom Typ CustomRecognizer dar.

Beispiele

Im folgenden Beispiel wird das CustomRecognizerId-Feld veranschaulicht.

' 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);
}

Plattformen

Windows Vista

.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.

Versionsinformationen

.NET Framework

Unterstützt in: 3.0

Siehe auch

Referenz

PropertyGuidsForContextNodes-Klasse

PropertyGuidsForContextNodes-Member

Microsoft.Ink-Namespace