InkRecognizerCollection 类

包含 InkRecognizer 对象,这些对象表示根据各种区域设置识别手写内容的功能。

命名空间:  Microsoft.Ink
程序集:  Microsoft.Ink.Analysis(在 Microsoft.Ink.Analysis.dll 中)

语法

声明
Public Class InkRecognizerCollection _
    Implements ICollection, IEnumerable
用法
Dim instance As InkRecognizerCollection
public class InkRecognizerCollection : ICollection, 
    IEnumerable
public ref class InkRecognizerCollection : ICollection, 
    IEnumerable
public class InkRecognizerCollection implements ICollection, 
    IEnumerable
public class InkRecognizerCollection implements ICollection, IEnumerable

备注

InkAnalyzer 类的 GetInkRecognizersByPriority 方法返回 InkRecognizerCollection,其中包含在当前 Tablet PC 上可用的墨迹识别器。

对于语言识别器,InkRecognizer.GetLanguages 方法返回非空数组。对于笔势识别器和对象识别器,GetLanguages 方法返回空数组。

示例

下面的示例从 InkRecognizerCollection (theInkRecognizers) 获取第一个 InkRecognizer

' Get the first recognizer from the InkRecognizerCollection.
Dim theFirstInkRecognizer As Microsoft.Ink.InkRecognizer = _
    theInkRecognizers.GetPriorityInkRecognizer()
            // Get the first recognizer from the InkRecognizerCollection.
            Microsoft.Ink.InkRecognizer theFirstInkRecognizer =
                theInkRecognizers.GetPriorityInkRecognizer();

继承层次结构

System.Object
  Microsoft.Ink.InkRecognizerCollection

线程安全

此类型的任何公共 static(在 Visual Basic 中为 Shared) 成员都是线程安全的。但不保证所有实例成员都是线程安全的。

平台

Windows Vista

.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

InkRecognizerCollection 成员

Microsoft.Ink 命名空间

InkAnalyzer.GetInkRecognizersByPriority

Microsoft.Ink.InkRecognizer