Share via


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 ();
}
public function get Vendor () : String

Property Value

Type: System.String
The vendor name of the Recognizer object.

Examples

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 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

Recognizer Class

Recognizer Members

Microsoft.Ink Namespace

Recognizer