Partager via


DivisionUnit.RecognitionString, propriété

Mise à jour : November 2007

Obtient le texte reconnu pour la collection Strokes dans l'objet DivisionUnit.

Espace de noms :  Microsoft.Ink
Assembly :  Microsoft.Ink (dans Microsoft.Ink.dll)

Syntaxe

'Déclaration
Public ReadOnly Property RecognitionString As String
'Utilisation
Dim instance As DivisionUnit
Dim value As String

value = instance.RecognitionString
public string RecognitionString { get; }
public:
property String^ RecognitionString {
    String^ get ();
}
/** @property */
public String get_RecognitionString()
public function get RecognitionString () : String

Valeur de propriété

Type : System.String
Texte reconnu pour la collection Strokes dans l'objet DivisionUnit.

Notes

La propriété RecognitionString retourne null pour les éléments de dessin.

Le tableau suivant décrit le texte reconnu pour chaque type d'objet DivisionUnit.

Type DivisionUnit

Valeur RecognitionString

Segment

Meilleure proposition de substitution pour le segment de reconnaissance.

Line

RecognizedText pour chaque segment de la ligne, séparé par des espaces.

Paragraph

RecognizedText pour chaque ligne du paragraphe, séparé par des caractères de nouvelle ligne.

Drawing

nullune référence null (Nothing en Visual Basic)

La propriété RecognitionString et la méthode DivisionUnit.ToString retournent des chaînes identiques.

Exemples

Cet exemple C# crée un objet Divider, theDivider, qui contient une collection Strokes, theStrokes et utilise un objet RecognizerContext, theRecognizerContext. La méthode Divide est appelée pour obtenir une capture instantanée des résultats de l'analyse, theResult. La méthode ResultByType est appelée avec le paramètre divisionType ayant pour valeur Line, une énumération InkDivisionType, pour récupérer toutes les unités de ligne dans theResult. Pour chaque ligne, theLine de la collection, les propriétés DivisionType, Strokes, RecognitionString et Transform sont récupérées.

// Create the Divider and assign a Strokes collection to it.
Divider theDivider = new Divider(theStrokes, theRecognizerContext);

// Retrieve the analysis result, and divide the result by line.
DivisionResult theResult = theDivider.Divide();
DivisionUnits theDivisionUnits =
    theResult.ResultByType(InkDivisionType.Line);
foreach (DivisionUnit theLine in theDivisionUnits)
{
    // For each line element in the collection
    // retrieve the division type, the strokes,
    // the recognition string, and the rotation transform.
    InkDivisionType theDivisionType = theLine.DivisionType;
    Strokes elementStrokes = theLine.Strokes;
    string theRecognitionString = theLine.RecognitionString;
    System.Drawing.Drawing2D.Matrix theInkTransform =
        theLine.Transform;
}

Cet exemple Microsoft® Visual Basic® .NET crée un objet Divider, theDivider, qui contient une collection Strokes, theStrokes, et utilise un objet RecognizerContext, theRecognizerContext. La méthode Divide est appelée pour obtenir une capture instantanée des résultats de l'analyse, theResult. La méthode ResultByType est appelée avec le paramètre divisionType ayant pour valeur Line, une énumération InkDivisionType, pour récupérer toutes les unités de ligne dans theResult. Pour chaque ligne, theLine de la collection, les propriétés DivisionType, Strokes, RecognitionString et Transform sont récupérées.

' Create the Divider and assign a Strokes collection to it.
Dim theDivider As Divider = New Divider(theStrokes, theRecognizerContext)

' Retrieve the analysis result, and divide the result by line.
Dim theResult As DivisionResult = theDivider.Divide()
Dim theDivisionUnits As DivisionUnits = _
    theResult.ResultByType(InkDivisionType.Line)
Dim theLine As DivisionUnit
For Each theLine In theDivisionUnits
    ' For each line element in the collection
    ' retrieve the division type, the strokes,
    ' the recognition string, and the rotation transform.
    Dim theDivisionType As InkDivisionType = theLine.DivisionType
    Dim elementStrokes As Strokes = theLine.Strokes
    Dim theRecognitionString As String = theLine.RecognitionString
    Dim theInkTransform As System.Drawing.Drawing2D.Matrix = _
        theLine.Transform
Next

Plateformes

Windows Vista

Le .NET Framework et le .NET Compact Framework ne prennent pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.

Informations de version

.NET Framework

Pris en charge dans : 3.0

Voir aussi

Référence

DivisionUnit, classe

Membres DivisionUnit

Microsoft.Ink, espace de noms

DivisionUnit.DivisionType

DivisionUnit.ToString

Strokes