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:  System.Windows.Ink
Assembly:  IAWinFX (in IAWinFX.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 überprüft, ob in der ContainsPropertyData-Methode eines AnalysisHintNode eine CustomRecognizerId existiert. Wenn das [F:System.Windows.Ink.PropertyGuidsForContextNodes. CustomRecognizerId]-Feld vorhanden ist, füllen die zurückgegebenen Eigenschaftsdaten des Typs GUID myCustomRcognizer auf.

' Get GUID for custom recognizer
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.CustomRecognizerId) Then

    Dim myCustomRecognizer 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

System.Windows.Ink-Namespace