AnalysisAlternateCollection 类
包含一个 AnalysisAlternate 对象的集合。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink.Analysis(在 Microsoft.Ink.Analysis.dll 中)
语法
声明
Public Class AnalysisAlternateCollection _
Implements ICollection, IEnumerable
用法
Dim instance As AnalysisAlternateCollection
public class AnalysisAlternateCollection : ICollection,
IEnumerable
public ref class AnalysisAlternateCollection : ICollection,
IEnumerable
public class AnalysisAlternateCollection implements ICollection,
IEnumerable
public class AnalysisAlternateCollection implements ICollection, IEnumerable
示例
此示例对 InkAnalyzer (theInkAnalyzer) 调用 GetAlternates。然后,此示例遍历 AnalysisAlternateCollection,并使用没有 Poor 识别置信级别的所有备选项填充 ListBox (alternatesListBox)。
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);
}
}
继承层次结构
System.Object
Microsoft.Ink.AnalysisAlternateCollection
线程安全
此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0
另请参见
参考
AnalysisAlternateCollection 成员