Partager via


AnalysisAlternate.RecognizedString, propriété

Mise à jour : November 2007

Obtient la valeur de chaîne reconnue de l'objet AnalysisAlternate.

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

Syntaxe

'Déclaration
Public ReadOnly Property RecognizedString As String
'Utilisation
Dim instance As AnalysisAlternate
Dim value As String

value = instance.RecognizedString
public string RecognizedString { get; }
public:
property String^ RecognizedString {
    String^ get ();
}
/** @property */
public String get_RecognizedString()
public function get RecognizedString () : String

Valeur de propriété

Type : System.String
Valeur de chaîne reconnue de l'objet AnalysisAlternate.

Exemples

L'exemple suivant appelle la méthodeGetAlternates sur un InkAnalyzer nommé theInkAnalyzer. Il parcourt ensuite en boucle le AnalysisAlternateCollection et remplit un [T:System.Windows.Controls.ListBox named]alternatesListBox avec toutes les propositions de substitution dont la valeur de InkRecognitionConfidence n'est pas Poor.

alternatesListBox.Items.Clear()
Me.currentAlternates = theInkAnalyzer.GetAlternates(selectedSubNodes)
Dim alternate As AnalysisAlternate
For Each alternate In  Me.currentAlternates
    ' Add only those that are not Poor confidence
    If alternate.InkRecognitionConfidence <> InkRecognitionConfidence.Poor Then
        alternatesListBox.Items.Add(alternate.RecognizedString)
    End If
Next alternate
alternatesListBox.Items.Clear();
this.currentAlternates = theInkAnalyzer.GetAlternates(selectedSubNodes);
foreach (AnalysisAlternate alternate in this.currentAlternates)
{
    alternatesListBox.Items.Add(alternate.RecognizedString);
    // Add only those that are not Poor confidence.
    if (alternate.InkRecognitionConfidence !=
        InkRecognitionConfidence.Poor)
    {
        alternatesListBox.Items.Add(alternate.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

AnalysisAlternate, classe

Membres AnalysisAlternate

System.Windows.Ink, espace de noms