PropertyGuidsForContextNodesBase.ConfidenceLevel - поле
Обновлен: Ноябрь 2007
Specifies the globally unique identifier (GUID) for getting the integer that represents the confidence level.
Пространство имен: System.Windows.Ink.AnalysisCore
Сборка: IACore (в IACore.dll)
Синтаксис
'Декларация
Public Shared ReadOnly ConfidenceLevel As Guid
'Применение
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
Заметки
This field represents the level of confidence that the recognizer has in the accuracy of the recognition result on a ContextNode of type CustomRecognizer, InkBullet, InkWord, Line, Object, Paragraph, Root, TextWord, or WritingRegion.
Примеры
The following example demonstrates the ConfidenceLevel field.
' 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, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
PropertyGuidsForContextNodesBase Класс