다음을 통해 공유


PropertyGuidsForContextNodes.ConfidenceLevel 필드

업데이트: 2007년 11월

신뢰 수준을 나타내는 정수를 가져오는 데 사용할 GUID(Globally Unique Identifier)를 지정합니다.

네임스페이스:  Microsoft.Ink
어셈블리:  Microsoft.Ink.Analysis(Microsoft.Ink.Analysis.dll)

구문

‘선언
Public Shared ReadOnly ConfidenceLevel As Guid
‘사용 방법
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

설명

이 필드는 CustomRecognizer, InkBullet, InkWord, Line, Object, Paragraph, Root, TextWord 또는 WritingRegion 형식의 ContextNode에 대한 인식 결과의 정확도에 대한 인식기의 신뢰 수준을 나타냅니다.

예제

다음 예제에서는 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);
}

플랫폼

Windows Vista

.NET Framework 및 .NET Compact Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

3.0에서 지원

참고 항목

참조

PropertyGuidsForContextNodes 클래스

PropertyGuidsForContextNodes 멤버

Microsoft.Ink 네임스페이스