Share via


AnalysisHintNode.AllowPartialDictionaryTerms Property

Gets or sets a value indicating whether the InkAnalyzer recognizes partial dictionary terms within the hint's area.

Namespace:  Microsoft.Ink
Assembly:  Microsoft.Ink.Analysis (in Microsoft.Ink.Analysis.dll)

Syntax

'Declaration
Public Property AllowPartialDictionaryTerms As Boolean
'Usage
Dim instance As AnalysisHintNode 
Dim value As Boolean 

value = instance.AllowPartialDictionaryTerms

instance.AllowPartialDictionaryTerms = value
public bool AllowPartialDictionaryTerms { get; set; }
public:
property bool AllowPartialDictionaryTerms {
    bool get ();
    void set (bool value);
}
public function get AllowPartialDictionaryTerms () : boolean 
public function set AllowPartialDictionaryTerms (value : boolean)

Property Value

Type: System.Boolean
true if the InkAnalyzer recognizes partial dictionary terms within the hint's area; otherwise, false. The default is false.

Remarks

A partial dictionary term is composed of the leading letters of a dictionary term. For example, if "hello" is a dictionary term and AllowPartialDictionaryTerms is true, then "h", "he", "hel", and "hell" are valid handwriting recognition results.

During analysis, if the ink recognizer applied to the strokes does not support partial dictionary terms, the ink analyzer generates an AnalysisWarning with its WarningCode property set to the Microsoft.Ink.AnalysisWarningCode value of PartialDictionaryTermsNotSupported.

Examples

This example creates an AnalysisHintNode, theAnalysisHint, for the InkAnalyzer, theInkAnalyzerWithHint, and makes theAnalysisHint a global hint. It then sets the AllowPartialDictionaryTerms and Name properties on the hint.

' Add a new, global analysis hint to theInkAnalyzerWithHint. 
Dim theAnalysisHint As Microsoft.Ink.AnalysisHintNode = _
    Me.theInkAnalyzerWithHint.CreateAnalysisHint()
theAnalysisHint.Location.MakeInfinite()

theAnalysisHint.AllowPartialDictionaryTerms = True
theAnalysisHint.Name = "Allow Partial Dictionary Terms"
// Add a new, global analysis hint to theInkAnalyzerWithHint.
Microsoft.Ink.AnalysisHintNode theAnalysisHint =
    this.theInkAnalyzerWithHint.CreateAnalysisHint();
theAnalysisHint.Location.MakeInfinite();

theAnalysisHint.AllowPartialDictionaryTerms = true;
theAnalysisHint.Name = "Allow Partial Dictionary Terms";

Platforms

Windows 7, Windows Vista, Windows Server 2008 R2, Windows Server 2008

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Version Information

.NET Framework

Supported in: 3.0

See Also

Reference

AnalysisHintNode Class

AnalysisHintNode Members

Microsoft.Ink Namespace