PropertyGuidsForAnalysisHintsBase.Wordlist-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen des String-Array an, das die Wortliste für einen Analysehinweis darstellt.
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
Hinweise
Dieses Feld stellt die Wortliste auf einem ContextNode vom Typ AnalysisHint dar. Die Wortliste ist die Liste der Wörter für den Hinweis.
Beispiele
Im folgenden Beispiel wird das Wordlist-Feld veranschaulicht.
' 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);
}
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0
Siehe auch
Referenz
PropertyGuidsForAnalysisHintsBase-Klasse