Share via


Recognizers.Count Property

Recognizers.Count Property

Gets the number of Recognizer objects contained in the Recognizers collection.

Definition

Visual Basic .NET Public ReadOnly Property Count As Integer
C# public int Count { get; }
Managed C++ public: __property int* get_Count();

Property Value

System.Int32. The number of Recognizer objects contained in the Recognizers collection.

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

Examples

[C#]

This C# example gets the number of Recognizer objects within a Recognizers collection, theRecognizers.

Microsoft.Ink.Recognizers theRecognizers = new Recognizers();
int theCount = theRecognizers.Count;

[Visual Basic .NET]

This Microsoft® Visual Basic® .NET example gets the number of Recognizer objects within a Recognizers collection, theRecognizers.

Dim theRecognizers As Microsoft.Ink.Recognizers = New Recognizers()
Dim theCount As Integer = theRecognizers.Count

See Also