Evaluar y enviar comentarios
Contraer todo/Expandir todo Contraer todo
Esta página es específica de
.NET Framework 3.0

Hay además otras versiones disponibles para:
Recognizer.Vendor (Propiedad)
Gets the vendor name of the Recognizer object.

Espacio de nombres: Microsoft.Ink
Ensamblado: Microsoft.Ink (en microsoft.ink.dll)

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.

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

Windows XP Media Center

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

.NET Framework

Compatible con: 3.0
Contenido de la comunidad   ¿Qué es Community Content?
Agregar contenido nuevo RSS  Anotaciones
Processing
© 2009 Microsoft Corporation. Reservados todos los derechos. Términos de uso | Marcas Registradas | Privacidad
Page view tracker