Partager via


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

Mise à jour : November 2007

Retourne le nombre spécifié de propositions de substitution d'analyse (au maximum) pour les traits spécifiés.

Espace de noms :  Microsoft.Ink
Assembly :  Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.dll)

Syntaxe

'Déclaration
Public Function GetAlternates ( _
    strokes As Strokes, _
    maximumAlternates As Integer _
) As AnalysisAlternateCollection
'Utilisation
Dim instance As InkAnalyzer
Dim strokes As Strokes
Dim maximumAlternates As Integer
Dim returnValue As AnalysisAlternateCollection

returnValue = instance.GetAlternates(strokes, _
    maximumAlternates)
public AnalysisAlternateCollection GetAlternates(
    Strokes strokes,
    int maximumAlternates
)
public:
AnalysisAlternateCollection^ GetAlternates(
    Strokes^ strokes, 
    int maximumAlternates
)
public AnalysisAlternateCollection GetAlternates(
    Strokes strokes,
    int maximumAlternates
)
public function GetAlternates(
    strokes : Strokes, 
    maximumAlternates : int
) : AnalysisAlternateCollection

Paramètres

  • strokes
    Type : Microsoft.Ink.Strokes
    Traits 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 strokes.

Notes

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

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

Exemples

Cet exemple obtient jusqu'à cinq des meilleures propositions de substitution pour le Strokes, theStrokes, associé au InkAnalyzer, theInkAnalyzer. Il ajoute ensuite les chaînes reconnues pour les propositions de substitution au System.Collections.Specialized.StringCollection (page pouvant être en anglais), 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()
Dim theAlternate As Microsoft.Ink.AnalysisAlternate
For Each theAlternate 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 (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

InkAnalyzer, classe

Membres InkAnalyzer

GetAlternates, surcharge

Microsoft.Ink, espace de noms

Microsoft.Ink.AnalysisAlternate

Microsoft.Ink.AnalysisAlternateCollection

Microsoft.Ink.Stroke

Microsoft.Ink.Strokes