PropertyGuidsForAnalysisHintsBase.Wordlist Field
Specifies the globally unique identifier (GUID) for getting and setting the String array that represents the word list for an analysis hint.
Namespace: System.Windows.Ink.AnalysisCore
Assembly: IACore (in iacore.dll)
Syntax
'Declaration
Public Shared ReadOnly Wordlist As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHintsBase.Wordlist
public static readonly Guid Wordlist
public:
static initonly Guid Wordlist
public static final Guid Wordlist
public static final var Wordlist : Guid
Not applicable.
Remarks
This field represents the word list on a ContextNode of type AnalysisHint. The word list is the list of words for the hint.
Example
The following example demonstrates the Wordlist field.
' Get the list of words in the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Wordlist) Then
Dim myWordlist() As String = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Wordlist), String())
End If
// Get the list of words in the analysis hint
if (myAnalysisHintNode.ContainsPropertyData(PropertyGuidsForAnalysisHints.Wordlist))
{
string [] myInkRecognizerGuideBaseByGuid =
(string [])myAnalysisHintNode.GetPropertyData(PropertyGuidsForAnalysisHints.Wordlist);
}
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