Recognizer.Vendor (Propiedad)
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
Visual Basic (Uso)
Dim instance As Recognizer
Dim value As String

value = instance.Vendor
C#
public string Vendor { get; }
C++
public:
property String^ Vendor {
    String^ get ();
}
J#
/** @property */
public String get_Vendor ()
JScript
public function get Vendor () : String
XAML
No aplicable.

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.

C#
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.

Visual Basic
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

Etiquetas :


Page view tracker