AnalysisAlternate.RecognizedString, propriété
Mise à jour : November 2007
Obtient la valeur de chaîne reconnue de l'objet AnalysisAlternate.
Espace de noms : Microsoft.Ink
Assembly : Microsoft.Ink.Analysis (dans Microsoft.Ink.Analysis.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éthode GetAlternates sur un InkAnalyzer, theInkAnalyzer. Il parcourt en boucle le AnalysisAlternateCollection et remplit un ListBox, alternatesListBox, avec toutes les propositions de substitution dont la valeur de InkRecognitionConfidence n'est pas Poor.
alternatesListBox.Items.Clear()
' ContextNodeCollection selectedSubNodes is obtained via
' DirectCast(theInkAnalyzer.RootNode, RootNode).GetNodesFromTextRange(selStart, selLength);
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 <> _
Microsoft.Ink.InkRecognitionConfidence.Poor Then
alternatesListBox.Items.Add(alternate.RecognizedString)
End If
Next alternate
alternatesListBox.Items.Clear();
// ContextNodeCollection selectedSubNodes is obtained via
// ((RootNode)theInkAnalyzer.RootNode).GetNodesFromTextRange(ref selStart, ref selLength);
this.currentAlternates = theInkAnalyzer.GetAlternates(selectedSubNodes);
foreach (AnalysisAlternate alternate in this.currentAlternates)
{
// Add only those that are not Poor confidence
if (alternate.InkRecognitionConfidence !=
Microsoft.Ink.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