PropertyGuidsForAnalysisHintsBase.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: System.Windows.Ink.AnalysisCore
Assembly: IACore (in iacore.dll)
Syntax
'Declaration
Public Shared ReadOnly AllowPartialDictionaryTerms As Guid
'Usage
Dim value As Guid
value = PropertyGuidsForAnalysisHintsBase.AllowPartialDictionaryTerms
public static readonly Guid AllowPartialDictionaryTerms
public:
static initonly Guid AllowPartialDictionaryTerms
public static final Guid AllowPartialDictionaryTerms
public static final var AllowPartialDictionaryTerms : Guid
Not applicable.
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".
Example
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 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
See Also
Reference
PropertyGuidsForAnalysisHintsBase Class
PropertyGuidsForAnalysisHintsBase Members
System.Windows.Ink.AnalysisCore Namespace