PropertyGuidsForAnalysisHintsBase.AllowPartialDictionaryTerms 欄位
指定用來取得和設定布林值 (Boolean) 的全域唯一識別項 (GUID),這個布林值可用來判斷部分字典詞彙是否能用在分析提示。
命名空間: 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
備註
這個欄位表示 AnalysisHint 型別的 ContextNode 上是否會辨識部分字典詞彙。部分字典詞彙是與項目開頭相符的詞彙。例如,部分字典詞彙 "abc" 會符合項目 "abcdefg"。
範例
下列範例示範 AllowPartialDictionaryTerms 欄位。
' 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 SP2, Windows Server 2003
.NET Framework 和 .NET Compact Framework 並不支援各種平台的所有版本。如需支援平台版本的相關資訊,請參閱 .NET Framework 系統需求。
版本資訊
.NET Framework
支援版本:3.0
請參閱
參考
PropertyGuidsForAnalysisHintsBase 類別