PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms-Feld
Gibt die GUID (Globally Unique Identifier) zum Abrufen und Festlegen des booleschen Werts an, der festlegt, ob partielle Wörterbuchbegriffe in einem Analysehinweis erlaubt sind.
Namespace: System.Windows.Ink
Assembly: IAWinFX (in IAWinFX.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 Guid AllowPartialDictionaryTerms
public static final var AllowPartialDictionaryTerms : Guid
Hinweise
Das AllowPartialDictionaryTerms-Feld stellt dar, ob partielle Wörterbuchbegriffe auf einem ContextNode des Typs AnalysisHint erkannt werden. Partielle Wörterbuchbegriffe stimmen mit dem Anfang eines Eintrags überein. Mit dem partiellen Wörterbuchbegriff "abc" wird z. B. der Eintrag "abcdefg" gefunden.
Beispiele
Im folgenden Beispiel wird überprüft, ob ein AllowPartialDictionaryTerms in der ContainsPropertyData-Methode eines AnalysisHintNode existiert. Wenn das AllowPartialDictionaryTerms-Feld vorhanden ist, wird ein boolescher Wert zurückgegeben, um myAllowPartialDictionaryTerms aufzufüllen.
' Determine whether partial dictionary terms are allowed in analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms) Then
Dim myAllowPartialDictionaryTerms As Boolean = _
CBool(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.AllowPartialDictionaryTerms))
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
.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
PropertyGuidsForAnalysisHints-Klasse