RecognitionAlternates.Strokes Property

RecognitionAlternates.Strokes Property

Gets the Strokes collection that the recognizer used to generate the RecognitionAlternates collection.

Definition

Visual Basic .NET Public ReadOnly Property Strokes As Strokes
C# public Strokes Strokes { get; }
Managed C++ public: __property Strokes* get_Strokes();

Property Value

Microsoft.Ink.Strokes. The Strokes collection that the recognizer used to generate the RecognitionAlternates collection.

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

Examples

[C#]

This C# example assigns the Strokes property of the RecognitionAlternates collection, theRecognitionAlternates, to a Strokes collection, theStrokes.

Strokes theStrokes = theRecognitionAlternates.Strokes;

[Visual Basic .NET]

This Microsoft® Visual Basic® .NET example assigns the Strokes property of the RecognitionAlternates collection, theRecognitionAlternates, to a Strokes collection, theStrokes.

Dim theStrokes As Strokes = theRecognitionAlternates.Strokes

See Also