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


InkAnalyzer.GetAlternates - метод

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

Returns up to 10 analysis alternates for all ink associated with the ink analyzer.

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

Синтаксис

'Декларация
Public Function GetAlternates As AnalysisAlternateCollection
'Применение
Dim instance As InkAnalyzer
Dim returnValue As AnalysisAlternateCollection

returnValue = instance.GetAlternates()
public AnalysisAlternateCollection GetAlternates()
public:
AnalysisAlternateCollection^ GetAlternates()
public AnalysisAlternateCollection GetAlternates()
public function GetAlternates() : AnalysisAlternateCollection

Возвращаемое значение

Тип: Microsoft.Ink.AnalysisAlternateCollection
Up to 10 of the top analysis alternates for all ink associated with the ink analyzer.

Заметки

The top alternate is returned as the first alternate of the collection. If there are more that 10 alternates, only the first 10 are returned.

Примеры

This example gets the top 10 alternates for all the ink associated with the InkAnalyzer, theInkAnalyzer. It then adds the recognized strings for the alternates to the System.Collections.Specialized.StringCollection, theAlternateStrings.

' Get analysis alternates for the ink analyzer and add the
' recognized strings to a string collection.
theAlternateCollection = Me.theInkAnalyzer.GetAlternates()
theAlternateStrings.Clear()
Dim theAlternate As Microsoft.Ink.AnalysisAlternate
For Each theAlternate In theAlternateCollection
    theAlternateStrings.Add(theAlternate.RecognizedString)
Next theAlternate
// Get analysis alternates for the ink analyzer and add the
// recognized strings to a string collection.
theAlternateCollection = this.theInkAnalyzer.GetAlternates();
theAlternateStrings.Clear();
foreach (Microsoft.Ink.AnalysisAlternate theAlternate
    in theAlternateCollection)
{
    theAlternateStrings.Add(theAlternate.RecognizedString);
}

Платформы

Windows Vista

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

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

.NET Framework

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

См. также

Ссылки

InkAnalyzer Класс

InkAnalyzer - члены

GetAlternates - перегрузка

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

Microsoft.Ink.AnalysisAlternate

Microsoft.Ink.AnalysisAlternateCollection