Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Recognizer.SupportedProperties Property |
Gets an array of type Guid that describe the properties that the Recognizer object supports.
Definition
Visual Basic .NET Public ReadOnly Property SupportedProperties As Guid() C# public Guid[] SupportedProperties { get; } Managed C++ public: __property Guid* get_SupportedProperties();
Property Value
System.Guid[]. The properties that the Recognizer object supports.
This property is read-only. This property has no default value.
Remarks
A recognizer may support line metrics, line numbers, confidence levels, and so on. For a complete list of the properties that a recognizer may support, see the RecognitionProperty object.
Examples
[C#]
This C# example loads an array with the supported properties of the default recognizer.
Recognizers theRecognizers = new Recognizers(); Guid [] theSupportedPropertiesArray = theRecognizers.GetDefaultRecognizer().SupportedProperties;
[Visual Basic .NET]
This Microsoft® Visual Basic® .NET example loads an array with the supported properties of the default recognizer.
Dim theRecognizers As New Recognizers() Dim theSupportedPropertiesArray() As Guid = _ theRecognizers.GetDefaultRecognizer().SupportedProperties
See Also