Partager via


ParagraphNode.InkRecognitionConfidence, propriété

Mise à jour : November 2007

Obtient une valeur qui indique le niveau de fiabilité du InkAnalyzer concernant la précision du résultat de la reconnaissance.

Espace de noms :  System.Windows.Ink
Assembly :  IAWinFX (dans IAWinFX.dll)

Syntaxe

'Déclaration
Public ReadOnly Property InkRecognitionConfidence As InkRecognitionConfidence
'Utilisation
Dim instance As ParagraphNode
Dim value As InkRecognitionConfidence

value = instance.InkRecognitionConfidence
public InkRecognitionConfidence InkRecognitionConfidence { get; }
public:
property InkRecognitionConfidence InkRecognitionConfidence {
    InkRecognitionConfidence get ();
}
/** @property */
public InkRecognitionConfidence get_InkRecognitionConfidence()
public function get InkRecognitionConfidence () : InkRecognitionConfidence

Valeur de propriété

Type : System.Windows.Ink.InkRecognitionConfidence
Valeur qui indique le niveau de fiabilité du InkAnalyzer concernant la précision du résultat de la reconnaissance.

Exemples

L'exemple suivant parcourt en boucle tous les objets ParagraphNode d'un InkAnalyzer, theInkAnalyzer et marque tous les traits des nœuds dans lesquels la fiabilité de la reconnaissance n'est pas Strong() en augmentant la largeur des traits.

Dim paragraphs As ContextNodeCollection = _
    theInkAnalyzer.FindNodesOfType(ContextNodeType.Paragraph)

' Mark each paragraph that is not high confidence as thick.
Dim paragraph As ParagraphNode
For Each paragraph In  paragraphs
    If paragraph.InkRecognitionConfidence <> InkRecognitionConfidence.Strong Then
        Dim stroke As Stroke
        For Each stroke In  paragraph.Strokes
            stroke.DrawingAttributes.Height = 3F
            stroke.DrawingAttributes.Width = 3F
        Next stroke
    End If
Next paragraph
ContextNodeCollection paragraphs =
 theInkAnalyzer.FindNodesOfType(ContextNodeType.Paragraph);

// Mark each paragraph that is not high confidence as thick.
foreach (ParagraphNode paragraph in paragraphs)
{
    if (paragraph.InkRecognitionConfidence !=
           InkRecognitionConfidence.Strong)
    {
        foreach (Stroke stroke in paragraph.Strokes)
        {
            stroke.DrawingAttributes.Height = 3f;
            stroke.DrawingAttributes.Width = 3f;
        }
    }
}

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

ParagraphNode, classe

Membres ParagraphNode

System.Windows.Ink, espace de noms