Поделиться через


PropertyGuidsForAnalysisHints.Wordlist - поле

Обновлен: Ноябрь 2007

Specifies the globally unique identifier (GUID) for getting and setting the String array that represents the word list for an analysis hint.

Пространство имен:  System.Windows.Ink
Сборка:  IAWinFX (в IAWinFX.dll)

Синтаксис

'Декларация
Public Shared ReadOnly Wordlist As Guid
'Применение
Dim value As Guid

value = PropertyGuidsForAnalysisHints.Wordlist
public static readonly Guid Wordlist
public:
static initonly Guid Wordlist
public static final Guid Wordlist
public static final var Wordlist : Guid

Заметки

This field represents the word list on a ContextNode of type AnalysisHint. The word list is the list of words for the hint.

Примеры

The following example checks for an existing Wordlist in the ContainsPropertyData method of an AnalysisHintNode. If the Wordlist field exists, the returned array of type String populates myWordlist (Visual Basic) or myInkRecognizerGuideBaseByGuid (C#).

' Get the list of words in the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForAnalysisHints.Wordlist) Then

    Dim myInkRecognizerGuideBaseByGuid 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);
}

Платформы

Windows Vista

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

PropertyGuidsForAnalysisHints Класс

PropertyGuidsForAnalysisHints - члены

System.Windows.Ink - пространство имен