AnalysisAlternate.RecognizedString Property
Gets the recognized string value of the AnalysisAlternate object.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in microsoft.ink.analysis.dll)
Syntax
'Declaration
Public ReadOnly Property RecognizedString As String
'Usage
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
Not applicable.
Property Value
The recognized string value of the AnalysisAlternate object.
Example
The following example calls GetAlternates on an InkAnalyzer, theInkAnalyzer
. It then loops through the AnalysisAlternateCollection and populates a ListBox, alternatesListBox
, with all of the alternates that do not have an InkRecognitionConfidence value of 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 <> _
Microsoft.Ink.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)
{
// Add only those that are not Poor confidence
if (alternate.InkRecognitionConfidence !=
Microsoft.Ink.InkRecognitionConfidence.Poor)
{
alternatesListBox.Items.Add(alternate.RecognizedString);
}
}
Platforms
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
AnalysisAlternate Class
AnalysisAlternate Members
Microsoft.Ink Namespace