Partager via


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

Mise à jour : November 2007

Retourne un AnalysisAlternateCollection qui contient au maximum le nombre spécifié de propositions de substitution d'analyse 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, _
    maximumAlternates As Integer _
) As AnalysisAlternateCollection
'Utilisation
Dim instance As InkAnalyzer
Dim strokes As StrokeCollection
Dim maximumAlternates As Integer
Dim returnValue As AnalysisAlternateCollection

returnValue = instance.GetAlternates(strokes, _
    maximumAlternates)
public AnalysisAlternateCollection GetAlternates(
    StrokeCollection strokes,
    int maximumAlternates
)
public:
AnalysisAlternateCollection^ GetAlternates(
    StrokeCollection^ strokes, 
    int maximumAlternates
)
public AnalysisAlternateCollection GetAlternates(
    StrokeCollection strokes,
    int maximumAlternates
)
public function GetAlternates(
    strokes : StrokeCollection, 
    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 strokes.

Notes

La meilleure proposition de substitution est retournée en tant que première proposition de substitution de la collection.

Les objets Stroke stockés dans strokes ne doivent pas nécessairement représenter des zones adjacentes du document.

Exemples

Cet exemple obtient jusqu'à 5 des meilleures propositions de substitution pour le StrokeCollection, nommé theStrokes, associé au InkAnalyzer (nommé theInkAnalyzer). Il ajoute ensuite les chaînes reconnues pour les propositions de substitution au StringCollection nommé theAlternateStrings.

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

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

System.Windows.Ink.StrokeCollection