Partager via


InkAnalyzer.GetAlternates, méthode (StrokeCollection)

Mise à jour : November 2007

Retourne un AnalysisAlternateCollection qui contient jusqu'à 10 propositions de substitution pour les traits spécifiés.

Espace de noms :  System.Windows.Ink
Assembly :  IAWinFX (dans IAWinFX.dll)

Syntaxe

'Déclaration
Public Function GetAlternates ( _
    strokes As StrokeCollection _
) As AnalysisAlternateCollection
'Utilisation
Dim instance As InkAnalyzer
Dim strokes As StrokeCollection
Dim returnValue As AnalysisAlternateCollection

returnValue = instance.GetAlternates(strokes)
public AnalysisAlternateCollection GetAlternates(
    StrokeCollection strokes
)
public:
AnalysisAlternateCollection^ GetAlternates(
    StrokeCollection^ strokes
)
public AnalysisAlternateCollection GetAlternates(
    StrokeCollection strokes
)
public function GetAlternates(
    strokes : StrokeCollection
) : AnalysisAlternateCollection

Paramètres

Valeur de retour

Type : System.Windows.Ink.AnalysisAlternateCollection
10 premières propositions de substitution (au maximum) d'analyse pour strokes.

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 Stroke dans strokes ne doivent pas nécessairement représenter des zones adjacentes du document.

Exemples

Cet exemple obtient les 10 meilleures propositions de substitution pour les StrokeCollection, nommés theStrokes, associés au InkAnalyzer nommé theInkAnalyzer. Il ajoute les chaînes reconnues pour les propositions de substitution au StringCollection (theAlternateStrings).

' Get analysis alternates for the strokes collection and add the
' recognized strings to a string collection.
theAlternateCollection = Me.theInkAnalyzer.GetAlternates(theStrokes)
theAlternateStrings.Clear()

For Each theAlternate As AnalysisAlternate In theAlternateCollection
    theAlternateStrings.Add(theAlternate.RecognizedString)
Next theAlternate
// Get analysis alternates for the strokes collection and add the
// recognized strings to a string collection.
theAlternateCollection = this.theInkAnalyzer.GetAlternates(theStrokes);
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.Stroke

System.Windows.Ink.StrokeCollection