InkAnalyzer.GetAlternates, méthode
Mise à jour : November 2007
Retourne jusqu'à 10 propositions de substitution d'analyse pour toute l'entrée manuscrite associée à l'analyseur d'entrée manuscrite.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)
Syntaxe
'Déclaration
Public Function GetAlternates As AnalysisAlternateCollection
'Utilisation
Dim instance As InkAnalyzer
Dim returnValue As AnalysisAlternateCollection
returnValue = instance.GetAlternates()
public AnalysisAlternateCollection GetAlternates()
public:
AnalysisAlternateCollection^ GetAlternates()
public AnalysisAlternateCollection GetAlternates()
public function GetAlternates() : AnalysisAlternateCollection
Valeur de retour
Type : Microsoft.Ink.AnalysisAlternateCollection
10 premières propositions de substitution d'analyse (au maximum) pour toutes les entrées manuscrites associées à l'analyseur d'entrée manuscrite.
Notes
La meilleure proposition de substitution est retournée en tant que première proposition de substitution de la collection. S'il existe plus de 10 propositions de substitution, seules les 10 premières sont retournées.
Exemples
Cet exemple obtient les 10 meilleures propositions de substitution pour toute l'entrée manuscrite associée au InkAnalyzer, theInkAnalyzer. Les chaînes reconnues pour les propositions de substitution de System.Collections.Specialized.StringCollection (page pouvant être en anglais), theAlternateStrings sont ensuite ajoutées.
' 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);
}
Plateformes
Windows Vista
Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.
Informations de version
.NET Framework
Pris en charge dans : 3.0