Share via


PropertyGuidsForContextNodesBase.CustomRecognizerId Field

Specifies the globally unique identifier (GUID) for getting or setting the GUID that represents the custom ink recognizer on a custom recognizer.

Namespace:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Syntax

'Declaration
Public Shared ReadOnly CustomRecognizerId As Guid
'Usage
Dim value As Guid 

value = PropertyGuidsForContextNodesBase.CustomRecognizerId
public static readonly Guid CustomRecognizerId
public:
static initonly Guid CustomRecognizerId
public static final var CustomRecognizerId : Guid

Remarks

Represents the custom ink recognizer on a ContextNode of type CustomRecognizer.

Examples

The following example demonstrates the CustomRecognizerId field.

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

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

PropertyGuidsForContextNodesBase Class

PropertyGuidsForContextNodesBase Members

System.Windows.Ink.AnalysisCore Namespace