Share via


Strokes.RecognitionResult Property

Gets the RecognitionResult object of the Strokes collection.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink (in Microsoft.Ink.dll)

Syntax

'Declaration
Public ReadOnly Property RecognitionResult As RecognitionResult
'Usage
Dim instance As Strokes 
Dim value As RecognitionResult 

value = instance.RecognitionResult
public RecognitionResult RecognitionResult { get; }
public:
property RecognitionResult^ RecognitionResult {
    RecognitionResult^ get ();
}
public function get RecognitionResult () : RecognitionResult

Property Value

Type: Microsoft.Ink.RecognitionResult
The RecognitionResult object of the Strokes collection.

Remarks

The value of the RecognitionResult property is null if recognition has not occured or if the results are not persisted.

Examples

This C# example returns the RecognitionResult object of a Strokes collection, theStrokes.

RecognitionResult theRecognitionResult = theStrokes.RecognitionResult;

This Microsoft Visual Basic.NET example returns the RecognitionResult object of a Strokes collection, theStrokes.

Dim theRecognitionResult As RecognitionResult = _
theStrokes.RecognitionResult

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

Strokes Class

Strokes Members

Microsoft.Ink Namespace

RecognitionResult