Gets the vendor name of the
Recognizer object.
Espacio de nombres: Microsoft.Ink
Ensamblado: Microsoft.Ink (en microsoft.ink.dll)

Sintaxis
Visual Basic (Declaración)
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
Valor de propiedad
The vendor name of the
Recognizer object.

Ejemplo
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

Plataformas
Windows XP Media Center
Microsoft .NET Framework 3.0 es compatible con Windows Vista, Microsoft Windows XP SP2 y Windows Server 2003 SP1.

Información de versión
.NET Framework
Compatible con: 3.0

Vea también