InkAnalyzer.GetAlternates, méthode (ContextNodeCollection)
Mise à jour : November 2007
Retourne un AnalysisAlternateCollection qui contient jusqu'à 10 propositions de substitution pour les nœuds d'un ContextNodeCollection spécifié.
Espace de noms : System.Windows.Ink
Assembly : IAWinFX (dans IAWinFX.dll)
Syntaxe
'Déclaration
Public Function GetAlternates ( _
nodes As ContextNodeCollection _
) As AnalysisAlternateCollection
'Utilisation
Dim instance As InkAnalyzer
Dim nodes As ContextNodeCollection
Dim returnValue As AnalysisAlternateCollection
returnValue = instance.GetAlternates(nodes)
public AnalysisAlternateCollection GetAlternates(
ContextNodeCollection nodes
)
public:
AnalysisAlternateCollection^ GetAlternates(
ContextNodeCollection^ nodes
)
public AnalysisAlternateCollection GetAlternates(
ContextNodeCollection nodes
)
public function GetAlternates(
nodes : ContextNodeCollection
) : AnalysisAlternateCollection
Paramètres
- nodes
Type : System.Windows.Ink.ContextNodeCollection
Valeur de retour
Type : System.Windows.Ink.AnalysisAlternateCollection
10 premières propositions de substitution (au maximum) d'analyse pour nodes.
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.
Les objets ContextNode dans nodes ne doivent pas nécessairement représenter des zones adjacentes du document.
Pour chaque indication d'analyse dans nodes, le InkAnalyzer retourne uniquement la meilleure proposition de substitution.
Exemples
Cet exemple obtient les 10 meilleures propositions de substitution pour les ContextNodeCollection, nommés theContextNodes, associés au InkAnalyzer, theInkAnalyzer). Il ajoute les chaînes reconnues pour les propositions de substitution au StringCollection nommé theAlternateStrings.
' Get analysis alternates for the context node collection and add the
' recognized strings to a string collection.
theAlternateCollection = Me.theInkAnalyzer.GetAlternates(theContextNodes)
theAlternateStrings.Clear()
For Each theAlternate As AnalysisAlternate In theAlternateCollection
theAlternateStrings.Add(theAlternate.RecognizedString)
Next theAlternate
// Get analysis alternates for the context node collection and add the
// recognized strings to a string collection.
theAlternateCollection = this.theInkAnalyzer.GetAlternates(theContextNodes);
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
System.Windows.Ink.AnalysisAlternate
System.Windows.Ink.AnalysisAlternateCollection