Recognizer.Vendor 属性

获取 Recognizer 对象的供应商名称。

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

语法

声明
Public ReadOnly Property Vendor As String
用法
Dim instance As Recognizer
Dim value As String

value = instance.Vendor
public string Vendor { get; }
public:
property String^ Vendor {
    String^ get ();
}
/** @property */
public String get_Vendor()
public function get Vendor () : String

属性值

类型:System.String
Recognizer 对象的供应商名称。

示例

此 C# 示例获取每个已安装识别器的供应商名称,并将这些信息写入列表框 theListBox。

using Microsoft.Ink;
// . . .
Recognizers theRecognizers = new Recognizers();
foreach (Recognizer theRecognizer in theRecognizers)
{
    theListBox.Items.Add(theRecognizer.Vendor);
}

此 Microsoft(R) Visual Basic(R) .NET 示例获取每个已安装识别器的供应商名称,并将这些信息写入列表框 theListBox。

Imports Microsoft.Ink
' . . .
Dim theRecognizers As Recognizers = New Recognizers()
Dim theRecognizer As Recognizer
For Each theRecognizer In theRecognizers
    theListBox.Items.Add(theRecognizer.Vendor)
Next

平台

Windows Vista

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

版本信息

.NET Framework

受以下版本支持:3.0

另请参见

参考

Recognizer 类

Recognizer 成员

Microsoft.Ink 命名空间

Recognizer