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 Guid Guide
public static final var Guide : Guid
Not applicable.
Remarks
This field represents the InkRecognizerGuideBase on a ContextNode of type AnalysisHint. Guides are the area in which ink is drawn and recognized.
Example
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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
PropertyGuidsForAnalysisHintsBase Class
PropertyGuidsForAnalysisHintsBase Members
System.Windows.Ink.AnalysisCore Namespace