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 var Wordlist : Guid
Remarks
This field represents the word list on a ContextNode of type AnalysisHint. The word list is the list of words for the hint.
Examples
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 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