Condividi tramite


Campo PropertyGuidsForContextNodesBase.ConfidenceLevel

Aggiornamento: novembre 2007

Specifica il GUID per ottenere il valore integer che rappresenta il livello di probabilità.

Spazio dei nomi:  System.Windows.Ink.AnalysisCore
Assembly:  IACore (in IACore.dll)

Sintassi

'Dichiarazione
Public Shared ReadOnly ConfidenceLevel As Guid
'Utilizzo
Dim value As Guid

value = PropertyGuidsForContextNodesBase.ConfidenceLevel
public static readonly Guid ConfidenceLevel
public:
static initonly Guid ConfidenceLevel
public static final Guid ConfidenceLevel
public static final var ConfidenceLevel : Guid

Note

Il campo rappresenta il livello di probabilità del sistema di riconoscimento nell'accuratezza del risultato del riconoscimento in un oggetto ContextNode di tipo CustomRecognizer, InkBullet, InkWord, Line, Object, Paragraph, Root, TextWord o WritingRegion.

Esempi

Nell'esempio seguente viene illustrato il campo ConfidenceLevel.

' Get the level of confidence: 1 == poor; 2 == intermediate; 3 == strong
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForContextNodes.ConfidenceLevel) Then
    Dim myConfidenceLevel As Integer = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForContextNodes.ConfidenceLevel), Integer)
End If
// Get the level of confidence: 1 == poor; 2 == intermediate; 3 == strong
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForContextNodes.ConfidenceLevel))
{
    int myConfidenceLevel =
        (int)myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForContextNodes.ConfidenceLevel);
}

Piattaforme

Windows Vista, Windows XP SP2, Windows Server 2003

.NET Framework e .NET Compact Framework non supportano tutte le versioni di ciascuna piattaforma. Per un elenco delle versioni supportate, vedere Requisiti di sistema di .NET Framework.

Informazioni sulla versione

.NET Framework

Supportato in: 3.0

Vedere anche

Riferimenti

PropertyGuidsForContextNodesBase Classe

Membri PropertyGuidsForContextNodesBase

Spazio dei nomi System.Windows.Ink.AnalysisCore