InkAnalyzer.GetAlternates, méthode
Mise à jour : November 2007
Retourne un AnalysisAlternateCollection qui contient jusqu'à 10 propositions de substitution d'analyse pour toute l'entrée manuscrite associée à l'analyseur d'entrée manuscrite.
Espace de noms : System.Windows.Ink
Assembly : IAWinFX (dans IAWinFX.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 : System.Windows.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.
Exemples
Cet exemple obtient les 10 meilleures propositions de substitution pour toute l'entrée manuscrite associée au InkAnalyzer nommé theInkAnalyzer. Il ajoute les chaînes reconnues pour les propositions de substitution au StringCollection nommé theAlternateStrings.
' Get analysis alternates for the ink analyzer and add the
' recognized strings to a string collection.
theAlternateCollection = Me.theInkAnalyzer.GetAlternates()
theAlternateStrings.Clear()
For Each theAlternate As AnalysisAlternate 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 (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
Voir aussi
Référence
System.Windows.Ink, espace de noms