PropertyGuidsForContextNodes.ConfidenceLevel-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen der Ganzzahl an, die die Zuverlässigkeitsebene darstellt.
Namespace: Microsoft.Ink
Assembly: Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)
Syntax
'Declaration
Public Shared ReadOnly ConfidenceLevel As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForContextNodes.ConfidenceLevel
public static readonly Guid ConfidenceLevel
public:
static initonly Guid ConfidenceLevel
public static final Guid ConfidenceLevel
public static final var ConfidenceLevel : Guid
Hinweise
Dieses Feld stellt die Zuverlässigkeitsebene dar, die das Erkennungsmodul in die Genauigkeit des Erkennungsergebnisses eines ContextNode vom Typ CustomRecognizer, InkBullet, InkWord, Line, Object, Paragraph, Root, TextWord oder WritingRegion hat.
Beispiele
Im folgenden Beispiel wird das ConfidenceLevel-Feld veranschaulicht.
' 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);
}
Plattformen
Windows Vista
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0
Siehe auch
Referenz
PropertyGuidsForContextNodes-Klasse