获取 AnalysisAlternateBase 对象的已识别字符串值。
命名空间: System.Windows.Ink.AnalysisCore
程序集: IACore(在 IACore.dll 中)
语法
声明
Public ReadOnly Property RecognizedString As String
用法
Dim instance As AnalysisAlternateBase
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
属性值
类型:System.String
AnalysisAlternateBase 对象的已识别字符串值。
示例
下面的示例对名为 theInkAnalyzerBase 的 InkAnalyzerBase 调用 GetAlternates。然后,此示例遍历 AnalysisAlternateBaseCollection,并使用其 InkRecognitionConfidence 值不为 Poor 的所有备选项填充 ListBox (alternatesListBox)。
alternatesListBox.Items.Clear()
Me.currentAlternates = theInkAnalyzerBase.GetAlternates(selectedSubNodes)
Dim alternate As AnalysisAlternateBase
For Each alternate In Me.currentAlternates
' Add only those that are not Poor confidence
If alternate.InkRecognitionConfidence <> System.Windows.Ink.AnalysisCore.InkRecognitionConfidence.Poor Then
alternatesListBox.Items.Add(alternate.RecognizedString)
End If
Next alternate
alternatesListBox.Items.Clear();
this.currentAlternates = theInkAnalyzerBase.GetAlternates(selectedSubNodes);
foreach (AnalysisAlternateBase alternate in this.currentAlternates)
{
// Add only those that are not Poor confidence
if (alternate.InkRecognitionConfidence !=
System.Windows.Ink.AnalysisCore.InkRecognitionConfidence.Poor)
{
alternatesListBox.Items.Add(alternate.RecognizedString);
}
}
平台
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0