InkAnalyzer.GetAlternates, méthode (ContextNodeCollection, Int32)
Mise à jour : November 2007
Retourne au maximum le nombre spécifié de propositions de substitution d'analyse pour les nœuds d'un ContextNodeCollection spécifié.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)
Syntaxe
'Déclaration
Public Function GetAlternates ( _
nodes As ContextNodeCollection, _
maximumAlternates As Integer _
) As AnalysisAlternateCollection
'Utilisation
Dim instance As InkAnalyzer
Dim nodes As ContextNodeCollection
Dim maximumAlternates As Integer
Dim returnValue As AnalysisAlternateCollection
returnValue = instance.GetAlternates(nodes, _
maximumAlternates)
public AnalysisAlternateCollection GetAlternates(
ContextNodeCollection nodes,
int maximumAlternates
)
public:
AnalysisAlternateCollection^ GetAlternates(
ContextNodeCollection^ nodes,
int maximumAlternates
)
public AnalysisAlternateCollection GetAlternates(
ContextNodeCollection nodes,
int maximumAlternates
)
public function GetAlternates(
nodes : ContextNodeCollection,
maximumAlternates : int
) : AnalysisAlternateCollection
Paramètres
- nodes
Type : Microsoft.Ink.ContextNodeCollection
Nœuds pour lesquels obtenir des propositions de substitution d'analyse.
- maximumAlternates
Type : System.Int32
Nombre de propositions de substitution d'analyse à retourner.
Valeur de retour
Type : Microsoft.Ink.AnalysisAlternateCollection
maximumAlternates premières propositions de substitution d'analyse pour nodes.
Notes
La meilleure proposition de substitution est retournée en tant que première proposition de substitution de la collection.
Les objets ContextNode dans nodes ne doivent pas représenter des zones adjacentes du document.
Pour chaque indication d'analyse dans nodes, InkAnalyzer retourne uniquement la meilleure proposition de substitution.
Exemples
Cet exemple obtient les 5 meilleures propositions de substitution pour le ContextNodeCollection, theContextNodes, associé 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 5 analysis alternates for the context node collection and add the
' recognized strings to a string collection.
theAlternateCollection = Me.theInkAnalyzer.GetAlternates(theContextNodes, 5)
theAlternateStrings.Clear()
Dim theAlternate As Microsoft.Ink.AnalysisAlternate
For Each theAlternate In theAlternateCollection
theAlternateStrings.Add(theAlternate.RecognizedString)
Next theAlternate
// Get 5 analysis alternates for the context node collection and add the
// recognized strings to a string collection.
theAlternateCollection = this.theInkAnalyzer.GetAlternates(theContextNodes, 5);
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
Voir aussi
Référence
Microsoft.Ink.AnalysisAlternate