다음을 통해 공유


PropertyGuidsForContextNodes.ConfidenceLevel 필드

업데이트: 2007년 11월

인식 결과에서 인식기의 신뢰 수준을 나타내는 정수를 가져오는 데 사용할 GUID(Globally Unique Identifier)를 지정합니다.

네임스페이스:  System.Windows.Ink
어셈블리:  IAWinFX(IAWinFX.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

설명

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

예제

다음 예제에서는 AnalysisHintNodeContainsPropertyData 메서드에서 기존 ConfidenceLevel을 확인합니다. ConfidenceLevel 필드가 있으면 해당 필드는 myConfidenceLevel을 채우기 위한 정수로 변환됩니다.

' 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 멤버

System.Windows.Ink 네임스페이스