InkAnalyzer.GetAnalysisHints 方法
返回附加到 InkAnalyzer 的所有 AnalysisHintNode 对象。
命名空间: Microsoft.Ink
程序集: Microsoft.Ink.Analysis(在 Microsoft.Ink.Analysis.dll 中)
语法
声明
Public Function GetAnalysisHints As ContextNodeCollection
用法
Dim instance As InkAnalyzer
Dim returnValue As ContextNodeCollection
returnValue = instance.GetAnalysisHints()
public ContextNodeCollection GetAnalysisHints()
public:
ContextNodeCollection^ GetAnalysisHints()
public ContextNodeCollection GetAnalysisHints()
public function GetAnalysisHints() : ContextNodeCollection
返回值
类型:Microsoft.Ink.ContextNodeCollection
附加到 InkAnalyzer 的所有 AnalysisHintNode 对象。
备注
如果没有附加任何 AnalysisHintNode 对象,则此方法返回空 ContextNodeCollection。
示例
此示例创建一个 System.Text.StringBuilder (notes)。然后添加当前附加到 InkAnalyzer (theInkAnalyzer) 的每个分析提示的全局唯一标识符 (GUID) 和名称。
' Create a string builder for information about the hints.
Dim notes As New System.Text.StringBuilder()
notes.AppendLine("List of all the current AnalysisHintNodes:")
Dim theHint As Microsoft.Ink.AnalysisHintNode
For Each theHint In Me.theInkAnalyzer.GetAnalysisHints()
notes.AppendLine(String.Format( _
" Hint {0}, name '{1}'", theHint.Id, theHint.Name))
Next theHint
// Create a string builder for information about the hints.
System.Text.StringBuilder notes = new System.Text.StringBuilder();
notes.AppendLine("List of all the current AnalysisHintNodes:");
foreach (Microsoft.Ink.AnalysisHintNode theHint
in this.theInkAnalyzer.GetAnalysisHints())
{
notes.AppendLine(string.Format(" Hint {0}, name '{1}'",
theHint.Id, theHint.Name));
}
平台
Windows Vista
.NET Framework 和 .NET Compact Framework 并不是对每个平台的所有版本都提供支持。有关支持的版本的列表,请参见.NET Framework 系统要求。
版本信息
.NET Framework
受以下版本支持:3.0