Compartir a través de


Recognizer.Vendor Property

Gets the vendor name of the Recognizer object.

Namespace: Microsoft.Ink
Assembly: Microsoft.Ink (in microsoft.ink.dll)

Syntax

'Declaration
Public ReadOnly Property Vendor As String
'Usage
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
Not applicable.

Property Value

The vendor name of the Recognizer object.

Example

This C# example gets the vendor names for each of the installed recognizers and writes that information to the list box, theListBox.

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

This Microsoft® Visual Basic® .NET example gets the vendor names for each of the installed recognizers and writes that information to the list box, 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

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

Recognizer Class
Recognizer Members
Microsoft.Ink Namespace