Share via


PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms Field

Specifies the globally unique identifier (GUID) for getting and setting the Boolean that determines whether partial dictionary terms are allowed on an analysis hint.

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

Syntax

'Declaration
Public Shared ReadOnly AllowPartialDictionaryTerms As Guid
'Usage
Dim value As Guid 

value = PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms
public static readonly Guid AllowPartialDictionaryTerms
public:
static initonly Guid AllowPartialDictionaryTerms
public static final var AllowPartialDictionaryTerms : Guid

Remarks

This field represents whether partial dictionary terms are recognized on a ContextNode of type AnalysisHint. Partial dictionary terms are terms that match the beginning of an entry. For example, the partial dictionary term "abc" would match the entry "abcdefg".

Examples

The following example demonstrates the AllowPartialDictionaryTerms field.

' Determine whether partial dictionary terms are allowed in analysis hint 
If myAnalysisHintNode.ContainsPropertyData( _
   PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms) Then 
    Dim myAllowPartialDictionaryTerms As Boolean = _
        CType(myAnalysisHintNode.GetPropertyData( _
        PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms), Boolean)
End If
// Determine whether partial dictionary terms are allowed in analysis hint 
if (myAnalysisHintNode.ContainsPropertyData(
    PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms))
{
    bool myAllowPartialDictionaryTerms =
        (bool)myAnalysisHintNode.GetPropertyData(
        PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms);
}

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

PropertyGuidsForAnalysisHints Class

PropertyGuidsForAnalysisHints Members

Microsoft.Ink Namespace