PropertyGuidsForAnalysisHintsBase.WordMode Field
Specifies the globally unique identifier (GUID) for getting and setting the Boolean value that represents the word mode of an analysis hint.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in IACore.dll)
Syntax
'Declaration
Public Shared ReadOnly WordMode As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHintsBase.WordMode
public static readonly Guid WordMode
public:
static initonly Guid WordMode
public static final var WordMode : Guid
Remarks
This field represents the word mode on a ContextNode of type AnalysisHint. Word mode determines whether the ink analyzer prioritizes single word recognition over multiple word recognition within the hint's area.
Examples
The following example demonstrates the WordMode field.
' Determine whether the ink analyzer prioritizes single word results over multiple word results
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.WordMode) Then
Dim myWordMode As Boolean = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.WordMode), Boolean)
End If
// Determine whether the ink analyzer prioritizes single word results over multiple word results
if (myAnalysisHintNode.ContainsPropertyData(PropertyGuidsForAnalysisHints.WordMode))
{
bool myInkRecognizerGuideBaseByGuid =
(bool)myAnalysisHintNode.GetPropertyData(PropertyGuidsForAnalysisHints.WordMode);
}
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