Strokes.RecognitionResult Property
Strokes.RecognitionResult Property |
Gets the RecognitionResult object of the Strokes collection.
Definition
Visual Basic .NET Public ReadOnly Property RecognitionResult As RecognitionResult C# public RecognitionResult RecognitionResult { get; } Managed C++ public: __property RecognitionResult* get_RecognitionResult();
Property Value
Microsoft.Ink.RecognitionResult. The RecognitionResult object of the Strokes collection.
This property is read-only. This property has no default value.
Exceptions
Remarks
The value of the RecognitionResult property is
null
if recognition has not occured or if the results are not persisted.
Examples
[C#]
This C# example returns the RecognitionResult object of a Strokes collection, theStrokes.
RecognitionResult theRecognitionResult = theStrokes.RecognitionResult;
[Visual Basic .NET]
This Microsoft® Visual Basic® .NET example returns the RecognitionResult object of a Strokes collection, theStrokes.
Dim theRecognitionResult As RecognitionResult = _ theStrokes.RecognitionResult
See Also