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