PropertyGuidsForAnalysisHints.Wordlist 字段
指定一个全局唯一标识符 (GUID),该 GUID 可用于获取和设置表示分析提示单词列表的 String 数组。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink.Analysis(在 Microsoft.Ink.Analysis.dll 中)
语法
声明
Public Shared ReadOnly Wordlist As Guid
用法
Dim value As Guid
value = PropertyGuidsForAnalysisHints.Wordlist
public static readonly Guid Wordlist
public:
static initonly Guid Wordlist
public static final Guid Wordlist
public static final var Wordlist : Guid
备注
此字段表示类型为 AnalysisHint 的 ContextNode 上的单词列表。单词列表是提示的单词列表。
示例
下面的示例演示 Wordlist 字段。
' Get the list of words in the analysis hint
If myAnalysisHintNode.ContainsPropertyData( _
PropertyGuidsForAnalysisHints.Wordlist) Then
Dim myWordlist() As String = _
CType(myAnalysisHintNode.GetPropertyData( _
PropertyGuidsForAnalysisHints.Wordlist), String())
End If
// Get the list of words in the analysis hint
if (myAnalysisHintNode.ContainsPropertyData(
PropertyGuidsForAnalysisHints.Wordlist))
{
string [] myInkRecognizerGuideBaseByGuid =
(string [])myAnalysisHintNode.GetPropertyData(
PropertyGuidsForAnalysisHints.Wordlist);
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0
另请参见
参考
PropertyGuidsForAnalysisHints 类