ParagraphNode.InkRecognitionConfidence 屬性
取得值,這個值表示 InkAnalyzer 對辨識結果正確性的信賴等級。
命名空間: System.Windows.Ink
組件: IAWinFX (在 IAWinFX.dll 中)
語法
'宣告
Public ReadOnly Property InkRecognitionConfidence As InkRecognitionConfidence
'用途
Dim instance As ParagraphNode
Dim value As InkRecognitionConfidence
value = instance.InkRecognitionConfidence
public InkRecognitionConfidence InkRecognitionConfidence { get; }
public:
property InkRecognitionConfidence InkRecognitionConfidence {
InkRecognitionConfidence get ();
}
/** @property */
public InkRecognitionConfidence get_InkRecognitionConfidence()
public function get InkRecognitionConfidence () : InkRecognitionConfidence
屬性值
型別:System.Windows.Ink.InkRecognitionConfidence
表示 InkAnalyzer 對辨識結果正確性之信賴等級的值。
範例
下列範例會從 InkAnalyzer (theInkAnalyzer) 對所有 ParagraphNode 物件執行迴圈,並透過呈現加粗的筆劃,標記來自辨識信賴等級不是 Strong() 之節點的所有筆劃。
Dim paragraphs As ContextNodeCollection = _
theInkAnalyzer.FindNodesOfType(ContextNodeType.Paragraph)
' Mark each paragraph that is not high confidence as thick.
Dim paragraph As ParagraphNode
For Each paragraph In paragraphs
If paragraph.InkRecognitionConfidence <> InkRecognitionConfidence.Strong Then
Dim stroke As Stroke
For Each stroke In paragraph.Strokes
stroke.DrawingAttributes.Height = 3F
stroke.DrawingAttributes.Width = 3F
Next stroke
End If
Next paragraph
ContextNodeCollection paragraphs =
theInkAnalyzer.FindNodesOfType(ContextNodeType.Paragraph);
// Mark each paragraph that is not high confidence as thick.
foreach (ParagraphNode paragraph in paragraphs)
{
if (paragraph.InkRecognitionConfidence !=
InkRecognitionConfidence.Strong)
{
foreach (Stroke stroke in paragraph.Strokes)
{
stroke.DrawingAttributes.Height = 3f;
stroke.DrawingAttributes.Width = 3f;
}
}
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0