PropertyGuidsForAnalysisHintsBase.AllowPartialDictionaryTerms-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen des booleschen Werts an, mit dem festlegt wird, ob partielle Wörterbuchbegriffe in einem Analysehinweis erlaubt sind.
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
Hinweise
Dieses Feld stellt dar, ob partielle Wörterbuchbegriffe auf einem ContextNode vom Typ AnalysisHint erkannt werden. Partielle Wörterbuchbegriffe sind Begriffe, die mit dem Anfang eines Eintrags übereinstimmen. Mit dem partiellen Wörterbuchbegriff "abc" wird z. B. der Eintrag "abcdefg" gefunden.
Beispiele
Im folgenden Beispiel wird das AllowPartialDictionaryTerms-Feld veranschaulicht.
' 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);
}
Plattformen
Windows Vista, Windows XP SP2, Windows Server 2003
.NET Framework und .NET Compact Framework unterstützen nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen für .NET Framework.
Versionsinformationen
.NET Framework
Unterstützt in: 3.0
Siehe auch
Referenz
PropertyGuidsForAnalysisHintsBase-Klasse