分析のヒントで部分的な辞書用語を使用できるかどうかを決定するブール値を取得および設定するために、グローバル一意識別子 (GUID) を指定します。
名前空間 : Microsoft.Ink
アセンブリ : Microsoft.Ink.Analysis (Microsoft.Ink.Analysis.dll 内)
構文
'宣言
Public Shared ReadOnly AllowPartialDictionaryTerms As Guid
'使用
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
解説
このフィールドは、部分的な辞書用語が 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
.NET Framework および .NET Compact Framework では、各プラットフォームのすべてのバージョンはサポートしていません。サポートされているバージョンについては、「.NET Framework システム要件」を参照してください。
バージョン情報
.NET Framework
サポート対象 : 3.0
参照
参照
PropertyGuidsForAnalysisHints クラス