PropertyGuidsForAnalysisHintsBase.AllowPartialDictionaryTerms - поле
Обновлен: Ноябрь 2007
Specifies the globally unique identifier (GUID) for getting and setting the Boolean value used to determine whether partial dictionary terms are allowed on an analysis hint.
Пространство имен: System.Windows.Ink.AnalysisCore
Сборка: IACore (в IACore.dll)
Синтаксис
'Декларация
Public Shared ReadOnly AllowPartialDictionaryTerms As Guid
'Применение
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
Заметки
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".
Примеры
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);
}
Платформы
Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003
Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.
Сведения о версии
.NET Framework
Поддерживается в версии: 3.0
См. также
Ссылки
PropertyGuidsForAnalysisHintsBase Класс