PropertyGuidsForContextNodes.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: 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 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 Server 2008 R2, Windows Server 2008
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
PropertyGuidsForContextNodes Class