PropertyGuidsForAnalysisHintsBase.Guide Field
Specifies the globally unique identifier (GUID) for getting and setting the InkRecognizerGuideBase that represents the guide for an analysis hint.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Shared ReadOnly Guide As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHintsBase.Guide
public static readonly Guid Guide
public:
static initonly Guid Guide
public static final var Guide : Guid
Remarks
This field represents the InkRecognizerGuideBase on a ContextNode of type AnalysisHint. Guides are the area in which ink is drawn and recognized.
Examples
The following example demonstrates the Guide field.
' Get guide for analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Guide) Then
Dim myGuide As InkRecognizerGuideBase = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Guide), InkRecognizerGuideBase)
End If
// Get guide for analysis hint
if (myAnalysisHintNode.ContainsPropertyData(PropertyGuidsForAnalysisHints.Guide))
{
InkRecognizerGuideBase myInkRecognizerGuideBaseByGuid =
(InkRecognizerGuideBase)myAnalysisHintNode.GetPropertyData(PropertyGuidsForAnalysisHints.Guide);
}
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
PropertyGuidsForAnalysisHintsBase Class