Share via


Recognizer.Vendor Property

Recognizer.Vendor Property

Gets the vendor name of the Recognizer object.

Definition

Visual Basic .NET Public ReadOnly Property Vendor As String
C# public string Vendor { get; }
Managed C++ public: __property String* get_Vendor();

Property Value

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

This property is read-only. This property has no default value.

Examples

[C#]

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);
}

[Visual Basic .NET]

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

See Also