Partager via


InkAnalyzer.GetAlternates, méthode (ContextNodeCollection, Int32)

Mise à jour : November 2007

Retourne un AnalysisAlternateCollection qui contient au maximum le nombre spécifié de propositions de substitution pour les nœuds stockés dans un ContextNodeCollection.

Espace de noms :  System.Windows.Ink
Assembly :  IAWinFX (dans IAWinFX.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

  • maximumAlternates
    Type : System.Int32
    Nombre de propositions de substitution d'analyse à retourner.

Valeur de retour

Type : System.Windows.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 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 5 meilleures propositions de substitution pour le ContextNodeCollection, nommé theContextNodes, associé à un InkAnalyzer nommé theInkAnalyzer. Il ajoute les chaînes reconnues pour les propositions de substitution au StringCollection nommé theAlternateStrings.

' 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()

For Each theAlternate As AnalysisAlternate 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 (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

InkAnalyzer, classe

Membres InkAnalyzer

GetAlternates, surcharge

System.Windows.Ink, espace de noms

System.Windows.Ink.AnalysisAlternate

System.Windows.Ink.AnalysisAlternateCollection

System.Windows.Ink.ContextNode

System.Windows.Ink.ContextNodeCollection